/* Nookies Brand Font - Using Google Fonts CDN (no CORS issues) */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap');

/* Fallback for RobotoCondensed_Bold */
@font-face {
    font-family: 'RobotoCondensed_Bold';
    src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

    /* Clean White Theme inspired by BrattySis */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html, body {
        background: #ffffff;
        color: #333333;
        font-family: 'Roboto Condensed', 'RobotoCondensed_Bold', "Arial Narrow", Arial, sans-serif;
        font-weight: 700;
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
    }

    /* Custom Header Styles - Premium Sensual Design */
    .custom-header {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 247, 252, 0.98) 100%);
        backdrop-filter: blur(10px);
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(90deg, transparent 0%, #362bae 50%, transparent 100%);
        border-image-slice: 1;
        padding: 12px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(139, 24, 116, 0.15), 0 8px 40px rgba(255, 20, 147, 0.08);
        margin: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .custom-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(139, 24, 116, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(255, 20, 147, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }

    .header-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        position: relative;
        z-index: 1;
    }

    

/* Logo Image Styles */
.logo-section {
    flex: 0 0 auto;
    position: relative;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease;
    line-height: 0;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-link .logo {
    height: 45px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo-link:hover .logo {
    filter: brightness(1.1);
}


    .main-nav {
        display: flex;
        gap: 25px;
        flex: 1;
        justify-content: center;
        align-items: center;
    }

    .nav-link {
        color: #333333;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: nowrap;
        position: relative;
        padding: 8px 0;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #362bae, #362bae);
        transition: width 0.3s ease;
    }

    .nav-link:hover {
        color: #362bae;
        transform: translateY(-2px);
    }

    .nav-link:hover::before {
        width: 100%;
    }

    .nav-link-live {
        display: flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(139, 24, 116, 0.1));
        padding: 8px 15px !important;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
    }

    .nav-link-live::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .nav-link-live:hover::after {
        left: 100%;
    }

    .live-dot {
        width: 10px;
        height: 10px;
        background: #00ff00;
        border-radius: 50%;
        animation: pulse-live 1.5s ease-in-out infinite;
        display: inline-block;
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
        position: relative;
    }

    .live-dot::before {
        content: '';
        position: absolute;
        inset: -5px;
        border-radius: 50%;
        border: 2px solid #00ff00;
        animation: pulse-ring 1.5s ease-in-out infinite;
    }

    @keyframes pulse-live {
        0%, 100% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(0.9);
        }
    }

    @keyframes pulse-ring {
        0% {
            transform: scale(0.8);
            opacity: 1;
        }
        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }

    .header-actions {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .search-box {
        position: relative;
    }

    .search-form {
        display: flex;
        align-items: center;
        position: relative;
    }

    .search-input {
        width: 220px;
        padding: 10px 40px 10px 16px;
        border: 2px solid #e0e0e0;
        border-radius: 25px;
        font-size: 0.9rem;
        outline: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(255, 255, 255, 0.8);
    }

    .search-input:focus {
        border-color: #362bae;
        width: 280px;
        background: #ffffff;
        box-shadow: 0 4px 20px rgba(255, 20, 147, 0.2);
    }

    .search-input::placeholder {
        color: #999;
        font-style: italic;
    }

    .search-btn {
        position: absolute;
        right: 8px;
        background: linear-gradient(135deg, #362bae, #362bae);
        border: none;
        color: #ffffff;
        cursor: pointer;
        padding: 8px 12px;
        border-radius: 50%;
        transition: all 0.3s ease;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-btn:hover {
        transform: scale(1.1) rotate(15deg);
        box-shadow: 0 4px 15px rgba(139, 24, 116, 0.4);
    }

    .btn-login {
        color: #333333;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 10px 20px;
        transition: all 0.3s ease;
        position: relative;
        border-radius: 25px;
    }

    .btn-login::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 25px;
        padding: 2px;
        background: linear-gradient(135deg, #362bae, #362bae);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .btn-login:hover {
        color: #362bae;
    }

    .btn-login:hover::before {
        opacity: 1;
    }

    .btn-get-access {
        background: linear-gradient(135deg, #362bae 0%, #362bae 100%);
        color: #ffffff;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 800;
        font-size: 0.95rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: nowrap;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(139, 24, 116, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-get-access::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }

    .btn-get-access:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-get-access:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 30px rgba(255, 20, 147, 0.5);
    }

    .btn-get-access span {
        position: relative;
        z-index: 1;
    }

    /* Top Banner - Promotional */
    .promo-top-banner {
        background: linear-gradient(135deg, #362bae 0%, #362bae 100%);
        color: #ffffff;
        text-align: center;
        padding: 15px 20px;
        font-size: 1.3rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin: 0;
        margin-bottom: 0 !important;
        text-transform: uppercase;
    }

    .promo-top-banner a {
        color: #FFD700;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .promo-top-banner a:hover {
        color: #FFF;
        text-decoration: underline;
    }

    /* Hero Video Slideshow Section */
    .hero-slideshow {
        position: relative;
        width: 100vw;
        height: 50vh;
        overflow: hidden;
        background: #000000;
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0;
        left: 50%;
        right: 50%;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        display: block;
    }

    .hero-slideshow .slick-slide {
        position: relative;
        height: 50vh;
        padding: 0;
        margin: 0;
        vertical-align: top;
        line-height: 0;
    }

    .hero-slideshow .slick-list,
    .hero-slideshow .slick-track {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0;
    }

    .hero-video-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        padding: 0;
        margin: 0;
        line-height: 0;
        display: block;
    }

    .hero-poster {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
        object-position: center center;
        z-index: 1;
        background: #000;
        display: block;
        line-height: 0;
    }

    .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
        object-position: center center;
        z-index: 2;
        background: #000;
        display: block;
        line-height: 0;
    }

    .hero-slideshow .slick-prev,
    .hero-slideshow .slick-next {
        width: 50px;
        height: 50px;
        z-index: 100;
    }

    .hero-slideshow .slick-prev {
        left: 20px;
    }

    .hero-slideshow .slick-next {
        right: 20px;
    }

    .hero-slideshow .slick-prev:before,
    .hero-slideshow .slick-next:before {
        font-size: 50px;
        opacity: 0.75;
    }

    .hero-slideshow .slick-prev:hover:before,
    .hero-slideshow .slick-next:hover:before {
        opacity: 1;
    }

    .hero-slideshow .slick-dots {
        bottom: 15px;
    }

    .hero-slideshow .slick-dots li button:before {
        font-size: 10px;
        color: #ffffff;
        opacity: 0.7;
    }

    .hero-slideshow .slick-dots li.slick-active button:before {
        opacity: 1;
        color: #ffffff;
    }

    .slide-content {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
    }

    .slide-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
        padding: 30px 40px;
        z-index: 10;
    }

    .slide-title {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        line-height: 1.2;
    }

    .slide-info {
        color: #e0e0e0;
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .slide-cta {
        display: inline-block;
        background: #362bae;
        color: #ffffff;
        padding: 12px 30px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .slide-cta:hover {
        background: #362bae;
    }

    @media (max-width: 992px) {
        .hero-slideshow,
        .hero-slideshow .slick-slide {
            height: 45vh;
        }

        .slide-title {
            font-size: 1.5rem;
        }

        .slide-overlay {
            padding: 25px 30px;
        }
    }

    @media (max-width: 768px) {
        .hero-slideshow,
        .hero-slideshow .slick-slide {
            height: 40vh;
        }
        .slide-overlay {
            padding: 20px 15px;
        }

        .slide-title {
            font-size: 1.3rem;
        }

        .slide-info {
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .slide-cta {
            padding: 10px 20px;
            font-size: 0.9rem;
        }

        .hero-slideshow .slick-prev,
        .hero-slideshow .slick-next {
            width: 40px;
            height: 40px;
        }

        .hero-slideshow .slick-prev:before,
        .hero-slideshow .slick-next:before {
            font-size: 40px;
        }
    }

    /* Logo Slider - Sleek Design */
    .logo-slider-wrapper {
        background: #f5f5f5;
        padding: 25px 0;
        margin: 30px 0;
        border-radius: 0;
    }

    .model-slider img {
        border-radius: 4px;
        transition: all 0.3s ease;
        filter: brightness(1);
    }

    .model-slider img:hover {
        filter: brightness(1.05);
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }

    /* Main Title Section - Enhanced Modern Design */
    .main-title-section {
        text-align: center;
        padding: 50px 20px 40px 20px;
        background: linear-gradient(135deg, #ffffff 0%, #fdf7fc 100%);
        margin: 0 0 30px 0;
        border-radius: 0;
        border: none;
        position: relative;
        overflow: hidden;
    }

    .main-title-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #362bae 0%, #362bae 50%, #362bae 100%);
    }

    .main-title-section h1 {
        font-size: 2.6rem;
        font-weight: 900;
        color: #333333;
        margin-bottom: 18px;
        text-transform: none;
        letter-spacing: 0.5px;
        position: relative;
        display: inline-block;
        line-height: 1.3;
    }

    .main-title-section h1::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #362bae, #362bae);
        border-radius: 2px;
    }

    .main-title-section p {
        font-size: 1.15rem;
        color: #666666;
        max-width: 900px;
        margin: 0 auto 35px auto;
        line-height: 1.7;
        font-weight: 400;
    }

    .main-title-section p strong {
        color: #362bae;
        font-weight: 700;
    }

    /* Sites Logos Slider - Premium Design */
    .sites-logos-slider {
        margin: 0 auto;
        padding: 0 40px;
        max-width: 1400px;
    }

    .sites-logos-slider .slick-slide {
        padding: 0 8px;
    }

    .sites-logos-slider .logo-slide {
        outline: none;
    }

    .logo-item {
        display: block;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 3px 12px rgba(139, 24, 116, 0.15);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        height: 130px;
        border: 2px solid transparent;
    }

    .logo-item:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 8px 25px rgba(139, 24, 116, 0.3);
        border-color: #362bae;
    }

    .logo-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        padding: 18px;
        transition: all 0.3s ease;
    }

    .logo-item:hover img {
        transform: scale(1.05);
    }

    .sites-logos-slider .slick-prev,
    .sites-logos-slider .slick-next {
        width: 45px;
        height: 45px;
        z-index: 10;
        background: rgba(139, 24, 116, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .sites-logos-slider .slick-prev:hover,
    .sites-logos-slider .slick-next:hover {
        background: rgba(139, 24, 116, 0.2);
    }

    .sites-logos-slider .slick-prev {
        left: 0;
    }

    .sites-logos-slider .slick-next {
        right: 0;
    }

    .sites-logos-slider .slick-prev:before,
    .sites-logos-slider .slick-next:before {
        font-size: 40px;
        opacity: 0.7;
        color: #362bae;
        transition: all 0.3s ease;
    }

    .sites-logos-slider .slick-prev:hover:before,
    .sites-logos-slider .slick-next:hover:before {
        opacity: 1;
        color: #362bae;
    }

    /* Section Headers */
    .head-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 30px 20px 20px 20px;
        padding: 0;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 12px;
    }

    .head-title .head_line {
        font-size: 1.8rem;
        font-weight: 700;
        color: #333333;
        position: relative;
        padding-left: 0;
    }

    .head-title .head_line:before {
        display: none;
    }

    .head-title .cta {
        background: #362bae;
        color: #fff;
        padding: 10px 25px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        box-shadow: none;
    }

    .head-title .cta:hover {
        background: #362bae;
        transform: none;
        box-shadow: none;
    }

    /* Video Cards - Modern Grid */
    .video-card-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 18px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    /* Video Card Styling */
    .video-card {
        background: #ffffff;
        border-radius: 4px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .video-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        transform: translateY(-2px);
    }

    .video-card img {
        width: 100%;
        height: auto;
        display: block;
    }

    .video-card-title {
        color: #333333;
        font-weight: 600;
        font-size: 1rem;
    }

    .video-card-info {
        color: #666666;
        font-size: 0.9rem;
    }

    /* Modern Promo Box */
    .promo-box-modern {
        background: linear-gradient(135deg, #362bae 0%, #362bae 100%);
        padding: 30px 20px;
        margin: 40px 0;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(139, 24, 116, 0.3);
        position: relative;
        overflow: hidden;
    }

    .promo-box-modern::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: pulse 6s ease-in-out infinite;
    }

    .promo-box-content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
        max-width: 1400px;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    .promo-icon {
        width: 60px;
        height: 60px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .promo-icon i {
        font-size: 2rem;
        color: #ffffff;
        animation: flicker 2s ease-in-out infinite;
    }

    @keyframes flicker {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.8; transform: scale(1.1); }
    }

    .promo-text {
        flex: 1;
        min-width: 300px;
    }

    .promo-title {
        font-size: 1.6rem;
        font-weight: 900;
        color: #ffffff;
        margin: 0 0 8px 0;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        letter-spacing: 0.5px;
    }

    .promo-description {
        font-size: 0.95rem;
        color: rgba(255,255,255,0.95);
        margin: 0;
        line-height: 1.5;
    }

    .promo-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #ffffff;
        color: #362bae;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        flex-shrink: 0;
    }

    .promo-btn:hover {
        background: #FFD700;
        color: #362bae;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    @media (max-width: 768px) {
        .promo-box-modern {
            padding: 25px 15px;
        }

        .promo-box-content {
            justify-content: center;
            text-align: center;
        }

        .promo-icon {
            width: 50px;
            height: 50px;
        }

        .promo-icon i {
            font-size: 1.5rem;
        }

        .promo-title {
            font-size: 1.3rem;
        }

        .promo-description {
            font-size: 0.85rem;
        }

        .promo-btn {
            padding: 10px 25px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .promo-title {
            font-size: 1.1rem;
        }

        .promo-description {
            font-size: 0.8rem;
        }
    }

    /* Model Slider Cards */
    .siteslider .slick-slide {
        width: 273px;
        padding: 5px;
    }

    .siteslider img {
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    /* CTA Button Large */
    .cta.btn-lg {
        display: inline-block;
        background: #362bae;
        color: #fff;
        padding: 18px 45px;
        font-size: 1.2rem;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 4px;
        text-decoration: none;
        margin: 40px auto;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: none;
    }

    .cta.btn-lg:hover {
        background: #362bae;
        transform: none;
        box-shadow: none;
    }

    /* Quickies Lightbox */
    #lightbox {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.95);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    #lightbox.show {
        display: flex;
    }

    #lightbox-video {
        max-width: 1280px;
        max-height: 720px;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    }

    .lightbox-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        font-size: 2.5rem;
        padding: 15px 25px;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .lightbox-button:hover {
        background: rgba(255, 0, 110, 0.8);
        border-color: #ff006e;
        transform: translateY(-50%) scale(1.1);
    }

    .prev-button {
        left: 30px;
    }

    .next-button {
        right: 30px;
    }

    .close-button {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 2.5rem;
        color: white;
        background: rgba(255, 0, 0, 0.7);
        border: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .close-button:hover {
        background: rgba(255, 0, 0, 1);
        transform: rotate(90deg);
    }

    .video-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }

    .pause-icon {
        position: absolute;
        font-size: 4rem;
        color: white;
        display: none;
        pointer-events: none;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .fav-icon, .info-icon {
        position: absolute;
        font-size: 2rem;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .fav-icon {
        bottom: 125px;
        right: 15px;
    }

    .info-icon {
        bottom: 75px;
        right: 15px;
    }

    .fav-icon:hover, .info-icon:hover {
        transform: scale(1.2);
        color: #ff006e;
    }

    .fav-icon a, .info-icon a {
        color: white;
    }

    .quickies-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3rem;
        color: white;
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .quickies-play:hover {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }

    /* Responsive Design */
    /* Responsive Styles */
    @media (max-width: 1200px) {
        .video-card-wrapper {
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        }
    }

    @media (max-width: 992px) {
        .main-nav {
            gap: 20px;
        }

        .nav-link {
            font-size: 0.9rem;
        }
    }

    /* OLD CSS REMOVED - Now using responsive hamburger menu */ */

        .search-box {
            display: none;
        }

        .logo-text {
            font-size: 1.3rem;
        }

        .btn-login {
            padding: 6px 12px;
            font-size: 0.85rem;
        }

        .btn-get-access {
            padding: 6px 15px;
            font-size: 0.85rem;
        }

        .main-title-section {
            padding: 35px 15px 30px 15px;
        }

        .main-title-section h1 {
            font-size: 2rem;
            letter-spacing: 0.5px;
        }

        .main-title-section p {
            font-size: 1rem;
            margin-bottom: 25px;
        }

        .sites-logos-slider {
            padding: 0 10px;
        }

        .logo-item {
            height: 100px;
        }

        .head-title {
            margin: 30px 15px 15px 15px;
        }

        .head-title .head_line {
            font-size: 1.5rem;
        }

        .head-title .cta {
            padding: 8px 20px;
            font-size: 0.85rem;
        }

        .promo-box {
            padding: 30px 15px;
        }

        .promo-box h3 {
            font-size: 1.8rem;
        }

        .promo-box p {
            font-size: 1rem;
        }

        .video-card-wrapper {
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
        }

        #lightbox-video {
            max-width: 100%;
            max-height: unset;
        }

        .fav-icon {
            bottom: 140px;
            right: 25px;
        }

        .info-icon {
            bottom: 35px;
            right: 25px;
        }

        .close-button {
            top: 5px;
            right: 5px;
            width: 45px;
            height: 45px;
            font-size: 1.8rem;
        }

        .lightbox-button {
            font-size: 1.8rem;
            padding: 10px 15px;
        }
    }

    @media (max-width: 480px) {
        .main-title-section {
            padding: 25px 10px 20px 10px;
        }

        .main-title-section h1 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .main-title-section h1::after {
            width: 60px;
            height: 3px;
        }

        .main-title-section p {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .sites-logos-slider {
            padding: 0 20px;
        }

        .logo-item {
            height: 85px;
        }

        .sites-logos-slider .slick-prev,
        .sites-logos-slider .slick-next {
            width: 35px;
            height: 35px;
        }

        .sites-logos-slider .slick-prev:before,
        .sites-logos-slider .slick-next:before {
            font-size: 30px;
        }

        .video-card-wrapper {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Pagination */
    .pagination {
        display: flex;
        justify-content: center;
        margin: 50px 0;
    }

    /* Spacers */
    .div-spacer-sm {
        margin: 30px 0;
        padding: 0 20px;
        overflow: visible;
        position: relative;
    }

    /* Latest Releases Section - Professional Video Card Design */
    .latest-releases-section {
        margin: 40px 0;
        padding: 0 20px;
    }

    .video-card-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }

    .video-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .video-card:hover {
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        transform: translateY(-5px);
    }

    .video-card-img {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background: #000;
    }

    .img-hover-zoom {
        overflow: hidden;
    }

    .v-thumb {
        display: block;
        width: 100%;
        height: 100%;
    }

    .main-video-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.3s ease;
    }

    /* Video preview on hover */
    .video-card-img .preview-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        z-index: 2;
        transition: opacity 0.3s ease;
    }

    .video-card:hover .main-video-img {
        opacity: 0;
    }

    .video-card:hover .preview-video {
        opacity: 1;
    }

    .video-logo {
        position: absolute;
        bottom: 10px;
        right: 10px;
        z-index: 10;
        opacity: 0.9;
        transition: all 0.3s ease;
    }

    .video-card:hover .video-logo {
        opacity: 1;
        transform: scale(1.05);
    }

    .video-logo img {
        height: 35px;
        width: auto;
        display: block;
        filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
    }

    .video-card-text {
        padding: 15px;
        background: #fff;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .video-card-text .title {
        font-size: 1rem;
        font-weight: 600;
        margin: 0 0 10px 0;
        line-height: 1.4;
        color: #333;
    }

    .video-card-text .title a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .video-card-text .title a:hover {
        color: #362bae;
    }

    .video-card-text .meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.85rem;
        color: #666;
        gap: 10px;
    }

    .tag-btn {
        display: inline-block;
        padding: 4px 12px;
        background: #f0f0f0;
        border-radius: 15px;
        color: #555;
        text-decoration: none;
        font-size: 0.8rem;
        transition: all 0.3s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
    }

    .tag-btn:hover {
        background: #362bae;
        color: #fff;
    }

    .video-card-text .date {
        color: #999;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    /* Responsive for Latest Releases */
    @media (max-width: 1200px) {
        .video-card-wrapper {
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
    }

    @media (max-width: 768px) {
        .latest-releases-section {
            padding: 0 15px;
        }

        .video-card-wrapper {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .video-card-text .title {
            font-size: 0.9rem;
        }

        .video-card-text .meta {
            font-size: 0.75rem;
        }

        .tag-btn {
            padding: 3px 10px;
            font-size: 0.75rem;
            max-width: 100px;
        }

        .video-logo img {
            height: 28px;
        }
    }

    @media (max-width: 480px) {
        .video-card-wrapper {
            grid-template-columns: 1fr;
            gap: 12px;
        }
    }

    /* What's Hot Section - Full Width Professional Layout */
    .whats-hot-section {
        margin: 20px 0 30px 0;
        padding: 0;
        max-width: 100%;
    }

    .section-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin: 0 15px 25px 15px;
        padding-bottom: 12px;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
        color: #333333;
        margin: 0;
        line-height: 1;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .section-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* What's Hot - Full Width Masonry Layout */
    .whats-hot-masonry {
        column-count: 5;
        column-gap: 12px;
        padding: 0 15px;
        margin-bottom: 30px;
        display: block;
        position: relative;
        height: auto;
        column-fill: balance;
        max-width: 100%;
    }

    /* Ensure equal bottom alignment across all columns */
    .whats-hot-masonry::after {
        content: '';
        display: block;
        clear: both;
    }

    .masonry-item {
        break-inside: avoid;
        page-break-inside: avoid;
        margin-bottom: 12px;
        display: inline-block;
        width: 100%;
        vertical-align: top;
        position: relative;
    }

    /* Ensure last item in each column doesn't have bottom margin */
    .masonry-item:last-child {
        margin-bottom: 0;
    }

    .masonry-item.masonry-short .masonry-image-wrapper {
        aspect-ratio: 1 / 1;
        min-height: 255px;
        height: 255px;
    }

    .masonry-item.masonry-medium .masonry-image-wrapper {
        aspect-ratio: 1 / 1.4;
        min-height: 360px;
        height: 360px;
    }

    .masonry-item.masonry-tall .masonry-image-wrapper {
        aspect-ratio: 1 / 2;
        min-height: 525px;
        height: 525px;
    }

    .masonry-link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

    .masonry-image-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        background: #000;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .masonry-image-wrapper:hover {
        box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3), 0 6px 20px rgba(0,0,0,0.3);
        transform: translateY(-5px) scale(1.02);
    }

    .masonry-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: all 0.4s ease;
        filter: brightness(0.95) contrast(1.05) saturate(1.1);
    }

    .masonry-image-wrapper:hover .masonry-image {
        filter: brightness(1.05) contrast(1.1) saturate(1.2);
        transform: scale(1.05);
    }

    /* Thumbnail image - hide on hover to show video */
    .masonry-thumb {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .masonry-image-wrapper:hover .masonry-thumb {
        opacity: 0;
    }

    /* Video Preview - shown on hover */
    .masonry-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        opacity: 0;
        z-index: 2;
        transition: opacity 0.3s ease;
    }

    .masonry-image-wrapper:hover .masonry-video {
        opacity: 1;
    }

    /* Site Logo Overlay - Bottom Right Corner */
    .video-logo-overlay {
        position: absolute;
        bottom: 10px;
        right: 10px;
        z-index: 10;
        opacity: 0.9;
        transition: all 0.3s ease;
    }

    .masonry-image-wrapper:hover .video-logo-overlay {
        opacity: 1;
        transform: scale(1.05);
    }

    .site-logo-img {
        height: 35px;
        width: auto;
        display: block;
        filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
    }

    /* Hover Overlay with Title and Info */
    .masonry-hover-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
        padding: 50px 15px 15px 15px;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 3;
    }

    .masonry-image-wrapper:hover .masonry-hover-overlay {
        opacity: 1;
    }

    .masonry-title {
        color: #ffffff;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .masonry-info {
        color: #e0e0e0;
        font-size: 0.85rem;
    }

    .view-all-wrapper {
        display: none;
    }

    /* Responsive adjustments for What's Hot Masonry - Optimized for All Devices */
    
    /* Large tablets and small desktops (1200px - 1400px) */
    @media (max-width: 1400px) {
        .whats-hot-masonry {
            column-count: 4;
            column-gap: 12px;
        }
    }

    /* Tablets landscape (992px - 1199px) */
    @media (max-width: 1199px) {
        .whats-hot-masonry {
            column-count: 3;
            column-gap: 12px;
        }
    }

    /* Tablets portrait (768px - 991px) */
    @media (max-width: 991px) {
        .whats-hot-masonry {
            column-count: 3;
            column-gap: 10px;
        }
        
        .masonry-item.masonry-short .masonry-image-wrapper {
            height: 220px;
            min-height: 220px;
        }

        .masonry-item.masonry-medium .masonry-image-wrapper {
            height: 320px;
            min-height: 320px;
        }

        .masonry-item.masonry-tall .masonry-image-wrapper {
            height: 450px;
            min-height: 450px;
        }
    }

    /* Mobile landscape and small tablets (576px - 767px) */
    @media (max-width: 767px) {
        .section-header {
            margin: 0 15px 18px 15px;
        }

        .section-title {
            font-size: 1.6rem;
        }

        .whats-hot-masonry {
            column-count: 2;
            column-gap: 10px;
            padding: 0 15px;
        }

        .masonry-item {
            margin-bottom: 10px;
        }
        
        .masonry-item.masonry-short .masonry-image-wrapper {
            height: 200px;
            min-height: 200px;
        }

        .masonry-item.masonry-medium .masonry-image-wrapper {
            height: 280px;
            min-height: 280px;
        }

        .masonry-item.masonry-tall .masonry-image-wrapper {
            height: 380px;
            min-height: 380px;
        }

        .video-logo-overlay {
            bottom: 8px;
            right: 8px;
        }

        .site-logo-img {
            height: 28px;
        }
        
        .masonry-title {
            font-size: 0.9rem;
        }
        
        .masonry-info {
            font-size: 0.8rem;
        }
    }

    /* Mobile portrait (376px - 575px) */
    @media (max-width: 575px) {
        .section-header {
            margin: 0 12px 15px 12px;
        }

        .section-title {
            font-size: 1.5rem;
        }

        .whats-hot-masonry {
            column-count: 2;
            column-gap: 8px;
            padding: 0 12px;
        }

        .masonry-item {
            margin-bottom: 8px;
        }
        
        .masonry-image-wrapper {
            border-radius: 8px;
        }
    }

    /* Small mobile devices (320px - 375px) */
    @media (max-width: 375px) {
        .section-header {
            margin: 0 10px 12px 10px;
        }

        .section-title {
            font-size: 1.3rem;
        }

        .whats-hot-masonry {
            column-count: 2;
            column-gap: 6px;
            padding: 0 10px;
        }

        .masonry-item {
            margin-bottom: 6px;
        }
        
        .masonry-item.masonry-short .masonry-image-wrapper {
            height: 160px;
            min-height: 160px;
        }

        .masonry-item.masonry-medium .masonry-image-wrapper {
            height: 220px;
            min-height: 220px;
        }

        .masonry-item.masonry-tall .masonry-image-wrapper {
            height: 300px;
            min-height: 300px;
        }

        .video-logo-overlay {
            bottom: 6px;
            right: 6px;
        }

        .site-logo-img {
            height: 22px;
        }
    }

    /* Models & Sites Slider Cards with Beautiful Effects */
    .model-card, .site-card {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        background: transparent;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .model-card:hover, .site-card:hover {
        transform: translateY(-12px);
    }

    .model-card img, .site-card img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        filter: brightness(0.95) contrast(1.05) saturate(1.1);
    }

    .model-card:hover img, .site-card:hover img {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4), 0 8px 20px rgba(0,0,0,0.3);
        filter: brightness(1.05) contrast(1.1) saturate(1.2);
    }

    .model-card-overlay, .site-card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
        padding: 25px 15px 15px 15px;
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 2;
        border-radius: 0 0 15px 15px;
    }

    .model-card:hover .model-card-overlay, .site-card:hover .site-card-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(255, 20, 147, 0.85) 0%, rgba(0,0,0,0.7) 40%, transparent 100%);
    }

    .model-name, .site-name {
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: 700;
        margin: 0;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0 0 20px rgba(255, 20, 147, 0.6);
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .model-card:hover .model-name, .site-card:hover .site-name {
        text-shadow: 2px 2px 8px rgba(0,0,0,1), 0 0 30px rgba(255, 255, 255, 0.8);
        transform: scale(1.05);
    }

    /* Slick Slider Customization for Models & Sites */
    .models-sites-slider {
        padding: 25px 0 35px 0;
        margin: 0 -10px;
        overflow: visible !important;
    }

    .models-sites-slider .slick-list {
        overflow: visible !important;
        padding: 0 !important;
    }

    .models-sites-slider .slick-track {
        display: flex;
        align-items: flex-start;
    }

    .models-sites-slider .slick-slide {
        padding: 0 10px;
        height: auto;
    }

    .models-sites-slider .slick-slide > div {
        height: 100%;
    }

    .models-sites-slider .slick-arrow {
        width: 50px;
        height: 50px;
        background: transparent;
        z-index: 100;
        transition: all 0.3s ease;
    }

    .models-sites-slider .slick-arrow:hover {
        background: transparent;
        transform: scale(1.2);
    }

    .models-sites-slider .slick-arrow:before {
        font-size: 40px;
        opacity: 0.8;
        line-height: 1;
        color: #333;
        transition: all 0.3s ease;
    }

    .models-sites-slider .slick-arrow:hover:before {
        opacity: 1;
        color: #362bae;
    }

    .models-sites-slider .slick-prev {
        left: -25px;
    }

    .models-sites-slider .slick-next {
        right: -25px;
    }

    @media (max-width: 768px) {
        .models-sites-slider .slick-arrow {
            width: 35px;
            height: 35px;
        }

        .models-sites-slider .slick-prev {
            left: -10px;
        }

        .models-sites-slider .slick-next {
            right: -10px;
        }
    }

    /* CTA Box Full Width */
    .cta-box-wrapper {
        width: 100%;
        margin: 40px 0;
        padding: 0;
    }

    .cta-box-full {
        background: linear-gradient(135deg, #362bae 0%, #362bae 50%, #362bae 100%);
        padding: 40px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-box-full::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.1); opacity: 0.8; }
    }

    .cta-box-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
    }

    .cta-icon {
        display: inline-block;
        margin-bottom: 15px;
        animation: bounce 2s ease-in-out infinite;
    }

    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .cta-title {
        color: #ffffff;
        font-size: 2.5rem;
        font-weight: 900;
        margin-bottom: 15px;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        letter-spacing: 1px;
    }

    .cta-text {
        color: #ffffff;
        font-size: 1.2rem;
        margin-bottom: 25px;
        opacity: 0.95;
        line-height: 1.5;
    }

    .cta-button {
        display: inline-block;
        background: #ffffff;
        color: #362bae;
        padding: 18px 50px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 900;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .cta-button:hover {
        background: #FFD700;
        color: #362bae;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    }

    @media (max-width: 768px) {
        .cta-box-full {
            padding: 30px 15px;
        }

        .cta-title {
            font-size: 1.8rem;
        }

        .cta-text {
            font-size: 1rem;
            margin-bottom: 25px;
        }

        .cta-button {
            padding: 15px 35px;
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .cta-title {
            font-size: 1.5rem;
        }

        .cta-text {
            font-size: 0.9rem;
        }

        .cta-button {
            padding: 12px 30px;
            font-size: 0.9rem;
        }
    }



    .footer-container {
        background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
        color: #ffffff;
        padding: 0;
        margin-top: 60px;
        position: relative;
        overflow: hidden;
    }

    .footer-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, #362bae 50%, transparent 100%);
    }

    /* Stats Bar */
    .footer-stats {
        background: linear-gradient(135deg, #362bae 0%, #362bae 50%, #362bae 100%);
        padding: 40px 20px;
        position: relative;
        overflow: hidden;
    }

    .footer-stats::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
        animation: pulse 8s ease-in-out infinite;
    }

    .footer-stats-content {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px;
        position: relative;
        z-index: 2;
    }

    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 150px;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 900;
        color: #ffffff;
        text-shadow: 0 0 20px rgba(255,255,255,0.5);
        margin-bottom: 5px;
        animation: countUp 2s ease-out;
    }

    @keyframes countUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .stat-label {
        font-size: 0.95rem;
        color: rgba(255,255,255,0.9);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .stat-divider {
        width: 1px;
        height: 60px;
        background: rgba(255,255,255,0.3);
    }

    /* Main Footer Content */
    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 60px 20px 40px 20px;
    }

    .footer-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
        margin-bottom: 40px;
    }

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

    .footer-heading {
        color: #362bae;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-nav .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-link {
        color: #cccccc;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        line-height: 1.6;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-link i {
        color: #362bae;
        font-size: 0.9rem;
        width: 20px;
    }

    .footer-link:hover {
        color: #362bae;
        transform: translateX(5px);
    }

    /* Brand Column */
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }

    .footer-logo-section {
        margin-bottom: 20px;
    }

    .footer-logo-link {
        text-decoration: none;
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .footer-logo-link:hover {
        transform: scale(1.05);
    }

    .footer-logo-text {
        font-size: 3rem;
        font-weight: 900;
        font-style: italic;
        line-height: 1;
        text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    }

    .footer-logo-noo {
        color: #362bae;
    }

    .footer-logo-kies {
        color: #362bae;
    }

    .footer-tagline {
        color: #999999;
        font-size: 0.9rem;
        margin: 10px 0 20px 0;
        font-style: italic;
    }

    /* Social Icons */
    .footer-social {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(255, 20, 147, 0.1);
        border: 2px solid #362bae;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #362bae;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .social-icon:hover {
        background: #362bae;
        color: #ffffff;
        transform: translateY(-5px) rotate(360deg);
        box-shadow: 0 5px 20px rgba(255, 20, 147, 0.5);
    }

    /* About Column */
    .footer-description {
        color: #cccccc;
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .footer-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #362bae 0%, #362bae 100%);
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .footer-cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5);
        background: linear-gradient(135deg, #362bae 0%, #362bae 100%);
    }

    /* Footer Divider */
    .footer-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 20, 147, 0.3) 50%, transparent 100%);
        margin: 40px 0;
    }

    /* Bottom Section */
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col-full {
        width: 100%;
    }

    .footer-links-inline {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px 0;
        margin-bottom: 20px;
    }

    .footer-link-small {
        color: #999999;
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.3s ease;
    }

    .footer-link-small:hover {
        color: #362bae;
    }

    .footer-separator {
        color: #666666;
        margin: 0 10px;
    }

    .footer-disclaimer {
        color: #888888;
        font-size: 0.85rem;
        margin: 15px 0;
        line-height: 1.6;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-copyright {
        color: #666666;
        font-size: 0.9rem;
        margin: 15px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .footer-copyright i {
        color: #362bae;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .footer-row {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer-brand {
            order: -1;
        }

        .footer-stats-content {
            gap: 20px;
        }

        .stat-number {
            font-size: 2.5rem;
        }

        .footer-logo-text {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .footer-content {
            padding: 40px 15px 30px 15px;
        }

        .footer-stats {
            padding: 30px 15px;
        }

        .stat-divider {
            display: none;
        }

        .stat-item {
            min-width: 120px;
        }

        .stat-number {
            font-size: 2rem;
        }

        .stat-label {
            font-size: 0.8rem;
        }

        .footer-logo-text {
            font-size: 2.2rem;
        }

        .footer-heading {
            font-size: 1.1rem;
        }

        .footer-links-inline {
            flex-direction: column;
            align-items: center;
        }

        .footer-separator {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .stat-number {
            font-size: 1.8rem;
        }

        .footer-logo-text {
            font-size: 2rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }

        .footer-cta-btn {
            padding: 12px 25px;
            font-size: 0.9rem;
        }
    }





/* ============================================
   RESPONSIVE HEADER & MOBILE MENU
   ============================================ */

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #362bae;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

body.menu-open {
    overflow: hidden;
}

/* Navigation Wrapper */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

/* ============================================
   TABLET & SMALL LAPTOP (≤1200px)
   ============================================ */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 20px;
        gap: 15px;
    }
    
    .main-nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .search-input {
        width: 160px;
    }
    
    .search-input:focus {
        width: 200px;
    }
    
    .btn-login,
    .btn-get-access {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .logo-link .logo {
        height: 40px;
    }
}

/* ============================================
   TABLET (≤992px) - Show Hamburger Menu
   ============================================ */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .header-container {
        position: relative;
    }
    
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 80px 0 20px 0;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-wrapper.active {
        right: 0;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
    }
    
    .nav-link {
        padding: 15px 30px;
        font-size: 1rem;
        font-weight: 600;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.2s ease;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link:hover {
        background: #f8f8f8;
        color: #362bae;
        padding-left: 35px;
        transform: none;
    }
    
    .nav-link-live {
        background: linear-gradient(135deg, rgba(54, 43, 174, 0.1), rgba(54, 43, 174, 0.05));
    }
    
    .header-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 20px 30px;
        border-top: 2px solid #f0f0f0;
        margin-top: 10px;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-form {
        width: 100%;
    }
    
    .search-input {
        width: 100%;
        padding: 12px 45px 12px 16px;
        font-size: 1rem;
    }
    
    .search-input:focus {
        width: 100%;
    }
    
    .search-btn {
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .btn-login,
    .btn-get-access {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
        justify-content: center;
    }
    
    .btn-get-access {
        background: linear-gradient(135deg, #362bae 0%, #4a3fc4 100%);
        font-size: 1.05rem;
    }
}

/* ============================================
   MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
    .custom-header {
        padding: 10px 0;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .logo-link .logo {
        height: 35px;
    }
    
    .nav-wrapper {
        width: 280px;
    }
    
    .nav-link {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .header-actions {
        padding: 15px 25px;
    }
}

/* ============================================
   SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
    .logo-link .logo {
        height: 32px;
    }
    
    .mobile-menu-toggle {
        width: 26px;
        height: 20px;
    }
    
    .hamburger-line {
        height: 2.5px;
    }
    
    .nav-wrapper {
        width: 260px;
    }
    
    .nav-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .header-actions {
        padding: 15px 20px;
    }
    
    .btn-login,
    .btn-get-access {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* ============================================
   LARGE SCREENS (≥1400px)
   ============================================ */
@media (min-width: 1400px) {
    .header-container {
        max-width: 1600px;
    }
    
    .main-nav {
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1rem;
    }
}



