/* Section load animation */
.section-animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-hidden {
    opacity: 0;
    transform: translateY(60px);
}

/* --- Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFAD12;
    --text-white: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.6);
    --font-main: 'Bricolage Grotesque', sans-serif;
    font-size: 10px;
}

@font-face {
    font-family: "Techna Sans";
    src: url("../fonts/TechnaSans-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bizantheum";
    src: url("../fonts/Bizantheum.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: var(--font-main);
    color: var(--text-white);
    background-color: #050505;
    overflow-x: hidden;
}


.background-container {
    position: relative;
    width: 100%;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}


.bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}


header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 2%;
    width: 100%;
    transition: box-shadow 0.3s, background 0.3s, transform 0.3s;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-20px);
    animation: stickyFadeIn 0.4s forwards;
}

@keyframes stickyFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo-main {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-main img {
    width: 250px;
    height: auto;

}

.nav-links-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #ddd;
    font-size: 2rem;
    font-weight: 700;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-gold);
}

.btn-gold img {
    width: 200px;
    height: auto;
}

.btn-gold {
    transition: all 0.3s ease;
    position: relative;
    background-color: transparent;
    border: 0;
    display: inline-block;
}

.btn-gold:hover {
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 5;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    margin-top: 50px;
    max-width: 1200px;
}

.hero-content h2 {
    font-size: 4rem;
    font-family: "Techna Sans", "Bricolage Grotesque", Arial, sans-serif;
    margin-bottom: 10px;
}

.hero-content .btn-gold img {
    width: 210px;
}

h1 {
    font-size: 6rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "Techna Sans", "Bricolage Grotesque", Arial, sans-serif;
}

h1>div {
    color: var(--primary-gold);
}

.smart-text {
    color: var(--primary-gold);
    text-transform: none;
    font-weight: 400;
    position: relative;
    font-family: "Bizantheum", "Bricolage Grotesque", Arial, sans-serif;
}

.smart-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px solid rgba(207, 170, 86, 0.2);
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 0 50px rgba(207, 170, 86, 0.1);
}

.subtext {
    font-size: 23px;
    color: var(--text-white);
    max-width: 705px;
    line-height: 30px;
}

.cta-container {
    margin-top: 9px;
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
    font-size: 22px;
}

.welcome-section {
    position: relative;
    background: #000000;
    width: 100%;
    padding: 110px 5%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-top: 1px dashed #444343;
}

.welcome-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: radial-gradient(circle at 15% 35%, rgba(255, 173, 18, 0.18), rgba(0, 0, 0, 0) 55%),
        radial-gradient(circle at 85% 60%, rgba(255, 173, 18, 0.12), rgba(0, 0, 0, 0) 60%);*/
    pointer-events: none;
}

.welcome-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.welcome-content {
    flex: 1.1;
}

.welcome-content h2 {
    font-size: 3.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 18px;
    font-family: "Techna Sans", "Bricolage Grotesque", Arial, sans-serif;
}

.welcome-subtitle {
    color: var(--text-white);
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 560px;
}

.welcome-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 22px;
}

.welcome-list li {
    color: var(--text-white);
    font-size: 20px;
    line-height: 1.6;
    display: flex;
    gap: 16px;
}

.welcome-visual {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-visual img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.35));
}

.about-section {
    position: relative;
    background-color: #000000;
    width: 100%;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(207, 170, 86, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.top-left {
    top: -200px;
    left: -200px;
}

.bottom-right {
    bottom: -200px;
    right: -200px;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.about-image-wrapper video.feature-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 2;
    border-radius: 10px;
}

.feature-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
    z-index: 2;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.about-content {
    flex: 1;
    color: var(--text-white);
    text-align: left;
}

.about-start-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    margin-top: 4px;
}

.about-content h2 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--primary-gold);
    font-family: "Techna Sans", "Bricolage Grotesque", Arial, sans-serif;
}

.about-content h2 .highlight {
    color: var(--primary-gold);
}

.about-content p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 25px;
    color: var(--text-white);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.features-section {
    background-color: #000;
    padding: 80px 5%;
    padding-right: 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.valuable-section {
    background: #000000;
    padding: 90px 5%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.valuable-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.valuable-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.valuable-visual img {
    width: 100%;
    max-width: 470px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.35));
}

.valuable-content {
    flex: 1.2;
    color: #e9f0f8;
}

.valuable-content h2 {
    font-size: 3.4rem;
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 18px;
    font-family: "Techna Sans", "Bricolage Grotesque", Arial, sans-serif;
}

.valuable-intro {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 22px;
    color: #dbe6f1;
}

.valuable-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 16px;
}

.valuable-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 18px;
    line-height: 1.6;
    color: #dbe6f1;
}

.valuable-list .check-icon img {
    width: 20px;
}

.valuable-outro {
    font-size: 20px;
    font-weight: 600;
    color: #cfe0f0;
}

.features-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
}

.features-intro {
    flex: 0 0 350px;
}

.features-intro h2 {
    font-size: 4rem;
    font-weight: 400;
    color: var(--primary-gold);
    line-height: 1.2;
    margin-bottom: 18px;
    font-family: "Techna Sans", "Bricolage Grotesque", Arial, sans-serif;
}

.features-intro p {
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 30px;
}

.slider-pagination {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #555;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active {
    width: 40px;
    background-color: var(--primary-gold);
    border-radius: 20px;
}

.cards-scroller {
    flex: 1;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 25px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.cards-scroller::-webkit-scrollbar {
    display: none;
}

.feature-card {
    background: #fff;
    color: #000;
    min-width: 300px;
    max-width: 300px;
    padding: 30px 25px;
    border-radius: 20px 142px 20px 50px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    position: relative;
    border-bottom: 6px solid #FFAD12;
    scroll-snap-align: start;
}

.card-glow {
    background: transparent linear-gradient(137deg, #FFD4A2 0%, #FFFFFF 11%, #FFFFFF 91%, #FDCB4E 100%) 0% 0% no-repeat padding-box;
}



.icon-wrapper {
    margin-bottom: 2px;
    margin-top: -55px;
    width: 115px;
    height: 125px;
}

.card-icon {
    height: 120px;
    width: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 24px;
}

.feature-card p {
    font-size: 15px;
    color: #000;
    line-height: 22px;
    font-weight: 500;
}

/* --- Fair Play Section --- */
.fair-play-section {
    background-color: #000;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fair-play-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* --- Rules List Styles --- */
.rules-content {
    flex: 1;
}

.rules-intro {
    color: var(--text-white);
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
    max-width: 560px;
}

.rules-content h2,
.mobile-title {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 40px;
    font-weight: 400;
    font-family: "Techna Sans", "Bricolage Grotesque", Arial, sans-serif;

}

.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    color: var(--text-white);
    font-size: 22px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 400;
}

.check-icon {
    line-height: 0;
    padding-top: 9px;
}

.check-icon img {
    width: 20px;
}

.rules-content .check-icon {
    padding: 0;

}

/* --- Visual Effects (Rings & Scroll) --- */
.rules-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.rings-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-ring {
    position: absolute;
    border: 1px solid rgba(207, 170, 86, 0.3);
    border-radius: 50%;
}

.ring-1 {
    width: 300px;
    height: 300px;
    box-shadow: inset 0 0 20px rgba(207, 170, 86, 0.2);
}

.ring-2 {
    width: 380px;
    height: 380px;
    border-style: dashed;
    /* Mimics the sparkled ring effect */
    opacity: 0.5;
}

.scroll-img {
    width: 100%;
}


.br_line {
    display: block;
}


/* --- FAQ Section --- */
.faq-section {
    background-color: #000;
    padding: 30px 5%;
    display: flex;
    justify-content: center;
}

.privacy-section {
    background-color: #000;
    padding: 80px 5% 40px;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-container {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.privacy-container h2 {
    color: var(--primary-gold);
    font-size: 3.6rem;
    margin-bottom: 24px;
    font-weight: 400;
    font-family: "Techna Sans", "Bricolage Grotesque", Arial, sans-serif;
}

.privacy-container p {
    color: var(--text-white);
    font-size: 24px;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container {
    max-width: 900px;
    width: 100%;
}

.faq-container h2 {
    text-align: center;
    color: var(--primary-gold);
    font-size: 4rem;
    margin-bottom: 50px;
    font-weight: 400;
    font-family: "Techna Sans", "Bricolage Grotesque", Arial, sans-serif;

}

/* --- Accordion Item Styles --- */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent linear-gradient(97deg, #FFD4A2 0%, #FFFFFF 11%, #FFFFFF 91%, #FDCB4E 100%) 0% 0% no-repeat padding-box;
    border-radius: 15px;
}

.accordion-header {
    padding: 16px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.q-number {
    font-weight: 600;
    color: #000;
    font-size: 22px;
    margin-right: 25px;
}

.accordion-header h3 {
    flex-grow: 1;
    font-size: 23px;
    font-weight: 600;
    color: #000;
}

.icon {
    font-size: 30px;
    color: #767676;
    transition: transform 0.3s ease;
}

.accordion-item.active {
    border-bottom: 10px solid #FFAD12;
}

.accordion-item.active .accordion-header h3 {
    color: #D55917;
}

.accordion-item.active .q-number {
    color: #D55917;
}

.accordion-item.active .icon {
    color: #FFB308;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 40px 0 90px;
}

.accordion-item.active .accordion-header {
    padding-bottom: 5px;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 16px;
}

.accordion-content p {
    color: #000;
    font-size: 16px;
    line-height: 20px;
}



/* --- Footer Styles --- */
.main-footer {
    background-color: #000;
    padding: 60px 5% 40px;
    position: relative;
    overflow: hidden;
    color: #888;
    text-align: center;
}

.footer-glow {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(207, 170, 86, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Nav Links */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-weight: 200;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon img {
    width: 100%;
    height: auto;
}

.social-icon:hover {
    transform: scale(1.1);
}

.copyright {
    font-size: 20px;
    color: #ffffffa6;
    letter-spacing: 0.5px;
}

.consent-label {
    align-items: baseline !important;
}

.mobile-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgb(10 10 10 / 88%), rgba(4, 4, 4, 0.98));
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 50;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(4, 4, 4, 0.98));
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    transition: left 0.3s cubic-bezier(.2, .8, .2, 1);
    z-index: 60;
    display: flex;
    overflow-y: auto;
    scrollbar-width: none;
    flex-direction: column;
}

.mobile-sidebar-inner {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo img {
    width: 200px;
}

.mobile-sidebar-close {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgb(255 255 255 / 11%);
    font-weight: 400;
}


.mobile-nav .mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-cta {
    margin-top: 22px;
}

/* Open state */
.mobile-sidebar.open {
    left: 0;
}

.mobile-sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}




.left-glow-container {
    position: absolute;
    left: -112px;
    top: -11px;
}


.right-glow-container {
    position: absolute;
    right: -112px;
    bottom: -11px;
}

.left-glow-container img {
    width: 100%;
}

.right-glow-container img {
    width: 100%;
}

.no-min-height {
    min-height: auto;
}

.common-container {
    background: #fff;
    width: 96%;
    margin: 0 auto;
    border-radius: 14px;
    color: #000;
    margin-top: 24px;
    padding: 30px;
}

.common-container h4 {
    color: var(--primary-gold);
    font-size: 36px;
}

.common-container h6 {
    font-weight: 700;
    color: #000;
    font-size: 25px;
    margin: 4px 0 15px;
}

.common-container p,
.common-container ul li {
    font-size: 22px;
    line-height: 34px;
    color: #000;
    margin-bottom: 15px;
}

.common-container ul {
    padding-left: 20px;
}

.common-container a {
    color: var(--primary-gold);
}

:root {
    --gradient-orange-start: #ffbd3f;
    --gradient-orange-end: #f3a100;
    --text-dark: #333;
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    /* Padding for smaller screens */
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    background: transparent linear-gradient(120deg, #FFECC9 0%, #FFFFFF 8%, #FFFFFF 90%, #FFDF88 100%, #FFDC7E 100%);
    width: 100%;
    max-width: 850px;
    border-radius: 20px;
    padding: 36px 40px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.popup-overlay.active .popup-box {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 5px;
    right: -6px;
    cursor: pointer;
    transition: transform 0.2s;
    overflow: hidden;
}

.close-btn img {
    width: 64px;
}

.close-btn:hover {
    transform: scale(1.1);
}

.close-icon-svg {
    width: 36px;
    height: 36px;
    fill: var(--primary-gold);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}


.popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.popup-header h2 {
    color: var(--primary-gold);
    font-size: 32px;
    font-weight: 700;
    font-family: "Techna Sans", "Bricolage Grotesque", Arial, sans-serif;
    margin-bottom: 10px;
}

.popup-header p {
    color: #000000;
    font-size: 16px;
}

.popup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.image-container video {
    width: 100%;
    height: auto;
    display: block;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #FFAD12;
    border-radius: 6px;
    font-size: 16px;
    color: #000000;
    outline: none;
    transition: border-color 0.3s;
    background-color: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffad00%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-13%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2013l128%20128c3.6%203.6%207.8%205.4%2013%205.4s9.3-1.8%2013-5.4l128-128c3.6-3.6%205.4-7.8%205.4-13%200-5-1.8-9.3-5.4-13z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 20px top 50%;
    background-size: 16px auto;
}

.input-group input {
    background-image: none;
}

.input-group input::placeholder,
.input-group select:invalid {
    color: #000000;
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--primary-gold);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: transparent;
    outline: none;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 10px auto 0;
    max-width: 270px;
    align-self: center;
}

.submit-btn img {
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.bg-video-mobile {
    display: none;
}

.bg-video-desktop {
    display: block;
}

@media (max-width: 767px) {
    .bg-video-desktop {
        display: none !important;
    }

    .bg-video-mobile {
        display: block !important;
    }
}

.common-container h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #000;
}


.common-container .table-responsive {
    overflow-x: auto;
    margin-bottom: 20px;
}

.common-container table {
    min-width: 480px;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin: 0;
    font-size: 15px;
}

.common-container thead th {
    background: #f7f7f7;
    padding: 12px 16px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    color: #222;
}

.common-container tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #f2f2f2;
    color: #444;
}

.common-container tbody tr:nth-child(even) {
    background: #fafbfc;
}

.common-container table th:first-child,
.common-container table td:first-child {
    border-top-left-radius: 10px;
}

.common-container table th:last-child,
.common-container table td:last-child {
    border-top-right-radius: 10px;
}

.mobile_hadding {
    display: none;
}


.how-to-win {
    /* background: url(../img/howtoplaydesktop.png) no-repeat center center; */
    /* height: 500px; */
    position: relative;
    padding: 44px 0;
}

.win-box-container {
    width: 900px;
    margin: auto;
    width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 99;
    position: relative;
    padding-bottom: 35px;
}

.win-box {
    background: transparent linear-gradient(180deg, #000000 0%, #3E2C1A 100%) 0% 0% no-repeat padding-box;
    border: 1px solid #707070;
    padding: 25px 60px;
    border-radius: 22px;
    color: #ffffff;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
    cursor: auto;
}

.how-to-win-img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9;
}

.how-to-win h2{
    position: relative;
    z-index: 99;
    font-size: 3.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 18px;
    font-family: "Techna Sans", "Bricolage Grotesque", Arial, sans-serif;
    text-align: center;
    margin-bottom: 30px;
}