  /* ========================================
           VARIABLES & BASE STYLES
        ======================================== */
        :root {
            --bg-dark: #1a1a1a;
            --bg-darker: #0d0d0d;
            --bg-card: #242424;
            --accent-cyan: #0dcaf0;
            --accent-green: #198754;
            --text-white: #ffffff;
            --text-muted: #a0a0a0;
            --font-display: 'Playfair Display', serif;
            --font-body: 'Poppins', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-dark);
            color: var(--text-white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            /*font-family: var(--font-display);*/
        }

        /* ========================================
           NAVBAR
        ======================================== */
        .navbar-custom {
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar-custom.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        .navbar-brand {
            /*font-family: var(--font-display);*/
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-white) !important;
        }

        .navbar-brand span {
            color: var(--accent-cyan);
        }

        .nav-link {
            color: var(--text-white) !important;
            font-weight: 400;
            margin: 0 0.5rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--accent-cyan) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-cyan);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-phone {
            background: var(--accent-green);
            color: white !important;
            border: none;
            font-weight: 500;
        }

        .btn-phone:hover {
            background: #157347;
            transform: translateY(-2px);
        }

        .btn-contact-nav {
            background: transparent;
            border: 2px solid var(--accent-cyan);
            color: var(--accent-cyan) !important;
        }

        .btn-contact-nav:hover {
            background: var(--accent-cyan);
            color: var(--bg-dark) !important;
        }

        /* ========================================
           HERO SECTION
        ======================================== */
        .hero-section {
            height: 100vh;
            min-height: 700px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
            animation: kenBurns 20s ease-in-out infinite;
        }

        .hero-slide.active {
            opacity: 1;
        }

        @keyframes kenBurns {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(26, 26, 26, 0.4) 0%,
                rgba(26, 26, 26, 0.7) 50%,
                rgba(26, 26, 26, 0.95) 100%
            );
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 2rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--accent-cyan);
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.5s;
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.8s;
        }

        .hero-title span {
            color: var(--accent-cyan);
        }

        .typing-text {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: var(--text-muted);
            min-height: 2.5rem;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 1.1s;
        }

        .typing-cursor {
            display: inline-block;
            width: 3px;
            height: 1.5rem;
            background: var(--accent-cyan);
            margin-left: 5px;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .hero-cta {
            margin-top: 2.5rem;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 1.4s;
        }

        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }

        .hero-scroll a {
            color: var(--accent-cyan);
            font-size: 2rem;
            text-decoration: none;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-15px); }
            60% { transform: translateX(-50%) translateY(-7px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========================================
           SECTION STYLES
        ======================================== */
        section {
            padding: 6rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-subtitle {
            color: var(--accent-cyan);
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 600;
        }

        .section-divider {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-cyan), transparent);
            margin: 1rem auto 0;
        }

        /* ========================================
           SERVICES SECTION
        ======================================== */
        .services-section {
            background: var(--bg-darker);
        }

        .service-card {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            height: 350px;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(13, 202, 240, 0.2);
        }

        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;      
            
        }

        .service-card:hover img {
            transform: scale(1.1);
        } 

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to top,
                rgba(26, 26, 26, 0.95) 0%,
                rgba(26, 26, 26, 0.3) 50%,
                transparent 100%
            );
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            transition: all 0.4s ease;
        }

        .service-overlay h4 {
            text-decoration: none;
            color: white;
        }

        .service-card:hover .service-overlay {
            background: linear-gradient(
                to top,
                rgba(252, 252, 252, 0.9) 0%,  /* rgba(13, 202, 240, 0.9) 0%, */
                rgba(13, 202, 240, 0.3) 50%,
                transparent 100%
            );
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--accent-cyan);
            margin-bottom: 1rem;
            transition: all 0.4s ease; 
        }

        .service-card:hover .service-icon {
            color: var(--bg-dark);
          /*  transform: scale(1.2);*/
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            transition: color 0.4s ease;
        }

        .service-card:hover .service-title {
            color: var(--bg-dark);
        }

        .service-desc {
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: color 0.4s ease;
        }

        .service-card:hover .service-desc {
            color: var(--bg-dark);
        }

        /* ========================================
           GALLERY / SHOOTINGS SECTION
        ======================================== */
        .gallery-section {
            background: var(--bg-dark);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 280px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 202, 240, 0);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            background: rgba(13, 202, 240, 0.85);
            opacity: 1;
        }

        .gallery-overlay i {
            font-size: 2.5rem;
            color: var(--bg-dark);
            margin-bottom: 1rem;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay i {
            transform: translateY(0);
        }

        .gallery-overlay h5 {
            color: var(--bg-dark);
            font-weight: 600;
            transform: translateY(20px);
            transition: transform 0.4s ease 0.1s;
            text-align: center;
            padding: 0 1rem;
        }

        .gallery-item:hover .gallery-overlay h5 {
            transform: translateY(0);
        }

        .gallery-overlay span {
            color: var(--bg-darker);
            font-size: 0.85rem;
            transform: translateY(20px);
            transition: transform 0.4s ease 0.2s;
        }

        .gallery-item:hover .gallery-overlay span {
            transform: translateY(0);
        }

        .gallery-item a {
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: inherit;
        }

        /* ========================================
           ABOUT SECTION
        ======================================== */
        .about-section {
            background: var(--bg-darker);
        }

        .about-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .about-badge {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            background: var(--accent-cyan);
            color: var(--bg-dark);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
        }

        .about-badge h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0;
        }

        .about-badge span {
            font-size: 0.9rem;
            font-weight: 500;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .about-content h2 span {
            color: var(--accent-cyan);
        }

        .about-content p {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .about-feature i {
            color: var(--accent-cyan);
            font-size: 1.2rem;
        }

        /* ========================================
           TESTIMONIALS SECTION
        ======================================== */
        .testimonials-section {
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '\201C';
            position: absolute;
            top: 5%;
            left: 5%;
            font-size: 20rem;
            color: rgba(13, 202, 240, 0.05);
            font-family: var(--font-display);
            line-height: 1;
        }

        .testimonial-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2.5rem;
            height: 100%;
            position: relative;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .testimonial-stars {
            color: #ffc107;
            margin-bottom: 1.5rem;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-cyan);
        }

        .testimonial-author h5 {
            margin-bottom: 0.25rem;
            font-size: 1.1rem;
        }

        .testimonial-author span {
            color: var(--accent-cyan);
            font-size: 0.85rem;
        }

        /* ========================================
            NEWS SECTION
        ======================================== */

        .news-section {
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }

        .news-section::before {
            content: '\201C';
            position: absolute;
            top: 5%;
            left: 5%;
            font-size: 20rem;
            color: rgba(13, 202, 240, 0.05);
            font-family: var(--font-display);
            line-height: 1;
        }

        .news-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2.5rem;
            height: 100%;
            position: relative;
            transition: all 0.4s ease;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .news-stars {
            color: #ffc107;
            margin-bottom: 1.5rem;
        }

        .news-text {
            font-style: italic;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .news-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .news-info img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-cyan);
        }

        .news-info h5 {
            margin-bottom: 0.25rem;
            font-size: 1.1rem;
        }

        .news-info span {
            color: var(--accent-cyan);
            font-size: 0.85rem;
        }

        /* ========================================
           PROMO SECTION
        ======================================== */
        .promo-section {
            background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .promo-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(13, 202, 240, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .promo-card {
            background: var(--bg-card);
            border-radius: 25px;
            padding: 3rem;
            text-align: center;
            position: relative;
            border: 2px solid transparent;
            transition: all 0.4s ease;
        }

        .promo-card:hover {
            border-color: var(--accent-cyan);
            transform: scale(1.02);
        }

        .promo-card.featured {
            border-color: var(--accent-cyan);
            transform: scale(1.05);
        }

        .promo-card.featured::before {
            content: 'Populaire';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-cyan);
            color: var(--bg-dark);
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .promo-icon {
            font-size: 3rem;
            color: var(--accent-cyan);
            margin-bottom: 1.5rem;
        }

        .promo-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .promo-price {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent-cyan);
            margin-bottom: 0.5rem;
        }

        .promo-price span {
            font-size: 1.2rem;
            color: var(--text-muted);
        }

        .promo-details {
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .promo-features {
            text-align: left;
            margin-bottom: 2rem;
        }

        .promo-features li {
            padding: 0.5rem 0;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .promo-features li i {
            color: var(--accent-cyan);
        }

        /* ========================================
           CONTACT SECTION
        ======================================== */
        .contact-section {
            background: var(--bg-darker);
        }

        .contact-info-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2.5rem;
            height: 100%;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .contact-info-item:last-child {
            margin-bottom: 0;
        }

        .contact-info-icon {
            width: 60px;
            height: 60px;
            background: rgba(13, 202, 240, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-info-icon i {
            font-size: 1.5rem;
            color: var(--accent-cyan);
        }

        .contact-info-content h5 {
            margin-bottom: 0.5rem;
        }

        .contact-info-content p {
            color: var(--text-muted);
            margin-bottom: 0;
        }

        .contact-info-content a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info-content a:hover {
            color: var(--text-white);
        }

        .contact-form {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2.5rem;
        }

        .form-control {
            background: var(--bg-dark);
            border: 2px solid transparent;
            color: var(--text-white);
            padding: 1rem 1.5rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            background: var(--bg-dark);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 0.2rem rgba(13, 202, 240, 0.15);
            color: var(--text-white);
        }

        .form-control::placeholder {
            color: var(--text-muted);
        }

        .form-label {
            color: var(--text-white);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        /* ========================================
           FOOTER
        ======================================== */
        footer {
            background: var(--bg-darker);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-brand span {
            color: var(--accent-cyan);
        }

        .footer-desc {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--bg-card);
            border-radius: 50%;
            color: var(--text-white);
            margin-right: 0.75rem;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--accent-cyan);
            color: var(--bg-dark);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--text-white);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-cyan);
            padding-left: 5px;
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: var(--text-muted);
        }

        /* ========================================
           BUTTONS
        ======================================== */
        .btn-primary-custom {
            background: var(--accent-cyan);
            color: var(--bg-dark);
            border: none;
            font-weight: 600;
            padding: 1rem 2.5rem;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            background: #0bb5d6;
            color: var(--bg-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(13, 202, 240, 0.3);
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--text-white);
            border: 2px solid var(--text-white);
            font-weight: 500;
            padding: 1rem 2.5rem;
            transition: all 0.3s ease;
        }

        .btn-outline-custom:hover {
            background: var(--text-white);
            color: var(--bg-dark);
            transform: translateY(-3px);
        }

        .btn-success-custom {
            background: var(--accent-green);
            color: var(--text-white);
            border: none;
            font-weight: 600;
            padding: 1rem 2.5rem;
            transition: all 0.3s ease;
        }

        .btn-success-custom:hover {
            background: #157347;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(25, 135, 84, 0.3);
        }

        /* ========================================
           LIGHTBOX
        ======================================== */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 2.5rem;
            color: var(--text-white);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .lightbox-close:hover {
            color: var(--accent-cyan);
        }

        .lightbox-info {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: var(--text-white);
        }

        .lightbox-info h4 {
            margin-bottom: 0.5rem;
        }

        .lightbox-info span {
            color: var(--accent-cyan);
        }

        /* ========================================
           ANIMATIONS
        ======================================== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* ========================================
           RESPONSIVE
        ======================================== */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--bg-darker);
                padding: 1.5rem;
                border-radius: 15px;
                margin-top: 1rem;
            }

            .nav-link {
                padding: 0.75rem 0 !important;
            }

            .hero-cta .btn {
                display: block;
                width: 100%;
                margin-bottom: 1rem;
            }

            .about-image {
                margin-bottom: 2rem;
            }

            .about-badge {
                bottom: 1rem;
                right: 1rem;
                padding: 1rem;
            }

            .about-badge h3 {
                font-size: 2rem;
            }
        }

        @media (max-width: 767px) {
            section {
                padding: 4rem 0;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .promo-card.featured {
                transform: none;
            }
        }

        /* ========================================
           PRELOADER
        ======================================== */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            text-align: center;
        }

        .preloader-spinner {
            width: 60px;
            height: 60px;
            border: 3px solid var(--bg-card);
            border-top-color: var(--accent-cyan);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1.5rem;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .preloader-text {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--text-white);
        }

        .preloader-text span {
            color: var(--accent-cyan);
        }