        @import url('https://fonts.googleapis.com/css2?family=Italiana&family=Montserrat:wght@300;400;600&display=swap');

        :root {
            --primary: #0a0a0a;
            --accent: #d4af37;
            --text: #ffffff;
        }

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

        body {
            background: var(--primary);
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
        }

        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.15s ease;
            transition-property: width, height, border;
        }

        .cursor.hovered {
            width: 40px;
            height: 40px;
            border: 2px solid var(--accent);
        }

        /* Navigation */
        .nav-bar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 2rem;
            transition: all 0.5s ease;
            mix-blend-mode: difference;
        }

        .nav-scrolled {
            padding: 1rem 2rem;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
        }

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

        .logo {
            font-family: 'Italiana', serif;
            font-size: 2rem;
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 3rem;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
        }

        .dropdown {
            position: relative;
            list-style: none;
        }

        .dropdown-trigger {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .dropdown-trigger::after {
            content: '▼';
            font-size: 0.8em;
            margin-left: 0.25rem;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgb(0, 0, 0, 1);
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease-in-out;
            min-width: 150px;
            padding: 0.5rem 0;
            list-style: none;
        }

        .dropdown-menu li {
            padding: 0.5rem 1rem;
        }

        .dropdown-menu a {
            color: #333;
            text-decoration: none;
            display: block;
        }

        .dropdown-menu li:hover {
            background: #1b1b1b;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
        }

        .hero-content {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            text-align: center;
            padding: 0 2rem;
        }

        .hero h1 {
            font-family: 'Italiana', serif;
            font-size: 5rem;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.5s;
        }

        .hero p {
            font-size: 1.2rem;
            font-weight: 300;
            letter-spacing: 4px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.8s;
        }

        /* Models Grid */
        .models-section {
            padding: 8rem 2rem;
            background: #0a0a0a;
        }

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

        .model-card {
            position: relative;
            aspect-ratio: 2/3;
            overflow: hidden;
            cursor: pointer;
        }

        .model-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .model-card:hover img {
            transform: scale(1.1);
        }

        .model-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .model-card:hover .model-info {
            transform: translateY(0);
        }

        .model-info h3 {
            font-family: 'Italiana', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        /* Events Section */
        .events-section {
            padding: 8rem 2rem;
            background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
        }

        .section-title {
            font-family: 'Italiana', serif;
            font-size: 3rem;
            text-align: center;
            margin-bottom: 4rem;
            color: var(--accent);
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .event-card {
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 400px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.1);
            padding: 2rem;
            border-radius: 4px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                        background-color 0.3s ease;
        }

        .event-card p {
            flex-grow: 1;
            margin-bottom: 2rem;
        }

        .event-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(212, 175, 55, 0.2);
        }

        .event-date {
            color: var(--accent);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .event-card h3 {
            font-family: 'Italiana', serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .cta-button {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            right: 2rem;
            display: block;
            padding: 1rem 2rem;
            color: var(--accent);
            border: 1px solid var(--accent);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-2px);
        }

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

        /* Mobile Styles */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 3rem;
            }

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

            .model-info {
                transform: translateY(0);
            }
        }

        .mobile-menu {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem;
            z-index: 1000;
        }

        .mobile-menu-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .mobile-menu-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--text);
            text-decoration: none;
            font-size: 0.8rem;
        }

        .mobile-menu-item i {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
            color: var(--accent);
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }

            .app-container {
                padding-bottom: 80px;
            }
        }

        .scroll-indicator {
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .scroll-dot {
            width: 10px;
            height: 10px;
            border: 1px solid var(--accent);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .scroll-dot.active {
            background: var(--accent);
        }

        .success-section {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
        }

        .success-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .success-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.1);
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }

        .success-card:hover {
            transform: translateY(-10px);
        }

        .success-image-wrapper {
            position: relative;
            margin-bottom: 2rem;
            display: inline-block;
        }

        .success-image-wrapper img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent);
        }

        .social-stats {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid var(--accent);
            padding: 0.8rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            border-radius: 50px;
            white-space: nowrap;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            z-index: 10;
        }

        .stat {
            text-align: center;
        }

        .growth-arrow {
            color: #4CAF50;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.2rem;
            animation: bounce 2s infinite;
        }

        .stat-value {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 0.2rem;
        }

        .stat-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
        }

        .growth-line {
            height: 30px;
            width: 1px;
            background: var(--accent);
            opacity: 0.3;
        }

        .success-role {
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            margin: 0.5rem 0 1.5rem;
        }

        .success-quote {
            font-style: italic;
            opacity: 0.8;
            line-height: 1.6;
        }

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

        @media (max-width: 768px) {
            .success-grid {
                grid-template-columns: 1fr;
            }

            .social-stats {
                padding: 0.8rem 1.5rem;
            }
        }

        .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-video {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-video.active {
            opacity: 1;
        }

        .video-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            width: 200px;
        }

        .progress-container {
            background: rgba(255, 255, 255, 0.2);
            height: 2px;
            border-radius: 2px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            background: var(--accent);
            width: 0;
            transition: width 0.1s linear;
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--primary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent);
        }