@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&display=swap');

/* ==================== CSS VARIABLES — Warm Romantic ==================== */
:root {
    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #faf8f6;
    --bg-tertiary: #fbfbfd;
    --bg-hero: linear-gradient(135deg, #fff5f7 0%, #ffeef2 50%, #fff0f5 100%);
    --bg-section-alt: #faf8f6;
    --bg-card: #ffffff;
    --bg-card-hover: #fffbfc;

    /* Text */
    --text-primary: #1a1a2e;
    --text-secondary: #555770;
    --text-muted: #8b8da3;
    --text-white: #f5f5f7;

    /* Pink palette — warm romantic */
    --pink-50: #fff0f3;
    --pink-100: #ffe0e8;
    --pink-200: #ffc2d1;
    --pink-300: #ff8faa;
    --pink-400: #ff6b8a;
    --pink-500: #FF2D55;
    --pink-600: #e5264c;
    --pink-700: #cc1f43;

    /* Warm accents */
    --accent-gold: #D4A574;
    --accent-green: #34C759;
    --accent-red: #FF3B30;
    --accent-blue: #5B9BD5;
    --accent-warm: #e8d5c4;

    /* Shadows — warm tinted */
    --shadow-sm: 0 1px 3px rgba(30, 20, 15, 0.04);
    --shadow-md: 0 4px 16px rgba(30, 20, 15, 0.06);
    --shadow-lg: 0 8px 30px rgba(30, 20, 15, 0.08);
    --shadow-xl: 0 16px 50px rgba(30, 20, 15, 0.1);
    --shadow-card: 0 2px 12px rgba(30, 20, 15, 0.04), 0 0 0 1px rgba(0,0,0,0.03);
    --shadow-card-hover: 0 12px 40px rgba(255, 45, 85, 0.08), 0 0 0 1px rgba(255, 45, 85, 0.06);
    --shadow-btn: 0 4px 14px rgba(255, 45, 85, 0.25);
    --shadow-btn-hover: 0 6px 20px rgba(255, 45, 85, 0.35);

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 22px;
    --radius-2xl: 28px;
    --radius-full: 980px;

    --transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-fast: all 0.2s ease-out;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-bg-strong: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.04);
    --glass-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    --glass-blur: blur(20px);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ==================== SCROLL ANIMATIONS ==================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.35rem;
}

.logo-text {
    color: #FF2D55;
    font-weight: 800;
}

.logo-icon {
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    gap: 0.2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.88rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--pink-600);
    background: var(--pink-50);
}

.nav-links a.active {
    color: var(--text-white);
    background: #FF2D55;
    box-shadow: var(--shadow-btn);
}

/* ==================== LAYOUT ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

.page-content {
    padding-top: 3.5rem;
    min-height: 100vh;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--bg-section-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    background: var(--pink-50);
    border: 1px solid var(--pink-200);
    color: var(--pink-600);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.section-title .highlight {
    color: #FF2D55;
    font-style: italic;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: var(--bg-hero);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.hero-text {
    color: var(--text-primary);
    max-width: 520px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.hero-text h1 span {
    color: #FF2D55;
    font-style: italic;
}

.hero-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-features {
    display: flex;
    gap: 0.4rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.3rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(8px);
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 340px;
    animation: scaleIn 0.8s ease-out 0.2s both;
}

.hero-image-container img {
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(255, 45, 85, 0.12), 0 0 0 1px rgba(255,255,255,0.5);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 0.85rem;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.75rem;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

/* Desktop hero — 2 columns side-by-side */
@media (min-width: 768px) {
    .hero {
        padding: 6.5rem 0 3.5rem;
    }
    .hero-layout {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
        align-items: center;
    }
    .hero-text {
        flex: 1;
        max-width: 520px;
    }
    .hero-text h1 {
        font-size: 3.25rem;
    }
    .hero-text p {
        font-size: 1.05rem;
    }
    .hero-actions {
        justify-content: flex-start;
    }
    .hero-features {
        justify-content: flex-start;
    }
    .hero-image-container {
        flex: 1;
        max-width: 460px;
    }
    .hero-image-container img {
        aspect-ratio: auto;
        max-height: 400px;
    }
    .section-title {
        font-size: 2.75rem;
    }
    .section {
        padding: 5rem 0;
    }
    .section-header {
        margin-bottom: 3rem;
    }
    .container {
        padding: 0 2rem;
    }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.75rem;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #FF2D55 0%, #FF6B8A 100%);
    color: white;
    box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
    filter: brightness(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--pink-600);
    border: 1.5px solid var(--pink-300);
}

.btn-outline:hover {
    background: var(--pink-50);
    border-color: var(--pink-400);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--pink-50);
    color: var(--pink-600);
    border: 1px solid var(--pink-200);
}

.btn-secondary:hover {
    background: var(--pink-100);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-success {
    background: var(--accent-green);
    color: white;
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
}

.btn-success:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--accent-red);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
}

.btn-danger:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 0.85rem 2.25rem;
    font-size: 0.95rem;
}

/* ==================== CARDS — Soft UI Evolution ==================== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    cursor: default;
    border: 1px solid transparent;
}

.card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
    border-color: rgba(255, 45, 85, 0.08);
}

.glass-shimmer {
    background: var(--bg-card);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.glass-shimmer::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.6s ease;
}

.glass-shimmer:hover::before {
    left: 100%;
}

/* ==================== GRID LAYOUTS ==================== */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

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

@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ==================== STEPS (How it Works) ==================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.step-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid transparent;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(255, 45, 85, 0.1);
}

.step-number {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF2D55, #FF6B8A);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--pink-50);
    border: 2px solid var(--pink-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.08);
    border-color: var(--pink-300);
    box-shadow: 0 4px 16px rgba(255, 45, 85, 0.12);
}

.step-icon-inner {
    font-size: 1.5rem;
}

.step-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    .step-card {
        padding: 2rem 1.5rem;
    }
    .step-icon {
        width: 72px;
        height: 72px;
    }
    .step-icon-inner {
        font-size: 1.75rem;
    }
}

/* ==================== STATS ==================== */
.glass-stat {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid transparent;
}

.glass-stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.stat-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.75rem;
    color: #FF2D55;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* ==================== EVENT CARDS ==================== */
.event-card {
    cursor: pointer !important;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-4px);
}

.event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #FF2D55;
    font-weight: 600;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.event-location {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.event-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: #FF2D55;
}

.event-price span {
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.slot-info {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.slot-badge {
    font-size: 0.78rem;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    font-weight: 500;
}

.slot-badge.male {
    background: #eef6ff;
    color: #3b82f6;
    border: 1px solid #bfdbfe;
}

.slot-badge.female {
    background: #fff0f3;
    color: #FF2D55;
    border: 1px solid #ffc2d1;
}

/* ==================== STATUS BADGES ==================== */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-badge.open, .status-badge.OPEN {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.status-badge.closed, .status-badge.CLOSED {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.status-badge.secondary {
    background: var(--pink-50);
    color: var(--pink-600);
    border: 1px solid var(--pink-200);
}

/* ==================== FEATURE CARDS ==================== */
.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(255, 45, 85, 0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--pink-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
    background: var(--pink-100);
}

.feature-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==================== AI SHOWCASE & STORIES GRID ==================== */
.ai-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.feature-image-wrapper {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-image-wrapper img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.feature-image-wrapper:hover img {
    transform: scale(1.03);
}

@media (min-width: 768px) {
    .ai-showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .stories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: var(--bg-hero);
    padding: 3rem 0;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cta-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .cta-section { padding: 4.5rem 0; }
    .cta-title { font-size: 2.75rem; }
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-size: 0.9rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--pink-400);
    box-shadow: 0 0 0 3px rgba(255, 45, 85, 0.08);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236e6e73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

/* ==================== MODAL ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.3s ease;
}

.modal h2 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

/* ==================== QR PAYMENT ==================== */
.qr-container img {
    max-width: 200px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.qr-container {
    text-align: center;
    padding: 1.5rem;
}

/* ==================== ADMIN TABLE ==================== */
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

th, td {
    padding: 0.85rem 1rem;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tr:hover td {
    background: var(--bg-card-hover);
}

/* ==================== MATCH RESULTS ==================== */
.match-results { max-width: 700px; margin: 0 auto; }

.match-pair {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.match-pair:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.match-person {
    text-align: center;
    flex: 1;
}

.match-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--pink-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 0.5rem;
    border: 2px solid var(--pink-200);
}

.match-heart {
    font-size: 1.75rem;
    animation: float 2s ease-in-out infinite;
}

/* ==================== VOTING ==================== */
.voting-grid {
    max-width: 600px;
    margin: 0 auto;
}

.vote-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.vote-item:hover, .vote-item.selected {
    border-color: var(--pink-400);
    box-shadow: var(--shadow-card-hover);
}

.vote-item.selected {
    background: var(--pink-50);
}

.vote-rank {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--pink-50);
    color: var(--pink-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.vote-item.selected .vote-rank {
    background: linear-gradient(135deg, #FF2D55, #FF6B8A);
    color: white;
}

/* ==================== TOAST NOTIFICATIONS ==================== */
.toast-container {
    position: fixed;
    top: 5rem;
    right: 1rem;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: white;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.88rem;
    animation: slideInRight 0.3s ease;
    border-left: 3px solid #FF2D55;
    max-width: 360px;
}

.toast.success { border-left-color: var(--accent-green); }
.toast.error { border-left-color: var(--accent-red); }

/* ==================== EMPTY STATE ==================== */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.empty-state .icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

/* ==================== TABS ==================== */
.tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 0;
}

.tab {
    padding: 0.6rem 1.25rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.tab:hover {
    color: var(--pink-600);
}

.tab.active {
    color: #FF2D55;
    border-bottom-color: #FF2D55;
    font-weight: 600;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1.5rem;
    font-size: 0.88rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
}

.footer a:hover {
    color: white;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

/* ==================== SPINNER ==================== */
.spinner {
    width: 24px;
    height: 24px;
    border: 2.5px solid rgba(0, 0, 0, 0.08);
    border-top-color: #FF2D55;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== BREADCRUMBS ==================== */
.breadcrumbs {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.breadcrumbs a:hover {
    color: white;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 767px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        box-shadow: -4px 0 16px rgba(0,0,0,0.08);
        z-index: 1001;
        gap: 0.25rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-radius: var(--radius-md);
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1002;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: var(--transition-fast);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    .mobile-overlay.active {
        display: block;
    }

    .section { padding: 2.5rem 0; }
    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 0.88rem; }
    .section-header { margin-bottom: 1.75rem; }

    .hero { padding: 4.5rem 0 1.5rem; }
    .hero-text h1 { font-size: 1.85rem; }
    .hero-text p { font-size: 0.88rem; margin-bottom: 1rem; }
    .hero-image-container { max-width: 280px; }

    .match-pair { flex-direction: column; gap: 1rem; padding: 1.25rem; }
    .card { padding: 1.25rem; }
    .toast-container { right: 0.75rem; left: 0.75rem; }
    .toast { max-width: 100%; }

    .feature-card { padding: 1.25rem; }
    .step-card { padding: 1.25rem; }
}

@media (max-width: 480px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .hero-text h1 { font-size: 1.6rem; }
    .hero-text p { font-size: 0.85rem; }
    .btn-lg { padding: 0.7rem 1.5rem; font-size: 0.88rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .stat-number { font-size: 1.5rem; }
}

@media (min-width: 768px) {
    .hamburger { display: none; }
}

/* ==================== PAGE HEADER (Sub-pages) ==================== */
.page-header {
    background: var(--bg-hero);
    padding: 5rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .page-header { padding: 6.5rem 0 2.5rem; }
    .page-header h1 { font-size: 2.5rem; }
}

/* ==================== EVENT DETAIL HEADER ==================== */
.event-detail-header {
    background: linear-gradient(135deg, #FF2D55 0%, #FF6B8A 100%);
    padding: 5.5rem 0 2rem;
    color: white;
    position: relative;
}

.event-detail-header h1 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.event-detail-header .meta {
    display: flex;
    gap: 1rem;
    font-size: 0.88rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .event-detail-header {
        padding: 7rem 0 3rem;
    }
    .event-detail-header h1 {
        font-size: 2.5rem;
    }
}

/* ==================== LANGUAGE SWITCHER ==================== */
.lang-switcher {
    display: inline-flex;
    gap: 0.25rem;
    padding: 0.15rem;
    border-radius: var(--radius-full);
    background: rgba(0,0,0,0.04);
}

.lang-switcher a {
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.lang-switcher a.active {
    background: white;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

/* ==================== MISCELLANEOUS ==================== */
.glass-stat h3 { margin-bottom: 0.5rem; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.2); }

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid #FF2D55;
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
