
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-color: #E50914; /* Netflix Red/Hot Pink vibe for dating */
            --primary-hover: #b2070f;
            --accent-gold: #FFD700;
            --bg-dark: #0f0f13;
            --bg-card: #1a1a20;
            --text-light: #f5f5f5;
            --text-gray: #a0a0a0;
            --border-color: #333;
            --font-main: 'Montserrat', sans-serif;
            --font-serif: 'Playfair Display', serif;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; display: block; object-fit: cover; }

        /* --- UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding { padding: 80px 0; }
        
        .text-center { text-align: center; }
        .text-primary { color: var(--primary-color); }
        .text-gold { color: var(--accent-gold); }

        .section-title {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            margin: 10px auto 0;
        }

        .section-subtitle {
            color: var(--text-gray);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--primary-color);
            color: #fff;
            box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(229, 9, 20, 0.6);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: #fff;
        }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(15, 15, 19, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
        }

        .logo span { color: var(--primary-color); }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-light);
        }

        .nav-links a:hover { color: var(--primary-color); }

        .header-actions .btn {
            padding: 8px 20px;
            font-size: 0.9rem;
        }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../img/hero.webp') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px;
        }

        .hero-content h1 {
            font-family: var(--font-serif);
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #ddd;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- ABOUT --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img {
            position: relative;
        }

        .about-img img {
            border-radius: 10px;
            box-shadow: -20px 20px 0 var(--primary-color);
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .about-text p {
            color: var(--text-gray);
            margin-bottom: 20px;
        }

        /* --- DATING CATEGORY --- */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .category-card {
            background: var(--bg-card);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid transparent;
            transition: var(--transition);
        }

        .category-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-10px);
        }

        .category-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .category-card h4 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .category-card p {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* --- WHY CHOOSE US --- */
        .why-us {
            background: #141418;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .feature-icon {
            background: rgba(229, 9, 20, 0.1);
            color: var(--primary-color);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .feature-text h4 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .feature-text p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* --- LATEST PROFILES --- */
        .profiles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .profile-card {
            background: var(--bg-card);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            transition: var(--transition);
        }

        .profile-card:hover {
            transform: scale(1.02);
        }

        .profile-img {
            height: 350px;
            width: 100%;
            position: relative;
        }

        .profile-img img {
            width: 100%;
            height: 100%;
        }

        .profile-status {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #2ecc71;
            color: #fff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .profile-info {
            padding: 20px;
        }

        .profile-name {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .profile-meta {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
        }

        /* --- REGISTER FORM (Quotes Form) --- */
        .register-section {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('../img/hero-2.avif') center/cover fixed;
        }

        .form-container {
            background: rgba(26, 26, 32, 0.9);
            padding: 40px;
            border-radius: 15px;
            max-width: 600px;
            margin: 0 auto;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .form-group { margin-bottom: 20px; }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #ddd;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: #0f0f13;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: #fff;
            font-family: inherit;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* --- TESTIMONIALS --- */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--bg-card);
            padding: 30px;
            border-radius: 15px;
            position: relative;
        }

        .quote-icon {
            font-size: 2rem;
            color: var(--primary-color);
            opacity: 0.3;
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-gray);
            margin-bottom: 20px;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .client-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }

        /* --- FOOTER --- */
        footer {
            background: #000;
            padding: 60px 0 20px;
            border-top: 1px solid #222;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h5 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .footer-links li { margin-bottom: 12px; }
        
        .footer-links a {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        .footer-links a:hover { color: var(--primary-color); text-decoration: underline; }

        .contact-info li {
            color: var(--text-gray);
            margin-bottom: 15px;
            display: flex;
            gap: 10px;
            font-size: 0.9rem;
        }

        .contact-info i { color: var(--primary-color); margin-top: 4px; }

        .copyright {
            text-align: center;
            border-top: 1px solid #222;
            padding-top: 20px;
            color: #666;
            font-size: 0.85rem;
        }

        /* --- MODAL SYSTEM --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            padding: 20px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 15px;
            max-width: 500px;
            width: 100%;
            position: relative;
            transform: translateY(20px);
            transition: var(--transition);
            border: 1px solid #333;
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: var(--text-gray);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .close-modal:hover { color: #fff; }

        .modal-title {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .modal-body {
            color: var(--text-gray);
            font-size: 0.95rem;
            max-height: 60vh;
            overflow-y: auto;
        }

        .modal-body p { margin-bottom: 15px; }
        .modal-body h4 { color: #fff; margin: 15px 0 10px; }

        /* Checkbox styling */
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-top: 5px;
        }
        
        .checkbox-group input { margin-top: 4px; }

        /* --- TOAST NOTIFICATION --- */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #fff;
            color: #333;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 3000;
            transform: translateX(150%);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            border-left: 5px solid var(--primary-color);
        }

        .toast.show {
            transform: translateX(0);
        }

        .toast i {
            color: #2ecc71;
            font-size: 1.5rem;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero-content h1 { font-size: 2.5rem; }
            .about-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
        }
    