        /* ========================================
           CSS VARIABLES - DARK ROMANCE DESIGN SYSTEM
           ======================================== */
        :root {
            /* Kolory Sexy Pink & Rose (PRIMARY) - Dark Romance */
            --pink-light: #F48FB1;
            --pink-medium: #EC407A;
            --pink-dark: #C2185B;
            --pink-pastel: #FCE4EC;

            /* Kolory Dark Gold & Bronze (ACCENT) */
            --gold-light: #D4A574;
            --gold-medium: #B8860B;
            --gold-dark: #8B6914;
            --gold-pale: #2A2520;

            /* Neutralne - Dark Romance */
            --white: #1A1A1A;
            --off-white: #242424;
            --light-gray: #2E2E2E;
            --text-gray: #E8E8E8;
            --border-gray: #3D3D3D;

            /* Gradienty - Seductive & Moody */
            --gradient-hero: linear-gradient(135deg, rgba(194,24,91,0.7), rgba(46,8,84,0.6));
            --gradient-overlay: linear-gradient(180deg, rgba(194,24,91,0.85), rgba(236,64,122,0.7));
            --gradient-button: linear-gradient(45deg, #D81B60, #FF69B4);
            --gradient-pink-gold: linear-gradient(135deg, #EC407A 0%, #F48FB1 100%);
            --gradient-subtle: linear-gradient(135deg, #1F1317 0%, #1A1520 100%);

            /* Typografia */
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Montserrat', sans-serif;

            /* Spacing */
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 32px;
            --spacing-xl: 48px;
            --spacing-xxl: 64px;
            --spacing-xxxl: 96px;

            /* Border Radius */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;

            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;

            /* Shadows - Dark & Dramatic */
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.8);
            --shadow-pink: 0 8px 32px rgba(236, 64, 122, 0.6);
            --shadow-gold: 0 8px 32px rgba(184, 134, 11, 0.5);
        }

        /* ========================================
           RESET & BASE
           ======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-gray);
            background-color: #0D0D0D;
            background-image: radial-gradient(circle at 20% 50%, rgba(194,24,91,0.15) 0%, transparent 50%),
                              radial-gradient(circle at 80% 80%, rgba(46,8,84,0.15) 0%, transparent 50%);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-normal);
        }

        /* ========================================
           TYPOGRAPHY
           ======================================== */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: var(--spacing-md);
            color: #E8E8E8;
        }

        h1 {
            font-size: 64px;
            letter-spacing: -1px;
        }

        h2 {
            font-size: 42px;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

        h3 {
            font-size: 32px;
            font-weight: 600;
        }

        h4 {
            font-size: 24px;
            font-weight: 600;
        }

        p {
            margin-bottom: var(--spacing-md);
        }

        /* ========================================
           BUTTONS
           ======================================== */
        .cta-btn, .btn-primary {
            display: inline-block;
            padding: 18px 48px;
            background: var(--gradient-button);
            color: #FFFFFF;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 14px;
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            transition: transform var(--transition-normal), box-shadow var(--transition-normal);
            box-shadow: var(--shadow-md);
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .cta-btn:hover, .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-pink);
            color: #FFFFFF;
        }

        .btn-secondary {
            display: inline-block;
            padding: 16px 40px;
            background: transparent;
            color: var(--pink-medium);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--pink-medium);
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all var(--transition-normal);
        }

        .btn-secondary:hover {
            background: var(--pink-medium);
            color: var(--white);
        }

        /* ========================================
           HEADER
           ======================================== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: transparent;
            z-index: 1000;
            transition: background var(--transition-normal), box-shadow var(--transition-normal);
        }

        .site-header.scrolled {
            background: rgba(13, 13, 13, 0.95);
            box-shadow: 0 4px 20px rgba(236, 64, 122, 0.3);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(236, 64, 122, 0.3);
        }

        .header-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 var(--spacing-lg);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .site-logo {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            color: #FFFFFF;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(212, 165, 116, 0.6), 2px 2px 4px rgba(0,0,0,0.5);
            transition: all var(--transition-normal);
        }

        .site-header.scrolled .site-logo {
            color: var(--gold-medium);
            text-shadow: 0 0 20px rgba(184, 134, 11, 0.5);
        }

        .main-navigation ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: var(--spacing-xl);
        }

        .main-navigation a {
            color: #FFFFFF;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 14px;
            padding: 8px 16px;
            position: relative;
            text-shadow: 0 2px 8px rgba(0,0,0,0.8);
            transition: all var(--transition-normal);
            border-radius: 4px;
        }

        .site-header.scrolled .main-navigation a {
            color: #FFFFFF;
            text-shadow: 0 0 10px rgba(212, 165, 116, 0.6);
        }

        .main-navigation a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(236, 64, 122, 0.2), rgba(184, 134, 11, 0.2));
            border-radius: 4px;
            opacity: 0;
            transition: opacity var(--transition-normal);
            z-index: -1;
        }

        .main-navigation a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #EC407A, #B8860B, #EC407A);
            transition: width var(--transition-normal);
            box-shadow: 0 0 10px rgba(184, 134, 11, 0.8);
        }

        .main-navigation a:hover::before {
            opacity: 1;
        }

        .main-navigation a:hover::after {
            width: 80%;
        }

        .main-navigation a:hover {
            color: #D4A574;
            text-shadow: 0 0 20px rgba(212, 165, 116, 0.9);
            transform: translateY(-2px);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu-toggle span {
            width: 28px;
            height: 3px;
            background: #FFFFFF;
            box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
            transition: all var(--transition-normal);
            border-radius: 2px;
        }

        .site-header.scrolled .mobile-menu-toggle span {
            background: var(--gold-medium);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .header-auth-btn {
            display: none;
        }

        /* ========================================
           HERO SECTION
           ======================================== */
        .hero-section {
            min-height: 100vh;
            background:
                var(--gradient-hero),
                linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)),
                url('https://ladyemili.pl/images/1.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 100px var(--spacing-lg) var(--spacing-xxl);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 900px;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 18px;
            color: #D4A574;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            margin-bottom: var(--spacing-md);
            text-shadow: 0 0 20px rgba(212, 165, 116, 0.8), 2px 2px 8px rgba(0,0,0,0.8);
        }

        .hero-title {
            font-size: 72px;
            color: #FFFFFF;
            margin-bottom: var(--spacing-md);
            text-shadow: 0 0 30px rgba(212, 165, 116, 0.6), 3px 3px 12px rgba(0,0,0,0.9);
            line-height: 1.1;
            font-weight: 700;
        }

        .hero-description {
            font-size: 22px;
            color: #FFFFFF;
            margin-bottom: var(--spacing-xl);
            text-shadow: 0 0 15px rgba(184, 134, 11, 0.5), 2px 2px 8px rgba(0,0,0,0.8);
            line-height: 1.6;
            font-weight: 400;
        }

        /* 18+ Content Notice - Not used, replaced by age gate */
        .adult-content-notice {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 26, 45, 0.9) 100%);
            border: 2px solid #EC407A;
            border-radius: 30px;
            padding: 12px 24px;
            margin-bottom: var(--spacing-xl);
            box-shadow: 0 10px 30px rgba(236, 64, 122, 0.3), 0 0 20px rgba(236, 64, 122, 0.2);
            backdrop-filter: blur(10px);
            animation: pulseGlow 3s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .adult-content-notice::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(236, 64, 122, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .adult-content-notice .notice-icon {
            font-size: 24px;
            color: #FF69B4;
            text-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
            animation: float 2s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }

        .adult-content-notice .notice-content {
            font-size: 14px;
            color: #F8F8F8;
            font-weight: 500;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1;
        }

        .adult-content-notice .notice-content strong {
            color: #FF69B4;
            font-weight: 700;
            text-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
        }

        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 0 10px 30px rgba(236, 64, 122, 0.3), 0 0 20px rgba(236, 64, 122, 0.2);
            }
            50% {
                box-shadow: 0 10px 35px rgba(236, 64, 122, 0.5), 0 0 30px rgba(236, 64, 122, 0.3);
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: #FFFFFF;
            font-size: 32px;
            animation: bounce 2s infinite;
            cursor: pointer;
            text-shadow: 0 0 20px rgba(212, 165, 116, 0.8), 2px 2px 4px rgba(0,0,0,0.8);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* ========================================
           SECTIONS
           ======================================== */
        .section {
            padding: var(--spacing-xxxl) var(--spacing-lg);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto var(--spacing-xxl);
        }

        .section-subtitle {
            font-size: 14px;
            color: var(--gold-medium);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: var(--spacing-sm);
            text-shadow: 0 0 15px rgba(184, 134, 11, 0.5);
        }

        .section-title {
            color: var(--gold-light);
            margin-bottom: var(--spacing-md);
            text-shadow: 0 0 20px rgba(212, 165, 116, 0.4);
        }

        .section-description {
            font-size: 18px;
            color: #C8C8C8;
            line-height: 1.8;
        }

        /* ========================================
           ABOUT SECTION
           ======================================== */
        .about-section {
            background: var(--gradient-subtle);
            position: relative;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 40%, rgba(236, 64, 122, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xxl);
            align-items: center;
        }

        .about-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text h3 {
            color: var(--gold-light);
            margin-bottom: var(--spacing-md);
            text-shadow: 0 0 20px rgba(212, 165, 116, 0.4);
        }

        .about-text p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: var(--spacing-md);
            color: #C8C8C8;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-lg);
            margin-top: var(--spacing-xl);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-family: var(--font-heading);
            font-weight: 700;
            background: var(--gradient-pink-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 14px;
            color: #A8A8A8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ========================================
           PORTFOLIO SECTION
           ======================================== */
        .portfolio-filters {
            display: flex;
            justify-content: center;
            gap: var(--spacing-sm);
            margin-bottom: var(--spacing-xl);
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 28px;
            background: transparent;
            border: 2px solid var(--pink-medium);
            color: var(--pink-medium);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 13px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all var(--transition-normal);
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--gradient-button);
            border-color: transparent;
            color: var(--white);
            box-shadow: var(--shadow-pink);
            transform: translateY(-2px);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--spacing-lg);
            max-width: 1400px;
            margin: 0 auto;
        }

        .portfolio-item {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: transform var(--transition-normal), box-shadow var(--transition-normal);
            cursor: pointer;
        }

        .portfolio-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .portfolio-item img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
            transition: transform var(--transition-slow);
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-overlay);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity var(--transition-normal);
            padding: var(--spacing-lg);
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-overlay h3 {
            color: var(--white);
            font-size: 28px;
            margin-bottom: var(--spacing-sm);
            text-align: center;
        }

        .portfolio-overlay p {
            color: var(--white);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .portfolio-overlay .view-icon {
            margin-top: var(--spacing-md);
            width: 60px;
            height: 60px;
            border: 2px solid var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--white);
        }

        /* ========================================
           VIDEO GALLERY
           ======================================== */
        .video-section {
            background: linear-gradient(135deg, #0D0D0D 0%, #1A1520 100%);
            position: relative;
        }

        .video-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(46, 8, 84, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .video-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--spacing-lg);
            max-width: 1400px;
            margin: 0 auto;
        }

        .video-item {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: transform var(--transition-normal), box-shadow var(--transition-normal);
            cursor: pointer;
            background: #1A1A1A;
            border: 1px solid rgba(236, 64, 122, 0.2);
        }

        .video-thumbnail-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .video-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
            overflow: hidden;
        }

        .video-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .video-item:hover .video-thumbnail img {
            transform: scale(1.1);
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--gradient-button);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-normal);
            box-shadow: var(--shadow-lg);
        }

        .video-play-btn i {
            color: var(--white);
            font-size: 32px;
            margin-left: 5px;
        }

        .video-item:hover .video-play-btn {
            transform: translate(-50%, -50%) scale(1.15);
            box-shadow: var(--shadow-xl);
        }

        .video-info {
            padding: var(--spacing-md);
        }

        .video-info h3 {
            font-size: 20px;
            margin-bottom: var(--spacing-xs);
            color: #E8E8E8;
        }

        .video-info p {
            font-size: 14px;
            color: #A8A8A8;
            margin: 0;
            opacity: 0.9;
        }

        /* ========================================
           TESTIMONIALS
           ======================================== */
        .testimonials-section {
            background: #0D0D0D;
            position: relative;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(236, 64, 122, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-item {
            text-align: center;
            padding: var(--spacing-xl);
            display: none;
        }

        .testimonial-item.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .testimonial-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto var(--spacing-md);
            object-fit: cover;
            border: 5px solid var(--gold-medium);
            box-shadow: var(--shadow-gold);
        }

        .testimonial-stars {
            color: var(--gold-medium);
            font-size: 24px;
            margin-bottom: var(--spacing-md);
        }

        .testimonial-text {
            font-size: 20px;
            font-style: italic;
            line-height: 1.8;
            color: #C8C8C8;
            margin-bottom: var(--spacing-lg);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 18px;
            color: var(--gold-light);
            margin-bottom: var(--spacing-xs);
        }

        .testimonial-position {
            font-size: 14px;
            color: #A8A8A8;
            opacity: 0.9;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: var(--spacing-lg);
            margin-top: var(--spacing-xl);
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-button);
            border: none;
            color: var(--white);
            cursor: pointer;
            transition: transform var(--transition-normal), box-shadow var(--transition-normal);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .slider-arrow:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-pink);
        }

        .slider-dots {
            display: flex;
            gap: var(--spacing-xs);
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--border-gray);
            cursor: pointer;
            transition: all var(--transition-normal);
        }

        .dot.active {
            background: var(--gradient-button);
            transform: scale(1.3);
        }

        /* ========================================
           CONTACT SECTION
           ======================================== */
        .contact-section {
            background: linear-gradient(135deg, #1F1317 0%, #1A1520 100%);
            position: relative;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 80% 20%, rgba(46, 8, 84, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-xl);
        }

        .contact-item {
            text-align: center;
            padding: var(--spacing-lg);
            background: rgba(26, 26, 26, 0.6);
            border: 1px solid rgba(236, 64, 122, 0.3);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition-normal), box-shadow var(--transition-normal);
            backdrop-filter: blur(10px);
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .contact-item i {
            font-size: 32px;
            background: var(--gradient-pink-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: var(--spacing-sm);
        }

        .contact-item h4 {
            font-size: 18px;
            margin-bottom: var(--spacing-xs);
            color: #E8E8E8;
        }

        .contact-item p {
            font-size: 14px;
            color: #C8C8C8;
            margin: 0;
        }

        .contact-form {
            background: rgba(26, 26, 26, 0.6);
            padding: var(--spacing-xl);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(236, 64, 122, 0.3);
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: var(--spacing-md);
        }

        .form-group label {
            display: block;
            margin-bottom: var(--spacing-xs);
            font-weight: 600;
            color: #E8E8E8;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid rgba(236, 64, 122, 0.3);
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 15px;
            transition: border-color var(--transition-normal);
            background: rgba(13, 13, 13, 0.5);
            color: #E8E8E8;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold-medium);
            box-shadow: 0 0 15px rgba(184, 134, 11, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        /* ========================================
           FOOTER
           ======================================== */
        .site-footer {
            background: linear-gradient(180deg, #0D0D0D 0%, #1F1317 100%);
            color: #E8E8E8;
            padding: var(--spacing-xxl) var(--spacing-lg) var(--spacing-lg);
            border-top: 1px solid rgba(236, 64, 122, 0.3);
        }

        .footer-main {
            max-width: 1400px;
            margin: 0 auto var(--spacing-xl);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--spacing-xl);
        }

        .footer-widget h3 {
            color: var(--gold-light);
            font-size: 22px;
            margin-bottom: var(--spacing-md);
        }

        .footer-widget p {
            font-size: 14px;
            line-height: 1.8;
            opacity: 0.9;
        }

        .footer-menu {
            list-style: none;
        }

        .footer-menu li {
            margin-bottom: var(--spacing-sm);
        }

        .footer-menu a {
            color: #C8C8C8;
            font-size: 14px;
            opacity: 0.9;
            transition: all var(--transition-normal);
        }

        .footer-menu a:hover {
            color: var(--gold-medium);
            opacity: 1;
            padding-left: 5px;
            text-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
        }

        .social-icons {
            display: flex;
            gap: var(--spacing-sm);
            margin-top: var(--spacing-md);
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--gradient-pink-gold);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform var(--transition-normal), box-shadow var(--transition-normal);
            font-size: 18px;
        }

        .social-icons a:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-pink);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: var(--spacing-lg);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .footer-bottom p {
            font-size: 14px;
            opacity: 0.8;
            margin-bottom: var(--spacing-sm);
        }

        .footer-bottom a {
            color: var(--gold-medium);
            transition: color var(--transition-normal);
        }

        .footer-bottom a:hover {
            color: var(--gold-light);
            text-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
        }

        .legal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }

        .legal-links a + a {
            padding-left: 16px;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* ========================================
           BACK TO TOP
           ======================================== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: var(--gradient-button);
            border: none;
            color: var(--white);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-normal);
            box-shadow: var(--shadow-lg);
            z-index: 999;
            font-size: 20px;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        /* ========================================
           RESPONSIVE DESIGN
           ======================================== */
        @media (max-width: 1024px) {
            h1 { font-size: 56px; }
            .hero-title { font-size: 56px; }

            .portfolio-grid,
            .video-gallery {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .header-auth-btn {
                display: inline-flex;
                align-items: center;
                padding: 8px 14px;
                font-size: 12px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
                color: #FFFFFF;
                background: linear-gradient(45deg, #D81B60, #FF69B4);
                border-radius: 6px;
                text-decoration: none;
                white-space: nowrap;
                box-shadow: 0 2px 12px rgba(236, 64, 122, 0.4);
                transition: transform var(--transition-normal), box-shadow var(--transition-normal);
            }

            .header-auth-btn:hover {
                transform: translateY(-1px);
                box-shadow: 0 4px 16px rgba(236, 64, 122, 0.6);
                color: #FFFFFF;
            }

            .main-navigation {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                z-index: 1001;
                background: rgba(13, 13, 13, 0.98);
                backdrop-filter: blur(10px);
                box-shadow: 0 8px 32px rgba(236, 64, 122, 0.5);
                border-bottom: 1px solid rgba(236, 64, 122, 0.3);
                max-height: 0;
                overflow: hidden;
                transition: max-height var(--transition-normal);
            }

            .main-navigation.active {
                max-height: calc(100vh - 80px);
                max-height: calc(100dvh - 80px);
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }

            .main-navigation ul {
                flex-direction: column;
                padding: var(--spacing-lg);
                gap: 0;
            }

            .main-navigation li {
                border-bottom: 1px solid rgba(236, 64, 122, 0.2);
            }

            .main-navigation a {
                color: #E8E8E8;
                text-shadow: none;
                display: block;
                padding: var(--spacing-md) 0;
            }

            .main-navigation .nav-link-login,
            .main-navigation .nav-link-konto {
                display: none;
            }

            .mobile-menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 6px);
            }

            .mobile-menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -6px);
            }

            h1 { font-size: 40px; }
            h2 { font-size: 32px; }
            .hero-title { font-size: 40px; }

            /* Adult content notice - responsive */
            .adult-content-notice {
                flex-direction: column;
                gap: 8px;
                padding: 10px 20px;
                text-align: center;
            }

            .adult-content-notice .notice-content {
                font-size: 13px;
            }

            .adult-content-notice .notice-icon {
                font-size: 20px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .portfolio-grid,
            .video-gallery {
                grid-template-columns: 1fr;
            }

            .footer-main {
                grid-template-columns: 1fr;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }
        }

        /* ========================================
           DARK ROMANCE - ADVANCED VISUAL EFFECTS
           ======================================== */

        /* Subtle noise texture overlay for depth */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9998;
            opacity: 0.3;
            mix-blend-mode: overlay;
        }

        /* Enhanced card hover effects with 3D tilt */
        .video-item,
        .portfolio-item,
        .testimonial-item {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
        }

        .video-item:hover,
        .portfolio-item:hover {
            transform: translateY(-12px) rotateX(2deg);
            box-shadow: 0 20px 60px rgba(236, 64, 122, 0.5),
                        0 0 40px rgba(184, 134, 11, 0.3);
        }

        /* Animated gradient border effect */
        @keyframes borderGlow {
            0%, 100% {
                border-color: rgba(236, 64, 122, 0.5);
                box-shadow: 0 0 20px rgba(236, 64, 122, 0.3);
            }
            50% {
                border-color: rgba(184, 134, 11, 0.5);
                box-shadow: 0 0 30px rgba(184, 134, 11, 0.5);
            }
        }

        .video-item:hover,
        .portfolio-item:hover,
        .contact-item:hover {
            animation: borderGlow 2s infinite;
        }

        /* Floating animation for hero elements */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .hero-content .btn,
        .cta-btn {
            animation: float 3s ease-in-out infinite;
        }

        .hero-content .btn:hover,
        .cta-btn:hover {
            animation: none;
            transform: translateY(-5px) scale(1.05);
        }

        /* Fancy button hover with shine effect */
        .btn,
        .cta-btn,
        .watch-btn {
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .btn::before,
        .cta-btn::before,
        .watch-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
            z-index: 1;
        }

        .btn:hover::before,
        .cta-btn:hover::before,
        .watch-btn:hover::before {
            left: 100%;
        }

        /* Elegant section entrance animations */
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .section-header {
            animation: fadeInScale 0.8s ease-out;
        }

        /* Romantic text glow on hover */
        .section-title:hover,
        .hero-title:hover {
            text-shadow:
                0 0 20px rgba(212, 165, 116, 0.8),
                0 0 40px rgba(236, 64, 122, 0.6),
                0 0 60px rgba(184, 134, 11, 0.4);
            transition: text-shadow 0.3s ease;
        }

        /* Image zoom with overlay effect */
        .portfolio-item img,
        .video-thumbnail img,
        .about-image img {
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .portfolio-item:hover img,
        .video-item:hover .video-thumbnail img,
        .about-image:hover img {
            transform: scale(1.15);
            filter: brightness(1.1) contrast(1.1);
        }

        /* Overlay gradient on hover */
        .portfolio-item::after,
        .video-thumbnail::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(236, 64, 122, 0.4), rgba(184, 134, 11, 0.3));
            opacity: 0;
            transition: opacity 0.4s;
            pointer-events: none;
        }

        .portfolio-item:hover::after,
        .video-item:hover .video-thumbnail::after {
            opacity: 1;
        }

        /* Pulsing glow for important elements */
        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(184, 134, 11, 0.6),
                           0 0 60px rgba(236, 64, 122, 0.4);
            }
        }

        .btn:hover,
        .cta-btn:hover,
        .watch-btn:hover {
            animation: pulse-glow 1.5s infinite;
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar dark romance style */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #0D0D0D;
            border-left: 1px solid rgba(236, 64, 122, 0.2);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #EC407A, #B8860B);
            border-radius: 6px;
            border: 2px solid #0D0D0D;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #B8860B, #EC407A);
            box-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
        }

        /* Decorative divider between sections */
        .section {
            position: relative;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #B8860B, transparent);
            box-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
        }

        .section:first-of-type::before {
            display: none;
        }

        /* Text selection styling */
        ::selection {
            background: rgba(236, 64, 122, 0.7);
            color: #D4A574;
        }

        ::-moz-selection {
            background: rgba(236, 64, 122, 0.7);
            color: #D4A574;
        }

        /* Elegant link underline effect */
        a:not(.btn):not(.cta-btn):not(.watch-btn):not(.play-overlay):not(.video-thumbnail-link) {
            position: relative;
            text-decoration: none;
            background-image: linear-gradient(90deg, #B8860B, #EC407A);
            background-size: 0% 2px;
            background-repeat: no-repeat;
            background-position: left bottom;
            transition: background-size 0.3s ease;
        }

        a:not(.btn):not(.cta-btn):not(.watch-btn):not(.play-overlay):not(.video-thumbnail-link):hover {
            background-size: 100% 2px;
        }

        /* Stagger animation for grid items */
        .video-gallery .video-item,
        .portfolio-grid .portfolio-item {
            animation: fadeInScale 0.6s ease-out backwards;
        }

        .video-gallery .video-item:nth-child(1),
        .portfolio-grid .portfolio-item:nth-child(1) { animation-delay: 0.1s; }
        .video-gallery .video-item:nth-child(2),
        .portfolio-grid .portfolio-item:nth-child(2) { animation-delay: 0.2s; }
        .video-gallery .video-item:nth-child(3),
        .portfolio-grid .portfolio-item:nth-child(3) { animation-delay: 0.3s; }
        .video-gallery .video-item:nth-child(4),
        .portfolio-grid .portfolio-item:nth-child(4) { animation-delay: 0.4s; }
        .video-gallery .video-item:nth-child(5),
        .portfolio-grid .portfolio-item:nth-child(5) { animation-delay: 0.5s; }
        .video-gallery .video-item:nth-child(6),
        .portfolio-grid .portfolio-item:nth-child(6) { animation-delay: 0.6s; }

        /* Romantic blur backdrop for modals/overlays */
        .modal-overlay,
        .lightbox-overlay {
            backdrop-filter: blur(10px) saturate(180%);
            background: rgba(13, 13, 13, 0.85);
        }

        /* Fancy input focus effects */
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #B8860B;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2),
                        0 0 20px rgba(184, 134, 11, 0.4);
            transform: translateY(-2px);
        }

        /* Loading animation for dynamic content */
        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        .loading-skeleton {
            background: linear-gradient(
                90deg,
                rgba(26, 26, 26, 0.8) 0%,
                rgba(61, 27, 31, 0.8) 50%,
                rgba(26, 26, 26, 0.8) 100%
            );
            background-size: 1000px 100%;
            animation: shimmer 2s infinite;
        }

        /* Prevent text selection on UI elements */
        .btn,
        .cta-btn,
        .watch-btn,
        .mobile-menu-toggle {
            user-select: none;
            -webkit-user-select: none;
        }

        /* Focus visible for accessibility */
        *:focus-visible {
            outline: 2px solid #B8860B;
            outline-offset: 3px;
            border-radius: 4px;
        }

        /* Enhanced shadow layers for depth */
        .portfolio-item,
        .video-item,
        .testimonial-item,
        .contact-item {
            box-shadow:
                0 2px 8px rgba(0, 0, 0, 0.3),
                0 8px 16px rgba(236, 64, 122, 0.2),
                inset 0 0 0 1px rgba(184, 134, 11, 0.1);
        }

        /* Performance optimization - reduce animations on low-end devices */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
