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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0a0a0a;
            color: #ffffff;
        }

        .hero {
            height: 100vh;
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(5px);
            opacity: 0;
            transform: scale(0.95);
            animation: heroReveal 1.5s cubic-bezier(0.5, 0, 0, 1) forwards;
            transition: opacity 0.5s ease;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(50px);
            animation: shine 3s linear infinite, fadeInUp 1s ease forwards;
            text-align: center;
            padding: 0 20px;
            text-shadow: 0 0 20px rgba(230, 184, 0, 0.5);
            background: linear-gradient(45deg, #ffffff, #e6b800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 4vw, 1.5rem);
            font-weight: 300;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease forwards 0.5s;
            text-align: center;
            padding: 0 20px;
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
            margin-top: 100vh;
            background: linear-gradient(to bottom, transparent, #0a0a0a 300px);
            backdrop-filter: blur(10px);
        }

        .content-section {
            padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 60px);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            background: linear-gradient(
                rgba(10, 10, 10, 0.8),
                rgba(10, 10, 10, 0.95)
            );
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 6vw, 3rem);
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            color: #e6b800;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #e6b800;
            transition: width 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .section-title.visible::after {
            width: 100px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: clamp(2rem, 5vw, 4rem);
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .card {
            background: rgba(255, 255, 255, 0.05);
            padding: clamp(2rem, 5vw, 3rem);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateY(0);
            will-change: transform;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 8px 30px rgba(41, 98, 255, 0.2),
                0 0 15px rgba(41, 98, 255, 0.1);
        }

        .card:hover {
            transform: translateY(-20px) scale(1.02);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(230, 184, 0, 0.3);
            box-shadow: 
                0 15px 40px rgba(41, 98, 255, 0.25),
                0 0 25px rgba(41, 98, 255, 0.15),
                0 0 20px rgba(230, 184, 0, 0.2);
        }

        .card h3 {
            color: #e6b800;
            margin-bottom: 1.5rem;
            font-size: clamp(1.3rem, 4vw, 1.8rem);
            position: relative;
            display: inline-block;
        }

        .card h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background: #e6b800;
            transition: width 0.3s ease;
        }

        .card:hover h3::after {
            width: 100%;
        }

        .card p {
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }

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

        @keyframes shine {
            to {
                background-position: 200% center;
            }
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: clamp(15px, 3vw, 20px) clamp(20px, 5vw, 10%);
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            gap: clamp(1rem, 3vw, 2rem);
        }

        nav a {
            color: white;
            text-decoration: none;
            margin-left: 2rem;
            transition: color 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #e6b800;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Mobile menu styles */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        @media (max-width: 1024px) {
            .hero-title {
                font-size: clamp(2rem, 6vw, 4rem);
                letter-spacing: 0.1em;
            }

            .hero-subtitle {
                font-size: clamp(0.9rem, 3vw, 1.2rem);
            }

            .content-section {
                padding: clamp(40px, 8vw, 80px) clamp(15px, 4vw, 40px);
            }

            .grid {
                gap: clamp(1.5rem, 4vw, 3rem);
            }
        }

        @media (max-width: 768px) {
            .content-section {
                padding: clamp(40px, 8vw, 60px) clamp(15px, 4vw, 30px);
                background: linear-gradient(
                    rgba(10, 10, 10, 0.92),
                    rgba(10, 10, 10, 0.98)
                );
            }

            .card {
                background: rgba(0, 0, 0, 0.7);
                padding: 1.8rem;
                transform: none;
                will-change: auto;
                box-shadow: 
                    0 10px 35px rgba(41, 98, 255, 0.2),
                    0 0 20px rgba(41, 98, 255, 0.1);
            }

            .card:hover {
                transform: translateY(-10px);
                box-shadow: 
                    0 15px 45px rgba(41, 98, 255, 0.25),
                    0 0 30px rgba(41, 98, 255, 0.15);
            }

            .hero-content {
                opacity: 1;
                transform: none;
                background: rgba(0, 0, 0, 0.5);
            }

            .hero-title {
                font-size: 2.5rem;
                text-shadow: 
                    0 0 30px rgba(41, 98, 255, 0.4),
                    0 0 60px rgba(41, 98, 255, 0.3);
            }

            .hero-subtitle {
                font-size: 1rem;
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
            }

            .grid {
                gap: clamp(1.5rem, 4vw, 2.5rem);
            }

            .card {
                padding: 1.8rem;
            }

            nav {
                padding: 15px 20px;
            }

            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 33%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 80px 20px;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .nav-links.active {
                right: 0;
            }

            .menu-toggle {
                display: block;
                z-index: 1001;
                transition: all 0.3s ease;
            }

            .nav-links a {
                margin: 10px 0;
                font-size: 1.2rem;
                opacity: 0;
                transform: translateX(20px);
                transition: all 0.3s ease;
            }

            .nav-links.active a {
                opacity: 1;
                transform: translateX(0);
            }

            .overlay-content {
                padding: 2rem;
                transform: scale(0.9);
                max-width: 90%;
                box-shadow: 
                    0 10px 50px rgba(41, 98, 255, 0.35),
                    0 0 40px rgba(41, 98, 255, 0.25);
            }

            .overlay-logo {
                font-size: 2.8rem;
                text-shadow: 
                    0 0 40px rgba(41, 98, 255, 0.4),
                    0 0 80px rgba(41, 98, 255, 0.3);
            }

            .overlay-subtitle {
                font-size: 0.9rem;
                margin-bottom: 2rem;
                letter-spacing: 0.3em;
            }

            .overlay-text {
                font-size: 0.95rem;
                margin-bottom: 2rem;
                line-height: 1.5;
            }

            .overlay-buttons {
                max-width: 280px;
            }

            .enter-btn, .exit-btn {
                padding: 1rem;
                font-size: 0.95rem;
            }

            .enter-btn {
                box-shadow: 
                    0 5px 25px rgba(41, 98, 255, 0.3),
                    0 0 40px rgba(41, 98, 255, 0.2);
            }

            .enter-btn:hover {
                box-shadow: 
                    0 10px 40px rgba(41, 98, 255, 0.4),
                    0 0 60px rgba(41, 98, 255, 0.3);
            }
        }

        @media (max-width: 480px) {
            .content-section {
                background: linear-gradient(
                    rgba(10, 10, 10, 0.95),
                    rgba(10, 10, 10, 0.98)
                );
            }

            .card {
                padding: 1.5rem;
                box-shadow: 
                    0 12px 40px rgba(41, 98, 255, 0.2),
                    0 0 25px rgba(41, 98, 255, 0.15);
            }

            .card:hover {
                box-shadow: 
                    0 18px 50px rgba(41, 98, 255, 0.25),
                    0 0 35px rgba(41, 98, 255, 0.2);
            }

            .hero-title {
                font-size: 2rem;
                text-shadow: 
                    0 0 40px rgba(41, 98, 255, 0.5),
                    0 0 80px rgba(41, 98, 255, 0.4);
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }

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

            .card {
                padding: 1.5rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .card h3 {
                font-size: 1.2rem;
            }

            .card p {
                font-size: 0.9rem;
                line-height: 1.5;
            }

            /* Improve scroll performance */
            .content-wrapper {
                transform: translateZ(0);
                backface-visibility: hidden;
                perspective: 1000px;
            }

            /* Reduce particle effect for better performance */
            .particle {
                width: 1px;
                height: 1px;
            }

            .nav-links {
                width: 50%;
            }

            .overlay-content {
                padding: 1.8rem;
                transform: scale(0.85);
                max-width: 95%;
                box-shadow: 
                    0 15px 60px rgba(41, 98, 255, 0.4),
                    0 0 50px rgba(41, 98, 255, 0.3);
            }

            .overlay-logo {
                font-size: 2.4rem;
                text-shadow: 
                    0 0 50px rgba(41, 98, 255, 0.5),
                    0 0 100px rgba(41, 98, 255, 0.4);
            }

            .overlay-subtitle {
                font-size: 0.8rem;
                letter-spacing: 0.2em;
                margin-bottom: 1.5rem;
            }

            .overlay-text {
                font-size: 0.85rem;
                line-height: 1.4;
                margin-bottom: 1.5rem;
            }

            .overlay-buttons {
                max-width: 250px;
                gap: 1rem;
            }

            .enter-btn, .exit-btn {
                padding: 0.8rem;
                font-size: 0.85rem;
            }

            .enter-btn {
                box-shadow: 
                    0 8px 30px rgba(41, 98, 255, 0.35),
                    0 0 50px rgba(41, 98, 255, 0.25);
            }

            .enter-btn:hover {
                box-shadow: 
                    0 12px 50px rgba(41, 98, 255, 0.45),
                    0 0 70px rgba(41, 98, 255, 0.35);
            }
        }

        @media (orientation: landscape) and (max-height: 500px) {
            .hero-content {
                padding: 20px;
            }

            .hero-title {
                font-size: clamp(1.5rem, 6vw, 2.5rem);
            }

            .nav-links {
                padding: 60px 20px;
            }
        }

        /* High-resolution screens */
        @media (min-width: 1440px) {
            .content-wrapper {
                max-width: 1920px;
                margin-left: auto;
                margin-right: auto;
            }

            .grid {
                gap: 4rem;
            }

            .card {
                padding: 3rem;
            }

            .hero-title {
                font-size: 6rem;
            }

            .hero-subtitle {
                font-size: 1.8rem;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) {
            .card {
                transform: none !important;
            }

            .card:hover {
                transform: none !important;
            }

            nav a::after {
                display: none;
            }

            nav a:active {
                color: #e6b800;
            }
        }

        /* Reduced motion preferences */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }

            .reveal {
                transition: none;
            }

            .particle {
                display: none;
            }
        }

        /* Enhanced animations and transitions */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            filter: blur(5px);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        @keyframes heroReveal {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Smooth fade for hero content */
        .hero.fade-out .hero-content {
            opacity: 0;
        }

        /* Add smooth gradient overlay */
        .overlay-gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 300px;
            background: linear-gradient(to bottom, transparent, #0a0a0a);
            pointer-events: none;
        }

        /* Particle effect for hero section */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }

        .age-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.95));
            backdrop-filter: blur(10px);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            transition: opacity 0.5s ease;
            overflow: hidden;
        }

        .overlay-content {
            max-width: 500px;
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            padding: 3rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        }

        .overlay-content:hover {
            transform: translateY(-10px) scale(1.01);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(230, 184, 0, 0.3);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(230, 184, 0, 0.2);
        }

        .overlay-logo {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            color: #e6b800;
            margin-bottom: 0.5rem;
            letter-spacing: 0.2em;
            text-shadow: 0 0 20px rgba(230, 184, 0, 0.5);
            background: linear-gradient(45deg, #ffffff, #e6b800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shine 3s linear infinite;
        }

        .overlay-subtitle {
            color: #e6b800;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            letter-spacing: 0.5em;
            text-shadow: 0 0 20px rgba(230, 184, 0, 0.3);
        }

        .overlay-text {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .overlay-buttons {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 300px;
            margin: 0 auto;
        }

        .enter-btn, .exit-btn {
            width: 100%;
            padding: 1.2rem;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1.1rem;
            letter-spacing: 0.1em;
        }

        .enter-btn {
            background: #e6b800;
            color: black;
            box-shadow: 0 4px 15px rgba(230, 184, 0, 0.3);
        }

        .exit-btn {
            background: transparent;
            color: #e6b800;
            border: 1px solid #e6b800;
        }

        .enter-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(230, 184, 0, 0.4);
        }

        .exit-btn:hover {
            background: rgba(230, 184, 0, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(230, 184, 0, 0.2);
        }

        @media (max-width: 768px) {
            .overlay-content {
                padding: 2rem;
                transform: scale(0.9);
                max-width: 90%;
                box-shadow: 
                    0 10px 50px rgba(41, 98, 255, 0.35),
                    0 0 40px rgba(41, 98, 255, 0.25);
            }

            .overlay-logo {
                font-size: 2.8rem;
                text-shadow: 
                    0 0 40px rgba(41, 98, 255, 0.4),
                    0 0 80px rgba(41, 98, 255, 0.3);
            }

            .enter-btn {
                box-shadow: 
                    0 5px 25px rgba(41, 98, 255, 0.3),
                    0 0 40px rgba(41, 98, 255, 0.2);
            }

            .enter-btn:hover {
                box-shadow: 
                    0 10px 40px rgba(41, 98, 255, 0.4),
                    0 0 60px rgba(41, 98, 255, 0.3);
            }
        }

        @media (max-width: 480px) {
            .overlay-content {
                padding: 1.8rem;
                transform: scale(0.85);
                max-width: 95%;
                box-shadow: 
                    0 15px 60px rgba(41, 98, 255, 0.4),
                    0 0 50px rgba(41, 98, 255, 0.3);
            }

            .overlay-logo {
                font-size: 2.4rem;
                text-shadow: 
                    0 0 50px rgba(41, 98, 255, 0.5),
                    0 0 100px rgba(41, 98, 255, 0.4);
            }

            .enter-btn {
                box-shadow: 
                    0 8px 30px rgba(41, 98, 255, 0.35),
                    0 0 50px rgba(41, 98, 255, 0.25);
            }

            .enter-btn:hover {
                box-shadow: 
                    0 12px 50px rgba(41, 98, 255, 0.45),
                    0 0 70px rgba(41, 98, 255, 0.35);
            }
        }

        @media (max-height: 600px) and (orientation: landscape) {
            .hero-content {
                padding: 1rem;
            }

            .content-section {
                padding: 2rem 1.5rem;
            }

            .card {
                padding: 1.2rem;
            }
        }

        .footer {
            background: linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.98));
            padding: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-logo {
            color: #e6b800;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-family: 'Playfair Display', serif;
            text-shadow: 0 0 20px rgba(230, 184, 0, 0.3);
        }

        .footer-info {
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .footer-links {
            margin-bottom: 1.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #e6b800;
        }

        .footer-bottom {
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 768px) {
            .footer {
                padding: 1.5rem;
            }

            .footer-links a {
                margin: 0 0.5rem;
                font-size: 0.9rem;
            }
        }

        /* Update map container styles */
        .map-container {
            position: relative;
            width: 100%;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 
                0 10px 40px rgba(41, 98, 255, 0.25),
                0 0 20px rgba(41, 98, 255, 0.15);
            transition: all 0.3s ease;
        }

        .map-container:hover {
            box-shadow: 
                0 15px 50px rgba(41, 98, 255, 0.35),
                0 0 30px rgba(41, 98, 255, 0.25);
            transform: translateY(-5px);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 768px) {
            .map-container {
                height: 300px;
            }
        }

        .atmosphere-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .atmosphere-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 16/9;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 10px 40px rgba(41, 98, 255, 0.25),
                0 0 20px rgba(41, 98, 255, 0.15);
        }

        .atmosphere-image.active {
            opacity: 1;
            transform: translateX(0);
        }

        .atmosphere-image:nth-child(2) {
            transform: translateX(50px);
        }

        .atmosphere-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        @media (max-width: 768px) {
            .atmosphere-images {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 1rem;
                max-width: 500px;
                margin: 0 auto;
            }

            .atmosphere-image {
                transform: translateY(-30px);
                opacity: 0;
            }

            .atmosphere-image:nth-child(2) {
                transform: translateY(30px);
            }

            .atmosphere-image.active {
                transform: translateY(0);
                opacity: 1;
            }

            /* Center all text on mobile */
            .content-section {
                text-align: center;
            }

            .card {
                text-align: center;
                padding: 2rem 1.5rem;
            }

            .card h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        .review-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95)),
                        url('casanova-img1.webp') center/cover fixed;
            padding: 4rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            backdrop-filter: blur(10px);
        }

        .review-text {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-size: 1.2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .review-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: linear-gradient(45deg, #e6b800, #ffd700);
            color: #000;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 
                0 10px 30px rgba(230, 184, 0, 0.3),
                0 0 20px rgba(230, 184, 0, 0.2),
                inset 0 0 0 0 rgba(255, 255, 255, 0.2);
        }

        .review-button:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 15px 40px rgba(230, 184, 0, 0.4),
                0 0 30px rgba(230, 184, 0, 0.3),
                inset 0 0 100px rgba(255, 255, 255, 0.2);
        }

        .review-icon {
            font-size: 1.5rem;
            animation: starPulse 2s infinite;
        }

        @keyframes starPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        @media (max-width: 768px) {
            .review-section {
                padding: 3rem 1rem;
            }
            
            .review-button {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
                width: auto;
                min-width: 200px;
            }

            .review-icon {
                font-size: 1.2rem;
            }
        }