@font-face {
    font-family: 'Orbitron';
    src: url('../fonts/Orbitron/Orbitron-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

html{
    scroll-behavior: smooth;
}

:root {
    --txt-white: #fff;
    --lite-white: #ececea;
    --primary-color: rgb(161, 237, 9);
    --lite-txt: #adacaa;
    --bg-color: #070707;
    --black: #070707;
    --poppins: "Poppins", sans-serif;
    --montserrat: "Montserrat", sans-serif;
    --sans: "Open Sans", sans-serif;
    --orbitron: "Orbitron", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--bg-color) !important;
}


.glass-card {
    background: linear-gradient(to top right,
            rgba(161, 237, 9, 0.1) 10%,
            rgba(24, 24, 24, 0.13) 20%,
            rgba(24, 24, 24, 0.13) 70%,
            rgba(161, 237, 9, 0.3) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    /* border-radius: 20px; */
    position: relative;
    overflow: hidden;
}

.green-line {
    background: linear-gradient(90deg, rgba(161, 237, 9, 0) 0%, rgba(161, 237, 9, 1) 50%, rgba(161, 237, 9, 0) 100%);
}

.dark-glass {
    background: rgba(24, 24, 24, 0.13);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.grey-linear {
    background: linear-gradient(0deg, #b8b8b8 0%, #616363 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.light-linear {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.video-frame {
    /* iframe needs pointer-events to allow video playback */
    pointer-events: auto;
}


.btn-angled {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: linear-gradient(135deg, #AEF620 0%, #8FD015 100%);
    color: #1a1a1a;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    box-shadow:
        0 4px 15px rgba(174, 246, 32, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-angled:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(174, 246, 32, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #BAFF2D 0%, #9DE018 100%);
}

.btn-angled:active {
    transform: translateY(0px);
    box-shadow:
        0 2px 10px rgba(174, 246, 32, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-angled:focus {
    outline: none;
    box-shadow:
        0 4px 15px rgba(174, 246, 32, 0.3),
        0 0 0 3px rgba(174, 246, 32, 0.2);
}

/* Size Variations */
.btn-angled.small {
    padding: 10px 24px;
    font-size: 12px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-angled.large {
    padding: 18px 40px;
    font-size: 16px;
    clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
}

/* Color Variations */
.btn-angled.secondary {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: #ffffff;
    box-shadow:
        0 4px 15px rgba(55, 65, 81, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-angled.secondary:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    box-shadow:
        0 6px 20px rgba(55, 65, 81, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-angled.outline {
    background: transparent;
    color: #AEF620;
    border: 2px solid #AEF620;
    box-shadow: none;
    position: relative;
}

.btn-angled.outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #AEF620 0%, #8FD015 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    z-index: -1;
}

.btn-angled.outline:hover::before {
    opacity: 1;
}

.btn-angled.outline:hover {
    color: #1a1a1a;
    border-color: #AEF620;
}

.btn-angled.danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    box-shadow:
        0 4px 15px rgba(239, 68, 68, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-angled.danger:hover {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    box-shadow:
        0 6px 20px rgba(239, 68, 68, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-angled.disabled {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-angled.disabled:hover {
    transform: none;
    box-shadow: none;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

/* Loading state */
.btn-angled.loading {
    position: relative;
    color: transparent;
}

.btn-angled.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    color: #1a1a1a;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


@media(max-width: 520px) {
    .btn-angled {
        font-size: 12px;
    }
}

.faq {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.faq-wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 0 10%;
}

.faq-bg {
    background-image: url(../assets/faq.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.faq-row-1,
.faq-row-2 {
    max-width: 50%;
    width: 100%;
}

.faq-topic1,
.faq-topic2 {
    font-family: var(-montserrat);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2.5rem;
}

.faq-topic1 {
    background: linear-gradient(0deg, #b8b8b8 0%, #616363 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-topic2 {
    color: var(--primary-color);
}

.faq-question-wrap {
    min-width: 700px;
}

.faq-question {
    background: rgba(79, 79, 79, 0.1);
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--lite-white);
    cursor: pointer;
    padding: 10px 20px;
}

.faq-answer {
    width: 100%;
    display: none;
    color: var(--lite-white);
}

@media only screen and (min-width: 1024px) and (max-width: 1266px) {
    .faq-question-wrap {
        min-width: 500px;
    }

    .faq-topic1,
    .faq-topic2 {
        font-size: 2.2rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .faq-question-wrap {
        min-width: 400px;
    }

    .faq-topic1,
    .faq-topic2 {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 768px) {
    .faq-row-1 {
        position: relative;
        float: left;
        width: 100%;
        text-align: left;
        justify-content: flex-start;
        margin-bottom: 30px;
    }

    .faq-wrap {
        flex-direction: column !important;
        width: 100%;
        align-items: center;
        padding: 5% 8%;
    }

    .faq-row-1,
    .faq-row-2 {
        max-width: 100% !important;
    }
}

@media only screen and (min-width: 525px) and (max-width: 768px) {
    .faq-question-wrap {
        min-width: 400px !important;
        max-width: 420px !important;
        width: 100%;
    }

}

@media only screen and (min-width: 375px) and (max-width: 525px) {
    .faq-question-wrap {
        min-width: 320px !important;
        max-width: 90vw !important;
        width: 100%;
    }

    .faq-topic1,
    .faq-topic2 {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 16px;
        padding: 10 10px;
    }

    .faq-icon {
        padding: 0 10px !important;
    }
}

@media only screen and (max-width: 375px) {

    .faq-topic1,
    .faq-topic2 {
        font-size: 1.5rem;
    }

    .faq-question-wrap {
        min-width: 280px !important;
        max-width: 90vw !important;
    }

    .faq-question {
        font-size: 16px;
        padding: 10 10px;
    }

    .faq-icon {
        padding: 0 10px !important;
    }
}

.faq-icon {
    padding: 0 0 0 3rem;
}

.footer {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-border-top {
    position: relative;
    height: 50px;
    /* Example height */
    width: 100%;
}

.gradient-border-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    /* Height of the border */
    background: linear-gradient(90deg, rgba(7, 7, 7, 1) 2%, rgb(159, 239, 0) 42%, rgb(159, 239, 0) 59%, rgba(7, 7, 7, 1) 96%);
}


.footer-wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    padding: 0 8%;
}

.footer-item {
    display: flex;
    flex-direction: column;
}

.footer-head {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    font-family: var(--montserrat);
    margin-bottom: 16px;
    text-transform: capitalize;
}

.footer-item li {
    margin-bottom: 10px;
}

.footer-item a {
    color: var(--lite-txt);
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-item a:hover {
    color: #4AFD0F;
}

.footer-brand {
    max-width: 250px;
}

.footer-logo-img {
    width: 140px;
    height: auto;
    margin-bottom: 15px;
}

.footer-description {
    color: var(--lite-txt);
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.8;
}

.footer-links {
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-product-logo {
    width: 100px;
    height: auto;
    margin-top: 5px;
}

.footer-bottom {
    margin-top: 40px;
    padding-bottom: 20px;
    color: var(--lite-txt);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-image {
    width: 8rem;
    height: 100%;
}

@media only screen and (max-width: 768px) {
    .footer-image {
        width: 6rem;
    }
}

@media only screen and (max-width: 768px) {
    .footer-wrap {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-brand {
        max-width: 100%;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-item {
        width: 45%;
    }
}

@media only screen and (max-width: 525px) {
    .footer-wrap {
        gap: 25px;
        padding: 0 5%;
    }

    .footer-item {
        width: 100%;
    }

    .footer-brand {
        text-align: left;
    }
}

.hero {
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: 75px;
}

.hero-wrap {
    width: 100%;
    height: 100%;
    padding: 5%;
}

.event-by {
    width: 8rem;
    height: 8rem;
    background-color: var(--txt-white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.cnt-highlight {
    color: var(--primary-color);
}

.event-by .avatar {
    width: 6rem;
    height: 6rem;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.8));
}

.greetings {
    margin-bottom: 10px;
    width: 60%;
}

.greetings p {
    font-size: 2rem;
    font-family: var(--sans);
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    color: var(--lite-white) !important;
}

.yukthi-logo-container {
    position: relative;
    display: inline-block;
    width: 200px;
    height: auto;
    overflow: hidden;
}

.yukthi-logo {
    display: block;
    width: 200px;
    height: auto;
}

.yukthi-logo-container::after {
    content: "";
    position: absolute;
    width: 200px;
    top: 0;
    height: 100%;
    background: linear-gradient(105deg, transparent 49%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 51%, transparent 52%);
    background-size: 200px 200px;
    animation: flow 4s linear infinite;
    mix-blend-mode: overlay;
    -webkit-backdrop-filter: opacity(0);
    z-index: 999;
    -webkit-animation: flow 4s linear infinite;
    -moz-animation: flow 4s linear infinite;
    -webkit-transform: skew(20deg);
    -moz-transform: skew(20deg);
    -o-transform: skew(20deg);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 1) 100%);
    filter: unquote("progid: DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1)");
    border-left: none;
}

@-webkit-keyframes flow {
    0% {
        left: -100%;
        opacity: 0.5;
    }

    /* Increased opacity from 0 to 0.1 */
    50% {
        left: 20%;
        opacity: 0.5;
    }

    /* Increased opacity from 0.3 to 0.5 */
    100% {
        left: 40%;
        opacity: 0.5;
    }

    /* Increased opacity from 0 to 0.1 */
}


.register {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    text-align: center;
    margin-bottom: 20px;
}

.register p {
    font-size: 23px;
    font-family: var(--poppins);
    color: var(--lite-white);
}

.register-btn {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    padding: 11px 25px;
    background-color: var(--primary-color);
    /* This line can be removed if var(--primary-color) is not defined or not needed */
    background-image: linear-gradient(to bottom, #9fef00 0%, #c4ff4f 40%, #9fef00 100%);
    border-radius: 10px;
    text-shadow: 2px 10px 5px rgb(159, 239, 0);
    margin-bottom: 30px;
}


.container-wrap {
    width: 100%;
    height: 100%;
}

.home-cover {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    z-index: -1;
    /* box-shadow: 0 0 8px #9fef00; */
}

::-webkit-scrollbar {
    width: .5rem;
}

::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background: #333333;
    transition: all 0.5s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
    background: #222224;
}

::-webkit-scrollbar-track {
    background: #070707;
}

.shining-line {
    --shining-line-bg: linear-gradient(to right, rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0));
    --shining-line-width: 1.5rem;
    --shining-line-scale-y: 1.5;
    --shining-line-skew-x: -30deg;
    --shining-line-basic-transform: scaleY(var(--shining-line-scale-y)) skewX(var(--shining-line-skew-x)) rotateZ(0);
    position: relative;
    overflow: hidden;
}

.shining-line::before {
    position: absolute;
    z-index: 1;
    content: "";
    top: 0;
    left: 0;
    width: var(--shining-line-width);
    height: 100%;
    background: var(--shining-line-bg);
    transform: var(--shining-line-basic-transform);
    animation: shining-line-move 1s ease-in-out infinite;
    opacity: 0.8;
    filter: blur(1px);
}

@keyframes shining-line-move {
    from {
        left: -20%;
    }

    to {
        left: 120%;
    }
}

.sponsors-wrapper {
  width: 100%;
  height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsors-track {
  display: flex;
  align-items: center;
  will-change: transform;
}

.sponsors-set {
  display: flex;
  align-items: center;
  gap: 48px;
  flex: 0 0 auto;
}

.sponsors-set img {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .sponsors-wrapper { height: 80px; }
  .sponsors-set img { height: 40px; }
}

.prize-cover{
  width: 100%;
  height: 100%;
  position: relative;
  overflow-x: hidden;
  min-height: 400px;
}

.prize-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.prize-head{
  text-transform: uppercase;
  font-size: 2.5rem;
  color: var(--lite-white);
}

.prize-head span{
  color: var(--primary-color);
  font-weight: 600;
  font-size: 3rem;
}

.prize-main-element{
  display: flex;
  flex-direction: row;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.prize-main-box{
  background: rgb(21,21,21);
  background: linear-gradient(90deg, rgba(21,21,21,1) 51%, rgba(11,11,11,1) 100%);
  padding: 2rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
}

.prize-img{
  width: 10rem;
  height: auto;
}

.prize-main-head{
  color: var(--lite-white);
}

.prize-main-amt{
  color: var(--primary-color);
}

@media only screen and (max-width: 440px){
  .prize-head{
    font-size: 1.5rem;
  }

  .prize-head span{
    font-size: 2rem;
  }
}

nav{
    width: 100vw;
    height: 80px;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(97, 97, 97, 0.049);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px); /* Corrected: removed the -webkit-filter for nav */
}

.nav-wrap{
    width: 100%;
    height: 100%;
    background: rgba(24, 24, 24, 0.25);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    padding: 0 5%;
}


.nav-items{
    gap: 1.5rem;
}

.nav-items li{
    list-style: none;
}

.nav-items li a{
    text-decoration: none;
    color: var(--txt-white);
    font-family: var(--poppins);
}

.nav-items li a:hover{
    color: var(--primary-color);
}

.highlight-me{
    color: var(--primary-color) !important;
}

.mobile-btn{
    display: none;
    text-decoration: none;
    color: var(--txt-white);
    font-family: var(--poppins);
}

.tn-logo{
    width: 4rem;
    height: 4rem;
    margin-right: 1.5rem;
}

.sna-logo{
    height: 2rem;
}


@media only screen and (max-width: 768px) {
    .tn-logo{
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
    .nav-wrap{
        background: rgba( 16, 16, 16, 0.5);
        backdrop-filter: blur( 6.5px );
        -webkit-backdrop-filter: blur( 6.5px );
        border: 1px solid rgba( 255, 255, 255, 0.18 );
    }
    .sna-logo{
        height: 1.5rem !important;
    }

    .nav-items li a{
        display: none !important;
    }

    .mobile-btn{
        display: block !important;
    }
}


@media only screen and (max-width: 460px){
    .nav-wrap{
        padding: 0 20px !important;
    }
    .tn-logo{
        margin-right: 0.5rem !important;
    }
    .nav-items{
        gap: 0 !important;
    }

}

.register {
    width: 100%;
    overflow: hidden; /* Hide overflow to prevent extra scrollbars */
    margin: 5px 0;
}

.register-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.register-bg {
    background-image: url(../assets/regi.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
}

.register-merge{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5% 8%;
}

.register-row-1{
    max-width: 50%;
    width: 100%;
    padding: 10px;
}

.register-row1-content{
    background: rgba( 190, 190, 190, 0 );
    backdrop-filter: blur( 1px );
    -webkit-backdrop-filter: blur( 1px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    -webkit-box-shadow: 16px 73px 217px -40px rgba(0,0,0,1);
    -moz-box-shadow: 16px 73px 217px -40px rgba(0,0,0,1);
    box-shadow: 16px 73px 217px -40px rgba(0,0,0,1);
    padding: 40px 20px;
}

.register-row1-content p{
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    font-family: var(--sans);
    font-size: 22px;
    color: var(--lite-white);
}

.register-row1-content ul{
    text-align: left;
    color: var(--lite-white);
    font-size: 15px;
}

.register-row-2{
    max-width: 50%;
    width: 100%;
    padding: 10px;
}

.register-row2-content{
    text-align: left;
    padding: 0 5%;
}

.reg-row2-head h3{
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: var(-montserrat);
    font-weight: 700;
    font-size: 26px;
    -webkit-text-stroke: .8px #999a9a;
}

.reg-row2-head h2{
    text-transform: uppercase;
    font-family: var(-montserrat);
    font-weight: 700;
    font-size: 4rem;
    background: linear-gradient(0deg, #b8b8b8 0%, #616363 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-txt{
    background: linear-gradient(0deg, #b8b8b8 0%, #616363 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.side-line-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 30px 0 10px;
}

.side-line{
    display: block;
    width: 2px;
    min-height: 220px;
    height: 100%;
    background-color: var(--txt-white);
}

.top-ball, .bottom-ball {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    font-weight: 600;
}

.know-more-wrap{
    text-decoration: none;
    padding: 5px 10px;
    font-family: var(--montserrat);
    font-weight: 600;
    color: var(--black);
    background-color: var(--primary-color);
}

.green-text-highlight{
    color: var(--primary-color);
}

.top-ball {
    background-color: var(--txt-white); /* Filled with white color */
    margin-bottom: 5px; /* Spacing between the ball and the line */
}

.bottom-ball {
    border: 2px solid var(--txt-white); /* White border */
    margin-top: 5px; /* Spacing between the line and the ball */
}

.reg-main-contents{
    margin-top: 25px;
}

.reg-main-contents h3{
    color: var(--primary-color);
    font-family: var(-sans);
    text-transform: uppercase;
}

.reg-main-contents p, .reg-main-text p{
    color: var(--lite-txt);
    font-family: var(-sans);
    font-size: 20px;
}

.reg-main-text p{
    margin-bottom: 40px;
}

.regi-btn{
    padding: 11px 15px 15px 15px;
    background-color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    color: var(--black);
}

@media only screen and (min-width: 946px) and (max-width: 1024px) {
    .reg-main-contents p, .reg-main-text p{
        font-size: 17px;
    }
    .side-line{
        min-height: 130px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 946px) {
    .reg-main-contents p, .reg-main-text p{
        font-size: 15px;
    }
    .side-line{
        min-height: 110px;
    }
}

@media only screen and (max-width: 768px) {
    .register-merge{
        flex-direction: column-reverse;
    }
    .register-row-2{
        max-width: 80%;
        width: 100%;
    }
    .register-row-1{
        max-width: 100%;
        width: 100%;
        margin-top: 30px;
    }
}
@media only screen and (min-width: 512px) and (max-width: 668px) {
    .reg-main-contents p, .reg-main-text p{
        font-size: 15px;
    }
    .side-line{
        min-height: 110px;
    }
}

@media only screen and (max-width: 512px) {
    .register-merge{
        padding: 1% 4%;
    }
    .reg-main-contents p, .reg-main-text p{
        font-size: 14px;
    }
    .reg-row2-head h3{
        font-size: 22px;
    }
    .reg-row2-head h2{
        font-size: 3rem;
    }

    .register-row-1{
        margin-top: 50px;
    }

}


@media only screen and (max-width: 425px) {
    .register-row1-content p{
        font-size: 18px;
    }
    .register-row-1, .register-row-2 {
        padding: 0;
    }
    .register-row2-content{
        padding: 0;
    }

    .side-line{
        min-height: 190px;
    }
}

@media only screen and (max-width: 375px) {
    .reg-row2-head h2{
        font-size: 2.5rem;
    }
}

.requirement{
    width: 100%;
    height: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10px;
    margin-bottom: 50px !important;
    padding: 0 15%;
}

.hero-event-content{
    width: 100%;
    min-height: 150px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    padding: 10px;
}

.hero-event-box{
    background:  rgba(50, 50, 50, 0.267) !important;
    border-radius: 5px;
    min-width: 180px;
    padding-right: .5rem;
    padding-left: 1rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.hero-event-box-head{
    color: var(--lite-white);
    font-size: 1.75rem;
    font-weight: 600;
    font-family: var(--orbitron);
}

.hero-event-box-sub{
    color: var(--primary-color);
    font-size: 1.1rem;
}

.overview-head{
    font-size: 3rem !important;
    font-weight: 700;
    font-family: var(--orbitron);
    text-transform: uppercase;
    background: linear-gradient(0deg, #b8b8b8 0%, #616363 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


@media only screen and (max-width: 621px) {
    .requirement{
        padding: 0 5%;
    }
    .hero-event-box{
        padding-left: 1.5 !important;
        padding-right: 1.5 !important;
        margin: 0 !important;
        text-align: center;
    }
    .hero-event-svg{
        text-align: center;
        width: 100% !important;
    }
}

@media only screen and (max-width: 440px) {
    .requirement{
        padding: 0 !important;
        margin: 0px !important;
    }
    .hero-event-content{
        grid-template-columns: repeat(2, 1fr);
        padding: 20px !important;
    }
    .hero-event-box{
        min-width: 10px !important;
        text-align: left !important;
    }
    .hero-event-svg{
        text-align: left;
        width: 100% !important;
    }
    .hero-event-box-head{
        font-size: 16px !important;
    }
    .hero-event-box-sub{
        font-size: 14px !important;
    }
    .overview-head{
        font-size: 2rem !important;
    }
}

.ch-header-topic1 h2, .ch-header-topic2{
    font-family: var(--orbitron);
    font-weight: 700;
    font-size: 3rem;
    background: linear-gradient(0deg, #b8b8b8 0%, #616363 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ch-header-topic1 span{
  font-family: var(--orbitron);
  font-weight: 700;
  font-size: 3rem;
  padding-right: 5px;
  color: var(--primary-color) !important;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .ch-header-topic1 h2, .ch-header-topic2{
        font-size: 2rem;
    }
    .ch-header-topic1 span{
      font-size: 2rem;
    }
}


@media only screen and (min-width: 425px) and (max-width: 768px) {
  .ch-header-topic1 h2, .ch-header-topic2{
    font-size: 1.8rem;
}
.ch-header-topic1 span{
  font-size: 1.8rem;
}
}


@media only screen and (max-width: 425px) {
  .ch-header-topic1 h2, .ch-header-topic2{
    font-size: 1.5rem;
  }
  .ch-header-topic1 span{
    font-size: 1.5rem;
  }
}



.prize-card-bg{
    background: #151515;
    background: linear-gradient(90deg,rgba(21, 21, 21, 1) 53%, rgba(11, 11, 11, 0.76) 100%) !important;
}

.timer-box {
    background-color: #222;
    padding: 0.5rem  1rem;

    display: flex;
    align-items: center;
    justify-content: center;
}


.timer-box span {
    color: #ffffff;
    font-weight: 700;
    font-size: 3rem;
}

/* md:text-2xl */
@media (min-width: 768px) {
    .timer-box span {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) {
    .timer-box span {
        font-size: 5.5rem;
    }
}