/* Base Styles */
        :root {
            --primary-dark: #0F1416;
            --accent-pink: #D81B7A;
            --accent-teal: #26A69A;
            --accent-gold: #FFD700;
            --accent-silver: #B0BEC5;
            --card-bg: rgba(255, 255, 255, 0.05);
            --text-light: #ffffff;
            --text-muted: #b3b3b3;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: 110px; /* Space for sticky nav and footer links */
        }

        /* Component: Intro Overlay */
        .intro-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-dark);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            animation: fadeOut 0.5s ease 2s forwards;
        }

        .arch-door {
            position: relative;
            width: 300px;
            height: 400px;
            background: transparent;
            border: 5px solid var(--accent-silver);
            border-radius: 150px 150px 0 0;
            box-shadow: 0 0 25px var(--accent-silver), inset 0 0 15px var(--accent-pink);
            display: flex;
            justify-content: center;
            align-items: center;
            animation: glowPulse 1.5s infinite alternate;
        }

        .arch-door-text {
            font-family: 'Dancing Script', cursive;
            font-size: 3rem;
            color: var(--text-light);
            text-shadow: 0 0 15px var(--accent-pink), 0 0 25px var(--accent-pink);
            text-align: center;
            padding: 20px;
        }

        @keyframes glowPulse {
            0% { box-shadow: 0 0 25px var(--accent-silver), inset 0 0 15px var(--accent-pink); }
            100% { box-shadow: 0 0 35px var(--accent-silver), inset 0 0 20px var(--accent-pink); }
        }

        @keyframes fadeOut {
            to { opacity: 0; visibility: hidden; }
        }

        /* Component: Main Content */
        .main-content {
            opacity: 0;
            animation: fadeIn 0.5s ease 2.5s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        /* Component: Neon Text */
        .neon-text {
            font-family: 'Dancing Script', cursive;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--text-light);
            text-shadow: 0 0 8px var(--accent-pink), 0 0 15px var(--accent-pink);
            margin-bottom: 15px;
            animation: flicker 1.5s infinite alternate;
        }

        .neon-subtext {
            font-size: 1.4rem;
            color: var(--text-light);
            text-shadow: 0 0 5px var(--accent-teal);
            margin-bottom: 20px;
            max-width: 600px;
        }

        @keyframes flicker {
            0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
                text-shadow: 0 0 8px var(--accent-pink), 0 0 15px var(--accent-pink);
                opacity: 1;
            }
            20%, 24%, 55% {
                text-shadow: none;
                opacity: 0.8;
            }
        }

        /* Component: Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 15px 30px;
            background: linear-gradient(135deg, rgba(15, 20, 22, 0.95), rgba(10, 10, 10, 0.9));
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 4px 10px rgba(38, 166, 154, 0.2);
            border-bottom: 1px solid var(--accent-teal);
        }

        .brand {
            display: flex;
            align-items: center;
        }

        .brand-text {
            font-family: 'Dancing Script', cursive;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-light);
            text-shadow: 0 0 8px var(--accent-pink), 0 0 15px var(--accent-pink);
            animation: flicker 1.5s infinite alternate;
        }

        .nav-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            text-transform: capitalize;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent-gold);
        }

        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--accent-teal);
            cursor: pointer;
            background: none;
            border: none;
        }

        /* Component: Buttons */
        .login-btn, .cta-button, .blog-post button, .story-card button {
            padding: 10px 25px;
            font-size: 1rem;
            background: transparent;
            border: 2px solid var(--accent-silver);
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 25px;
            box-shadow: 0 0 12px var(--accent-silver);
            font-weight: 600;
            text-transform: uppercase;
        }

        .login-btn:hover, .cta-button:hover, .blog-post button:hover, .story-card button:hover {
            background: var(--accent-silver);
            color: var(--primary-dark);
            box-shadow: 0 0 25px var(--accent-silver);
        }

        /* Component: Header */
        header {
            position: relative;
            min-height: 70vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 30px 20px;
            background: url('https://via.placeholder.com/1920x1080?text=Sensual+Vibes') no-repeat center center/cover;
            overflow: hidden;
        }

        .header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(15, 20, 22, 0.6), rgba(10, 10, 10, 0.8));
        }

        .hero-content {
            opacity: 0;
            animation: fadeIn 1s ease 0.5s forwards;
            z-index: 1;
        }

        /* Component: Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 20, 22, 0.95);
            justify-content: center;
            align-items: center;
            z-index: 1500;
        }

        .modal-content {
            background: var(--card-bg);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid var(--accent-pink);
            box-shadow: 0 0 15px rgba(216, 27, 122, 0.2);
            width: 90%;
            max-width: 400px;
            text-align: center;
            position: relative;
            animation: slideIn 0.4s ease;
        }

        @keyframes slideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-content h2 {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .modal-content input {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            background: #1a2526;
            border: 1px solid var(--accent-pink);
            color: var(--text-light);
            border-radius: 8px;
            font-size: 1rem;
        }

        .modal-content button {
            width: 100%;
            padding: 12px;
            background: transparent;
            border: 2px solid var(--accent-silver);
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 25px;
            box-shadow: 0 0 12px var(--accent-silver);
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .modal-content button:hover {
            background: var(--accent-silver);
            color: var(--primary-dark);
            box-shadow: 0 0 25px var(--accent-silver);
        }

        .close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: var(--accent-pink);
            cursor: pointer;
            background: rgba(15, 20, 22, 0.5);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close:hover {
            color: var(--text-light);
            background: var(--accent-pink);
        }

        /* Component: Sections */
        .how-it-works, .categories, .profiles, .testimonials, .premium-features, .blog, .features, .trending-stories {
            padding: 50px 20px;
            text-align: center;
            position: relative;
        }

        h2 {
            font-size: 2.2rem;
            color: var(--text-light);
            margin-bottom: 30px;
            font-weight: 600;
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: var(--accent-gold);
        }

        /* Component: Cards */
        .steps, .feature-list {
            display: flex;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            gap: 20px;
        }

        .step, .feature-item, .category-card, .profile-card, .testimonial-card, .blog-post, .feature-card, .story-card {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--accent-pink);
            box-shadow: 0 0 10px rgba(216, 27, 122, 0.2);
            transition: transform 0.3s ease;
        }

        .step, .feature-item {
            width: 30%;
        }

        .step:hover, .feature-item:hover, .category-card:hover, .profile-card:hover, .feature-card:hover, .story-card:hover {
            transform: translateY(-5px);
        }

        .step i, .feature-item i, .feature-card i {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .step:nth-child(1) i { color: #FF6F61; }
        .step:nth-child(2) i { color: #40C4FF; }
        .step:nth-child(3) i { color: #AB47BC; }

        .feature-item:nth-child(1) i { color: #FFCA28; }
        .feature-item:nth-child(2) i { color: #66BB6A; }
        .feature-item:nth-child(3) i { color: #EF5350; }

        .feature-card:nth-child(1) i { color: #26A69A; }
        .feature-card:nth-child(2) i { color: #F06292; }
        .feature-card:nth-child(3) i { color: #0288D1; }

        .step h3, .feature-item h3, .category-card h3, .feature-card h3, .story-card h3 {
            font-size: 1.4rem;
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .step p, .feature-item p, .category-card p, .feature-card p, .story-card p, .testimonial-card p, .blog-post p {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .category-grid, .profile-grid, .testimonial-grid, .blog-grid, .feature-grid, .story-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .story-card img, .profile-card img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            border: 1px solid var(--accent-pink);
            margin-bottom: 15px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .profile-card img {
            border-radius: 50%;
        }

        .story-card:hover img, .profile-card:hover img {
            transform: scale(1.05);
        }

        .profile-card h3 {
            font-size: 1.4rem;
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .blog-post button, .story-card button {
            margin-top: 10px;
        }

        /* Component: Footer */
        .footer-copyright {
            text-align: center;
            padding: 10px;
            background: #1a2526;
            margin-bottom: 60px; /* Space for sticky nav */
        }

        .footer-copyright p {
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        .footer-links {
            text-align: center;
            padding: 20px;
            background: #1a2526;
        }

        .footer-links a {
            color: var(--accent-pink);
            text-decoration: none;
            margin: 0 12px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        footer {
            position: fixed;
            bottom: 0;
            width: 100%;
            padding: 15px;
            background: var(--primary-dark);
            border-top: 1px solid var(--accent-teal);
            box-shadow: 0 -4px 10px rgba(38, 166, 154, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .footer-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 300px;
        }

        .footer-nav a {
            color: var(--text-light);
            font-size: 1.5rem;
            padding: 10px;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--accent-gold);
            transform: scale(1.2);
        }

        .home-icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--accent-pink);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(216, 27, 122, 0.3);
        }

        .home-icon-circle i {
            font-size: 1.5rem;
            color: var(--text-light);
        }

        .home-icon-circle:hover {
            background: var(--accent-gold);
        }

        .home-icon-circle:hover i {
            color: var(--primary-dark);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav-container {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 15px;
                width: 100%;
                background: linear-gradient(135deg, rgba(15, 20, 22, 0.95), rgba(10, 10, 10, 0.9));
                padding: 20px 0;
                position: absolute;
                top: 100%;
                left: 0;
                box-shadow: 0 4px 10px rgba(38, 166, 154, 0.2);
            }

            .nav-container.active {
                display: flex;
            }

            .nav-links {
                flex-direction: column;
                gap: 15px;
            }

            .hamburger {
                display: block;
            }

            .neon-text { font-size: 2.8rem; }
            .neon-subtext { font-size: 1.2rem; }
            .brand-text { font-size: 2rem; }
            .steps, .feature-list { flex-direction: column; align-items: center; }
            .step, .feature-item { width: 85%; }
            .category-grid, .profile-grid, .testimonial-grid, .blog-grid, .feature-grid, .story-grid { grid-template-columns: 1fr; }
            header { min-height: 60vh; }
            .how-it-works, .categories, .profiles, .testimonials, .premium-features, .blog, .features, .trending-stories { padding: 40px 15px; }
            h2 { font-size: 1.8rem; margin-bottom: 20px; }
            .modal-content { padding: 20px; max-width: 90%; }
            nav { padding: 10px 20px; }
            .arch-door { width: 250px; height: 350px; }
            .arch-door-text { font-size: 2.5rem; }
            .story-card img, .profile-card img { width: 70px; height: 70px; }
            .footer-nav a { font-size: 1.3rem; padding: 8px; }
            .home-icon-circle { width: 36px; height: 36px; }
            .home-icon-circle i { font-size: 1.3rem; }
            .footer-links a { font-size: 0.9rem; margin: 0 8px; }
        }

        @media (max-width: 480px) {
            .neon-text { font-size: 2.2rem; }
            .neon-subtext { font-size: 1rem; }
            .brand-text { font-size: 1.8rem; }
            .login-btn, .cta-button, .blog-post button, .story-card button { padding: 8px 20px; font-size: 0.9rem; }
            .profile-card img, .story-card img { width: 60px; height: 60px; }
            h2 { font-size: 1.6rem; margin-bottom: 15px; }
            .nav-links a { font-size: 0.9rem; }
            .category-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
            .arch-door { width: 200px; height: 300px; }
            .arch-door-text { font-size: 2rem; }
            .footer-nav a { font-size: 1.2rem; padding: 6px; }
            .footer-nav { max-width: 250px; }
            .home-icon-circle { width: 32px; height: 32px; }
            .home-icon-circle i { font-size: 1.2rem; }
            .footer-links a { font-size: 0.85rem; margin: 0 6px; }
        }

        @media (max-width: 320px) {
            .neon-text { font-size: 1.8rem; }
            .neon-subtext { font-size: 0.9rem; }
            .brand-text { font-size: 1.6rem; }
            .login-btn, .cta-button, .blog-post button, .story-card button { padding: 6px 15px; font-size: 0.8rem; }
            .profile-card img, .story-card img { width: 50px; height: 50px; }
            .category-grid { grid-template-columns: 1fr; }
            .arch-door { width: 180px; height: 250px; }
            .arch-door-text { font-size: 1.8rem; }
            .footer-nav a { font-size: 1.1rem; padding: 5px; }
            .footer-nav { max-width: 200px; }
            .home-icon-circle { width: 28px; height: 28px; }
            .home-icon-circle i { font-size: 1.1rem; }
            .footer-links a { font-size: 0.8rem; margin: 0 5px; }
        }