:root {
    --bgColor: #1d1e24;
    --accentColor: #ffba23;
    --headerColor: #fff;
    --secondaryHeader: #9cecfe;
    --footerColor: #1d1e24;
    --textColor: #d1d1d1;
}
#logout2{
    display: none;
}


#logout2.active{
    display: inline-block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--bgColor) url('../images/bg2.png');
    color: var(--textColor);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-block{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-block button{
    width: 47%;
}

.funHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    position: relative;
    z-index: 100;
}

.funLogo {
    font-size: 28px;
    font-weight: 700;
    color: var(--accentColor);
    line-height: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.funLogo img{
    margin-right: 3px;
    width: 40px;
}

.funLogo span{
    color: #fff;
}

.funLogo span span{
    color: #ffba23;
}

.funNav {
    display: flex;
    align-items: center;
}

.funMenu {
    display: flex;
    list-style: none;
}

.funMenu li {
    margin-left: 30px;
}

.funMenu a {
    color: var(--textColor);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.funMenu a:hover {
    color: var(--accentColor);
}

.funAuth {
    margin-left: 40px;
}

.funBtn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.funLogin {
    background: transparent;
    color: var(--textColor);
    border: 1px solid #fff;
    margin-right: 10px;
}

.funRegister {
    background: var(--accentColor);
    color: var(--bgColor);
    border: 1px solid var(--bgColor);
}

.funMobileMenu {
    display: none;
    font-size: 24px;
    color: var(--textColor);
    cursor: pointer;
}


.funBanner {
    display: flex;
    align-items: center;
    padding: 130px 15px;
    position: relative;
}

.funBannerContent {
    flex: 1;
    padding-right: 40px;
}

.funSubtitle {
    color: var(--accentColor);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.funTitle {
    font-size: 48px;
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 20px;
    line-height: 1.2;
}

.funTitle span {
    color: var(--secondaryHeader);
}

.funDesc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.funPrimaryBtn {
    background: var(--secondaryHeader);
    color: var(--bgColor);
    padding: 12px 30px;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.funPrimaryBtn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accentColor);
    transition: all 0.4s;
    z-index: -1;
}

.funPrimaryBtn:hover:before {
    left: 0;
}

.funBannerImg {
    flex: 1;
    text-align: center;
}

.funBannerImg img{
    border-radius: 30px;
}

.funFeatures {
    padding: 80px 15px;
}

.funFeaturesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.funFeatureCard {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s;
}

.funFeatureCard:hover {
    transform: translateY(-10px);
}

.funFeatureIcon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--accentColor);
}

.funFeatureTitle {
    font-size: 22px;
    color: var(--headerColor);
    margin-bottom: 15px;
}


.funAbout {
    padding: 80px 15px;
    display: flex;
    align-items: center;
}

.funAboutContent {
    flex: 1;
    padding-right: 40px;
}

.funAboutContent h2 {
    margin-bottom: 20px;
}

.funAboutImg {
    flex: 1;
    text-align: center;
}

.funAboutImg img{
    border-radius: 30px!important;
    width: 100%;
}

.funTags {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 30px;
    gap: 10px;
}

.funTag {
    background: rgba(156, 236, 254, 0.2);
    color: var(--secondaryHeader);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}


.funGames {
    padding: 80px 15px;
}

.funSectionHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.funSectionTitle {
    font-size: 32px;
    color: var(--headerColor);
}

.funGamesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.funGameCard {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
    box-sizing: border-box;
    transition: transform 0.3s;
}

.funGameCard:hover {
    transform: translateY(-10px);
}

.funGameBadge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accentColor);
    color: var(--bgColor);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.funGameImg {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 5px;
}

.funGameContent {
    padding: 20px;
}

.funGameTitle {
    font-size: 18px;
    color: var(--headerColor);
    margin-bottom: 10px;
}

.funGameRating {
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-size: 24px;

    color: var(--accentColor);
}

.bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.funPlayBtn {
    background: var(--secondaryHeader);
    color: var(--bgColor);
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.funPlayBtn:hover {
    background: var(--accentColor);
}

.bg {
    background: url('../../games/cta.jpg') center no-repeat;
    background-size: cover;
}

.funCta {
    padding: 80px 15px;
    text-align: center;
    background: url('../../games/bg.jpg') center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 80px 0;
}

.funCtaTitle {
    font-size: 36px;
    color: var(--headerColor);
    margin-bottom: 20px;
}

.funCtaTitle span {
    color: var(--secondaryHeader);
}

.funCtaDesc {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}


.funStats {
    padding: 100px 15px;
    background: url('https://example.com/stats-bg.jpg') fixed;
    background-size: cover;
    position: relative;
    text-align: center;
}

.funStats:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 30, 36, 0.9);
}

.funStatsContent {
    position: relative;
    z-index: 1;
}

.funStatsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.funStatItem {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.funStatNumber {
    font-size: 48px;
    color: var(--accentColor);
    font-weight: 700;
    margin-bottom: 10px;
}

.funStatText {
    font-size: 18px;
    color: var(--headerColor);
}


.funFaq {
    padding: 80px 15px;
}

.funFaq h2 {
    text-align: center;
}

.funFaqGrid {
    max-width: 800px;
    margin: 40px auto 0;
}

.funFaqItem {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.funFaqQuestion {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--headerColor);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.funFaqAnswer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.funFaqItem.active .funFaqAnswer {
    padding: 20px;
    max-height: 500px;
}


.funFooter {
    background: #000;
    padding: 60px 0 30px;
    text-align: center;
}

.funFooterLogo {
    font-size: 28px;
    font-weight: 700;
    color: var(--accentColor);
    text-decoration: none;
    line-height: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.funFooterLogo img{
    width: 40px;
    margin-right: 3px;
}

.funFooterLogo span{
    color: #fff;
}

.funFooterLogo span span{
    color: #ffba23;
}

.footer-disclaimer{
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 14px;
    color: var(--textColor);
}

.footer-disclaimer p{
    margin: 4px 0;
}

.footer-disclaimer p a{
    color: #fff;
}

.funFooterLinks {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.funFooterLink {
    color: var(--textColor);
    text-decoration: none;
    transition: color 0.3s;
}

.funFooterLink:hover {
    color: var(--accentColor);
}

.funFooterBottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.funAgeRestriction {
    display: flex;
    align-items: center;
    gap: 10px;
}

.funAgeIcon {
    font-size: 24px;
    color: var(--accentColor);
}


.funModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.funModalContent {
    background: var(--bgColor);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--accentColor);
}

.funModalClose {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: var(--textColor);
    cursor: pointer;
}

.funModalTitle {
    font-size: 24px;
    color: var(--headerColor);
    margin-bottom: 20px;
    text-align: center;
}

.funFormGroup {
    margin-bottom: 20px;
}

.funFormInput {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--textColor);
    font-size: 16px;
}

.funFormSubmit {
    background: var(--accentColor);
    color: var(--bgColor);
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.funFormSubmit:hover {
    background: var(--secondaryHeader);
}

.funFormCheck {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.funFormCheck input {
    margin-right: 10px;
}


.funBreadcrumbs {
    background: url('../images/breadcrumbs.png') center/cover;
    padding: 60px 0;
    text-align: center;
    background-size: cover;
    margin-bottom: 60px;
}

.funBreadcrumbsTitle {
    font-size: 36px;
    color: var(--headerColor);
    margin-bottom: 15px;
}

.funBreadcrumbsLinks {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.funBreadcrumbsLink {
    color: var(--textColor);
    text-decoration: none;
    transition: color 0.3s;
}

.funBreadcrumbsLink:hover {
    color: var(--accentColor);
}

.funBreadcrumbsSeparator {
    color: var(--accentColor);
}


.funAboutPage {
    padding-bottom: 80px;
}

.funAboutSection {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.funAboutContent {
    flex: 1;
    padding-right: 40px;
}

.funAboutImg {
    flex: 1;
    text-align: center;
}

.funAboutImg img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.funStatsSection {
    background: url('https://via.placeholder.com/1920x600') fixed;
    background-size: cover;
    position: relative;
    padding: 100px 0;
    margin-bottom: 80px;
    text-align: center;
}

.funStatsSection:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 30, 36, 0.9);
}

.funStatsContent {
    position: relative;
    z-index: 1;
}

.funStatsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.funStatItem {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.funStatItem:hover {
    transform: translateY(-10px);
}

.funStatNumber {
    font-size: 48px;
    color: var(--accentColor);
    font-weight: 700;
    margin-bottom: 10px;
}

.funStatText {
    font-size: 18px;
    color: var(--headerColor);
}

.funWhyUs {
    margin-bottom: 80px;
}

.funWhyUsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.funWhyUsCard {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s;
}

.funWhyUsCard:hover {
    transform: translateY(-10px);
}

.funWhyUsIcon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--accentColor);
}

.funWhyUsTitle {
    font-size: 22px;
    color: var(--headerColor);
    margin-bottom: 15px;
}


.funContactPage {
    padding-bottom: 80px;
}

.funContactForm {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
}

.funFormGroup {
    margin-bottom: 20px;
}

.funFormLabel {
    display: block;
    margin-bottom: 8px;
    color: var(--headerColor);
    font-weight: 500;
}

.funFormInput,
.funFormTextarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--textColor);
    font-size: 16px;
}

.funFormTextarea {
    min-height: 150px;
    resize: vertical;
}

.funFormSubmit {
    background: var(--accentColor);
    color: var(--bgColor);
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.funFormSubmit:hover {
    background: var(--secondaryHeader);
}


.funThankYouModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.funThankYouContent {
    background: var(--bgColor);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: translate(-50%, -50%);
    border: 1px solid var(--accentColor);
    text-align: center;
}

.funThankYouIcon {
    font-size: 60px;
    color: var(--accentColor);
    margin-bottom: 20px;
}

.funThankYouTitle {
    font-size: 24px;
    color: var(--headerColor);
    margin-bottom: 15px;
}


@media (max-width: 992px) {

    .funStatsGrid,
    .funWhyUsGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .funAboutSection {
        flex-direction: column;
    }

    .funAboutContent {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {

    .funStatsGrid,
    .funWhyUsGrid {
        grid-template-columns: 1fr;
    }

    .funBreadcrumbsTitle {
        font-size: 28px;
    }

    .funContactForm {
        padding: 20px;
    }
}

    

    
    .funContentPage {
        padding-bottom: 80px;
    }
    
    .funContentBlock {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 40px;
    }
    .funContentPage a{
        color: #fff;
    }
    
    .funContentTitle {
        font-size: 28px;
        color: var(--headerColor);
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 186, 35, 0.3);
    }
    
    .funContentSubtitle {
        font-size: 22px;
        color: var(--secondaryHeader);
        margin: 30px 0 15px;
    }
    
    .funContentText {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .funContentList {
        margin: 20px 0;
        padding-left: 20px;
    }
    
    .funContentList li {
        margin-bottom: 10px;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .funBreadcrumbsTitle {
            font-size: 28px;
        }
        
        .funContentBlock {
            padding: 25px;
        }
        
        .funContentTitle {
            font-size: 24px;
        }
        
        .funContentSubtitle {
            font-size: 20px;
        }
    }







    .funAgePopup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }
    
    .funAgePopupContent {
        background: var(--bgColor);
        padding: 40px;
        border-radius: 10px;
        max-width: 500px;
        width: 90%;
        text-align: center;
        border: 2px solid var(--accentColor);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .funAgePopupIcon {
        font-size: 50px;
        margin-bottom: 20px;
        color: var(--accentColor);
    }
    
    .funAgePopupTitle {
        font-size: 28px;
        color: var(--headerColor);
        margin-bottom: 15px;
    }
    
    .funAgePopupText {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
        color: var(--textColor);
    }
    
    .funAgePopupBtn {
        background: var(--accentColor);
        color: var(--bgColor);
        padding: 12px 12px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 5px;
        transition: all 0.3s;
    }
    .funAgePopupBtn.cust{
        background: #ccc;
    }
    
    .funAgePopupBtn:hover {
        background: var(--secondaryHeader);
    }
    
    @media (max-width: 576px) {
        .funAgePopupContent {
            padding: 30px 20px;
        }
        
        .funAgePopupTitle {
            font-size: 24px;
        }
    }




        
        .info-box {
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border-left: 4px solid #2196f3;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
        }
        
        .info-box h4 {
            color: #1976d2;
            margin-bottom: 10px;
        }
        .info-box {
            color: #111;
        }
        
        .warning-box {
            background: linear-gradient(135deg, #fff3e0, #ffcc80);
            border-left: 4px solid #ff9800;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
        }
        
        .warning-box h4 {
            color: #f57c00;
            margin-bottom: 10px;
        }
         .warning-box p{
            color: #111;
         }
        
        .contact-info {
       
            margin: 20px 0;
        }
        
        .contact-info p {
            margin: 10px 0;
        }
        
        .last-updated {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
            color: #718096;
        }
        

    
    .funPricing {
        padding: 80px 0;
        background-color: #1d1e24;
    }
    
    .funPricingGrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
    }
    
    .funPlanCard {
        background: #25262d;
        border-radius: 15px;
        padding: 30px;
        position: relative;
        transition: transform 0.3s, box-shadow 0.3s;
        border: 1px solid #2e2f36;
    }
    
    .funPlanCard:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }
    
    .funFeatured {
        border: 2px solid #ffba23;
        transform: scale(1.05);
    }
    
    .funPlanHeader {
        text-align: center;
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #2e2f36;
    }
    
    .funPlanName {
        font-size: 22px;
        color: #fff;
        margin-bottom: 15px;
    }
    
    .funPlanPrice {
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    
    .funPrice {
        font-size: 36px;
        font-weight: 700;
        color: #9cecfe;
    }
    
    .funPeriod {
        font-size: 16px;
        color: #d1d1d1;
        margin-left: 5px;
        margin-bottom: 5px;
    }
    
    .funPlanFeatures {
        list-style: none;
        margin-bottom: 30px;
    }
    
    .funPlanFeatures li {
        padding: 10px 0;
        color: #d1d1d1;
        position: relative;
        padding-left: 25px;
    }
    
    .funPlanFeatures li:before {
        content: "✓";
        color: #ffba23;
        position: absolute;
        left: 0;
        font-weight: bold;
    }
    
    .funPlanBtn {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        font-weight: 600;
        background: #2e2f36;
        color: #fff;
        border: none;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
        display: inline-block;
    }
    
    .funPrimaryBtn {
        background: #ffba23;
        color: #1d1e24;
    }
    
    .funPlanBtn:hover {
        background: #9cecfe;
        color: #1d1e24;
    }
    
    .funPlanBadge {
        position: absolute;
        top: -10px;
        right: 20px;
        background: #ffba23;
        color: #1d1e24;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 14px;
    }
    
    .funPricingNote {
        text-align: center;
        margin-top: 40px;
        color: #9cecfe;
        font-size: 14px;
    }
    
    @media (max-width: 992px) {
        .funPricingGrid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .funFeatured {
            transform: none;
        }
    }



    
    .funSubscriptionForm {
        padding: 60px 0;
        background-color: #1d1e24;
    }
    
    .funFormWrapper {
        max-width: 800px;
        margin: 0 auto;
        background: #25262d;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .funFormHeader {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .funFormTitle {
        font-size: 28px;
        color: #fff;
        margin-bottom: 10px;
    }
    
    .funFormSubtitle {
        color: #9cecfe;
        font-size: 18px;
    }
    
    .funForm {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .funFormRow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .funFormGroup {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .funFormLabel {
        color: #fff;
        font-weight: 500;
        font-size: 15px;
    }
    
    .funFormInput {
        padding: 12px 15px;
        background: #2e2f36;
        border: 1px solid #3a3b42;
        border-radius: 8px;
        color: #fff;
        font-size: 16px;
        transition: border 0.3s;
    }
    
    .funFormInput:focus {
        border-color: #ffba23;
        outline: none;
    }
    
    select.funFormInput {
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 15px;
    }
    
    .funPaymentMethods {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }
    
    .funPaymentMethod {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }
    
    .funPaymentMethod input {
        margin: 0;
    }
    
    .funPaymentLabel {
        color: #d1d1d1;
        transition: color 0.3s;
    }
    
    .funPaymentMethod:hover .funPaymentLabel {
        color: #fff;
    }
    
    .funFormCheckbox {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .funFormCheckbox input{
        cursor: pointer;
        width: 20px;
        height: 20px;
    }
    
    .funFormCheckbox label {
        color: #d1d1d1;
        font-size: 14px;
    }
    
    .funFormCheckbox a {
        color: #9cecfe;
        text-decoration: none;
    }
    
    .funFormCheckbox a:hover {
        text-decoration: underline;
    }
    
    .funSubmitBtn {
        background: #ffba23;
        color: #1d1e24;
        padding: 15px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        transition: background 0.3s;
        margin-top: 20px;
    }
    
    .funSubmitBtn:hover {
        background: #9cecfe;
    }
    
    
    .funConfirmationPopup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }
    
    .funPopupContent {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        background: #25262d;
        padding: 40px;
        border-radius: 15px;
        max-width: 500px;
        width: 90%;
        text-align: center;
        border: 2px solid #ffba23;
    }
    
    .funPopupIcon {
        font-size: 60px;
        color: #ffba23;
        margin-bottom: 20px;
    }
    
    .funPopupTitle {
        font-size: 28px;
        color: #fff;
        margin-bottom: 15px;
    }
    
    .funPopupText {
        color: #d1d1d1;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .funPopupBtn {
        background: #ffba23;
        color: #1d1e24;
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        transition: background 0.3s;
    }
    
    .funPopupBtn:hover {
        background: #9cecfe;
    }
    
    @media (max-width: 768px) {
        .funFormRow {
            grid-template-columns: 1fr;
        }
        
        .funFormWrapper {
            padding: 30px 20px;
        }
        
        .funPaymentMethods {
            flex-direction: column;
            gap: 10px;
        }
    }









@media (max-width: 992px) {
    .funGamesGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .funStatsGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .funBannerImg img {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 768px) {

    .funMenu {
        display: none;
    }

    .funMobileMenu {
        display: block;
    }

    .funBanner {
        flex-direction: column;
        text-align: center;
    }

    .funBannerContent {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .funDesc {
        max-width: 100%;
    }

    .funFeaturesGrid {
        grid-template-columns: 1fr;
    }

    .funAbout {
        flex-direction: column;
    }

    .funAboutContent {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .funAboutImg img {
        max-width: 400px;
        width: 100%;
    }

    .funMenu {
        position: absolute;
        left: 0;
        top: 76px;
        width: 100%;
        z-index: 2;
        background: #222;
        padding: 12px;
        box-sizing: border-box;
        text-align: center;
    }

    .funMenu li {
        margin: 12px 0;
    }
}

@media (max-width: 576px) {
    .funTitle {
        font-size: 36px;
    }

    .funGamesGrid {
        grid-template-columns: 1fr;
    }

    .funStatsGrid {
        grid-template-columns: 1fr;
    }

    .funLogin {
        display: none;
    }

    .funAuth {
        margin-left: 0;
    }
    .funLogo{
        font-size: 22px;
    }
    .funFooterLinks{
        flex-wrap: wrap;
    }
    .funSectionHeader.cust{
        flex-direction: column;
        text-align: center;
    }
}