* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #d4af37;
            --gold-light: #ffd700;
            --gold-dark: #b8992f;
            --dark: #0a0806;
            --darker: #050301;
            --light: #f5e6d3;
            --cream: #f8f3e9;
            --accent: #8b7355;
            --red: #c41e3a;
            --green: #2e7d32;
            --brown: #3d2817;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            position: relative;
            line-height: 1.6;
        }

        /* LOADING SCREEN */
        #loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 1s ease, transform 1s ease;
        }

        #loading-screen.hidden {
            opacity: 0;
            transform: scale(1.1);
            pointer-events: none;
        }

        .loader-logo {
            width: 150px;
            height: 150px;
            margin-bottom: 2rem;
            animation: pulse 2s ease-in-out infinite;
        }

        .loader-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
        }

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

        .loader-bar {
            width: 200px;
            height: 4px;
            background: rgba(212, 175, 55, 0.2);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .loader-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
            width: 0%;
            animation: loading 2s ease-in-out forwards;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
        }

        @keyframes loading {
            to { width: 100%; }
        }

        /* PARTICLES BACKGROUND */
        #particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.15;
            pointer-events: none;
        }

        /* NAVIGATION PREMIUM */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5%;
            background: linear-gradient(180deg, rgba(10, 8, 6, 0.98) 0%, rgba(10, 8, 6, 0) 100%);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.scrolled {
            padding: 1rem 5%;
            background: rgba(10, 8, 6, 0.98);
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }

        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: transform 0.3s ease;
            text-decoration: none;
        }

        .logo-container:hover {
            transform: translateX(10px);
        }

        .logo-img {
            height: 70px;
            width: auto;
            transition: all 0.4s ease;
            filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
        }

        nav.scrolled .logo-img {
            height: 55px;
        }

        .logo-text {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--gold);
            letter-spacing: 4px;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            font-family: 'Raleway', sans-serif;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--gold);
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
            color: var(--dark);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            letter-spacing: 1px;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
        }

        /* HERO SECTION */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            max-width: 1200px;
            padding: 2rem;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            border: 2px solid var(--gold);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            margin-bottom: 2rem;
            font-family: 'Raleway', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            animation: fadeInDown 1s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-family: 'Cinzel', serif;
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 900;
            color: var(--gold);
            letter-spacing: 8px;
            margin-bottom: 1.5rem;
            text-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
            animation: fadeInUp 1s ease 0.2s both;
        }

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

        .hero-subtitle {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 700;
            color: var(--light);
            margin-bottom: 1rem;
            letter-spacing: 4px;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-description {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: var(--cream);
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            font-weight: 400;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .hero-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
            color: var(--dark);
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
            text-decoration: none;
            display: inline-block;
            font-family: 'Raleway', sans-serif;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--gold);
            padding: 1.2rem 3rem;
            border: 2px solid var(--gold);
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-family: 'Raleway', sans-serif;
        }

        .btn-secondary:hover {
            background: var(--gold);
            color: var(--dark);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            animation: bounce 2s infinite;
        }

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

        .scroll-indicator span {
            display: block;
            color: var(--gold);
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
            font-family: 'Raleway', sans-serif;
            text-transform: uppercase;
        }

        .scroll-arrow {
            width: 30px;
            height: 50px;
            border: 2px solid var(--gold);
            border-radius: 25px;
            position: relative;
            margin: 0 auto;
        }

        .scroll-arrow::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            animation: scroll 2s infinite;
        }

        @keyframes scroll {
            0% { top: 8px; opacity: 1; }
            100% { top: 30px; opacity: 0; }
        }

        /* SECTION COMMUNE */
        section {
            position: relative;
            z-index: 10;
            padding: 8rem 5%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-badge {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--gold);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            font-family: 'Raleway', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 900;
            color: var(--gold);
            letter-spacing: 4px;
            margin-bottom: 1.5rem;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
        }

        .section-description {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: var(--cream);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* BOUTEILLE 3D SECTION */
        .bottle-3d-section {
            background: linear-gradient(180deg, var(--dark) 0%, rgba(10, 8, 6, 0.8) 100%);
            padding: 8rem 5%;
        }

        .bottle-3d-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .bottle-3d-viewer {
            position: relative;
            height: 700px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            border-radius: 30px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            overflow: hidden;
        }

        #three-container {
            width: 100%;
            height: 100%;
            cursor: grab;
        }

        #three-container:active {
            cursor: grabbing;
        }

        .bottle-3d-controls {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            background: rgba(10, 8, 6, 0.9);
            padding: 1rem 2rem;
            border-radius: 50px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .control-btn {
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--gold);
            border-radius: 50%;
            color: var(--gold);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .control-btn:hover {
            background: var(--gold);
            color: var(--dark);
            transform: scale(1.1);
        }

        .bottle-3d-info {
            padding: 2rem 0;
        }

        .bottle-3d-info h2 {
            font-family: 'Cinzel', serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 900;
            color: var(--gold);
            letter-spacing: 3px;
            margin-bottom: 2rem;
        }

        .bottle-features {
            list-style: none;
            margin: 3rem 0;
        }

        .bottle-features li {
            font-size: 1.2rem;
            color: var(--cream);
            margin-bottom: 1.5rem;
            padding-left: 2.5rem;
            position: relative;
            line-height: 1.8;
        }

        .bottle-features li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 1.5rem;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .spec-item {
            background: rgba(212, 175, 55, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.3s ease;
        }

        .spec-item:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-5px);
        }

        .spec-label {
            font-family: 'Raleway', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .spec-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--light);
        }

        /* PRODUITS SECTION */
        .products-section {
            background: linear-gradient(180deg, rgba(10, 8, 6, 0.8) 0%, var(--dark) 100%);
        }

        .products-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            justify-content: center;
        }
        
        @media (max-width: 968px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        .product-card {
            background: rgba(212, 175, 55, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 30px;
            overflow: hidden;
            transition: all 0.5s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
            border-color: var(--gold);
        }

        .product-image {
            position: relative;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-image img {
            width: 80%;
            height: 90%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1) rotate(5deg);
        }

        .product-badge {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
            color: var(--dark);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Raleway', sans-serif;
        }

        .product-info {
            padding: 3rem;
        }

        .product-info h3 {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .product-description {
            font-size: 1.1rem;
            color: var(--cream);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .product-specs {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .product-spec {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .product-spec-label {
            font-size: 0.85rem;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
        }

        .product-spec-value {
            font-size: 1.2rem;
            color: var(--light);
            font-weight: 700;
        }

        /* COMPOSITION SECTION */
        .composition-section {
            background: var(--dark);
        }

        .composition-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .composition-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            border: 2px solid rgba(212, 175, 55, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .composition-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .composition-image:hover img {
            transform: scale(1.05);
        }

        .composition-content h2 {
            font-family: 'Cinzel', serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 900;
            color: var(--gold);
            margin-bottom: 2rem;
            letter-spacing: 3px;
        }

        .ingredients-list {
            list-style: none;
            margin: 3rem 0;
        }

        .ingredient-item {
            background: rgba(212, 175, 55, 0.05);
            padding: 1.5rem 2rem;
            margin-bottom: 1rem;
            border-radius: 15px;
            border-left: 4px solid var(--gold);
            transition: all 0.3s ease;
        }

        .ingredient-item:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateX(10px);
        }

        .ingredient-item h4 {
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
            font-weight: 700;
            font-family: 'Raleway', sans-serif;
        }

        .ingredient-item p {
            font-size: 1.05rem;
            color: var(--cream);
            line-height: 1.7;
        }

        .allergen-notice {
            background: rgba(139, 0, 0, 0.1);
            border: 1px solid var(--red);
            padding: 1.5rem;
            border-radius: 15px;
            margin-top: 2rem;
        }

        .allergen-notice p {
            color: var(--cream);
            font-size: 1rem;
            line-height: 1.6;
        }

        .allergen-notice strong {
            color: var(--red);
            font-weight: 700;
        }

        /* ABOUT SECTION */
        .about-section {
            background: linear-gradient(180deg, var(--dark) 0%, rgba(10, 8, 6, 0.9) 100%);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-content {
            text-align: center;
            margin-bottom: 5rem;
        }

        .about-content p {
            font-size: 1.3rem;
            color: var(--cream);
            line-height: 2;
            margin-bottom: 2rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 5rem;
        }

        .feature-card {
            background: rgba(212, 175, 55, 0.05);
            padding: 3rem 2rem;
            border-radius: 20px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            text-align: center;
            transition: all 0.4s ease;
        }

        .feature-card:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        .feature-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .feature-card p {
            font-size: 1.1rem;
            color: var(--cream);
            line-height: 1.8;
        }

        /* CONTACT SECTION */
        .contact-section {
            background: var(--darker);
            padding: 8rem 5%;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-info {
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 30px;
            padding: 4rem 3rem;
            margin-top: 3rem;
        }

        .contact-item {
            margin-bottom: 2rem;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-label {
            font-family: 'Raleway', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .contact-value {
            font-size: 1.5rem;
            color: var(--light);
            font-weight: 600;
        }

        .contact-value a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-value a:hover {
            color: var(--gold);
        }

        /* FOOTER */
        footer {
            background: var(--darker);
            padding: 3rem 5%;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-logo img {
            height: 50px;
            width: auto;
        }

        .footer-logo span {
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--gold);
            letter-spacing: 3px;
        }

        .footer-text {
            color: var(--cream);
            font-size: 0.95rem;
            text-align: center;
        }

        .footer-social {
            display: flex;
            gap: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--gold);
            color: var(--dark);
            transform: translateY(-5px);
        }

        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .bottle-3d-container,
            .composition-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 3%;
            }

            .nav-links {
                display: none;
            }

            .logo-text {
                font-size: 1.5rem;
                letter-spacing: 2px;
            }

            .logo-img {
                height: 50px;
            }

            section {
                padding: 5rem 3%;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 300px;
            }

            .specs-grid,
            .product-specs {
                grid-template-columns: 1fr;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

        /* ANIMATIONS */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-100px);
            transition: all 1s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(100px);
            transition: all 1s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: all 1s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }