:root {
    /* GayWhere Color Palette - Terra-cotta, Blue, Pink */
    --bg-dark: #0f0f14;
    --bg-darker: #0a0a0e;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #c4c4cc;
    --text-muted: #8888aa;

    /* Brand Colors - Terra-cotta, Blue, Pink, Purple */
    --accent-primary: #E2725B;      /* Terra-cotta - main brand */
    --accent-secondary: #3B82F6;    /* Blue - trust & tech */
    --accent-tertiary: #EC4899;     /* Pink - energy & pride */
    --accent-purple: #8B5CF6;       /* Purple - for progression */
    --accent-hover: #d4624c;        /* Darker terra-cotta */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #E2725B 0%, #d4624c 100%);
    --gradient-accent: linear-gradient(135deg, #E2725B 0%, #EC4899 100%);
    --gradient-rainbow: linear-gradient(135deg, #E2725B, #EC4899, #3B82F6, #E2725B);
    --gradient-pink: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
    --gradient-sunset: linear-gradient(135deg, #E2725B, #EC4899);
    --gradient-ocean: linear-gradient(135deg, #3B82F6, #EC4899, #E2725B);

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-highlight: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --glow-primary: 0 0 40px rgba(226, 114, 91, 0.25);
    --glow-pink: 0 0 30px rgba(236, 72, 153, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.3);

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(226, 114, 91, 0.4);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

/* Light Mode - Proper contrast with dark text */
html[data-theme="light"] {
    --bg-dark: #FAFAF7;
    --bg-darker: #f5f5f5;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-card-hover: rgba(255, 255, 255, 1);
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a5a;
    --text-muted: #6a6a7a;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.1);
    --border-subtle: rgba(0, 0, 0, 0.1);
    --border-glow: rgba(226, 114, 91, 0.4);
    --glow-pink: 0 0 20px rgba(226, 114, 91, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] body {
    background: #FAFAF7 !important;
    color: #1a1a2e !important;
}

html[data-theme="light"] nav {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.9) !important;
}

html[data-theme="light"] .logo {
    color: #1a1a2e !important;
    border-right-color: rgba(0, 0, 0, 0.15) !important;
}

html[data-theme="light"] .nav-links a {
    color: #4a4a5a !important;
}

html[data-theme="light"] .nav-links a:hover {
    color: #1a1a2e !important;
    background: rgba(0, 0, 0, 0.05) !important;
}

html[data-theme="light"] .nav-cta {
    background: var(--accent-primary) !important;
    color: #fff !important;
}

html[data-theme="light"] .hero::before {
    background: radial-gradient(circle at 30% 20%, rgba(226, 114, 91, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%) !important;
}

html[data-theme="light"] .hero h1,
html[data-theme="light"] .section-header h2,
html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .team-card h3,
html[data-theme="light"] .venues-text h2 {
    color: #1a1a2e !important;
}

html[data-theme="light"] .hero-description,
html[data-theme="light"] .section-header p,
html[data-theme="light"] .feature-card p,
html[data-theme="light"] .team-card p,
html[data-theme="light"] .venues-text > p,
html[data-theme="light"] .venue-benefit p {
    color: #4a4a5a !important;
}

.hero-badge svg,
.section-tag svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.25rem;
}

/* Fix: Feature icons visible in light mode */
html[data-theme="light"] .feature-icon svg {
    color: currentColor !important;
}

/* Hero badge - subtle terra-cotta instead of solid */
html[data-theme="light"] .hero-badge {
    background: rgba(226, 114, 91, 0.12) !important;
    color: #c5583f !important;
    border: 1px solid rgba(226, 114, 91, 0.25) !important;
    box-shadow: none !important;
}

/* Nav CTA - Professional dark button */
html[data-theme="light"] .nav-cta {
    background: #1a1a2e !important;
    color: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

html[data-theme="light"] .nav-cta:hover {
    background: #2a2a3e !important;
}

/* Clean, solid background - remove gradients */
html[data-theme="light"] .hero::before {
    background: none !important;
}

html[data-theme="light"] .hero::after {
    display: none !important;
}

html[data-theme="light"] .for-venues {
    background: transparent !important;
}

html[data-theme="light"] .for-venues::before {
    background: none !important;
}

html[data-theme="light"] .btn-secondary {
    background: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    color: #1a1a2e !important;
}

html[data-theme="light"] .phone-mockup {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: none !important;
}

html[data-theme="light"] .phone-notch {
    background: #1a1a2e !important;
}

html[data-theme="light"] .phone-screen {
    background: #ffffff !important;
}

html[data-theme="light"] .feature-card,
html[data-theme="light"] .team-card,
html[data-theme="light"] .dashboard-preview {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* Light mode - Features section (Pink) */
html[data-theme="light"] .features .section-tag {
    color: #EC4899 !important;
    background: rgba(236, 72, 153, 0.1) !important;
    border-color: rgba(236, 72, 153, 0.3) !important;
}

/* Light mode - For Venues section (Purple) */
html[data-theme="light"] .for-venues .section-tag,
html[data-theme="light"] .venues-text .section-tag {
    color: #8B5CF6 !important;
    background: rgba(139, 92, 246, 0.1) !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
}

/* Light mode - Team section (Blue) */
html[data-theme="light"] .team .section-tag {
    color: #3B82F6 !important;
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

html[data-theme="light"] .phone-app-header h3 {
    background: linear-gradient(135deg, #E2725B 0%, #d4624c 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

html[data-theme="light"] .phone-event-info h4 {
    color: #1a1a2e !important;
}

html[data-theme="light"] .phone-event-info p,
html[data-theme="light"] .phone-app-header p {
    color: #6a6a7a !important;
}

html[data-theme="light"] .phone-tab {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #4a4a5a !important;
}

html[data-theme="light"] .phone-tab.active {
    background: var(--gradient-primary) !important;
    color: white !important;
}

html[data-theme="light"] .phone-event-card {
    background: rgba(0, 0, 0, 0.03) !important;
}

html[data-theme="light"] .benefit-check {
    color: var(--accent-primary) !important;
}

html[data-theme="light"] .venue-benefit strong {
    color: #1a1a2e !important;
}

html[data-theme="light"] .dashboard-header-preview {
    background: rgba(0, 0, 0, 0.05) !important;
}

html[data-theme="light"] .dashboard-stat-preview {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .dashboard-stat-preview span {
    color: #6a6a7a !important;
}

html[data-theme="light"] .dashboard-chart-preview {
    background: rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .team-card .role {
    color: var(--accent-primary) !important;
}

html[data-theme="light"] footer {
    background: rgba(255, 255, 255, 0.95) !important;
    border-top-color: rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .footer-logo {
    color: #1a1a2e !important;
}

html[data-theme="light"] .footer-links a {
    color: #4a4a5a !important;
}

html[data-theme="light"] .footer-links a:hover {
    color: var(--accent-primary) !important;
}

html[data-theme="light"] .footer-copy {
    color: #6a6a7a !important;
    border-top-color: rgba(0, 0, 0, 0.08) !important;
}

/* Access Venue Portal button - Black style */
.btn-primary.btn-dark,
.venues-text .btn-primary {
    background: #1a1a2e !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

.btn-primary.btn-dark:hover,
.venues-text .btn-primary:hover {
    background: #2a2a3e !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Also support media query for CSS-only fallback */
@media (prefers-color-scheme: light) {
    :root {
        --bg-dark: #f8fafc;
        --bg-card: rgba(255, 255, 255, 0.8);
        --text-primary: #0f172a;
        --text-secondary: #475569;
        --text-muted: #64748b;
        --border-subtle: rgba(0, 0, 0, 0.08);
        --border-glow: rgba(226, 114, 91, 0.4);
        --glow-pink: 0 0 20px rgba(226, 114, 91, 0.15);
    }
}

/* Light mode header and sidebar backgrounds */
html[data-theme="light"] .admin-header-bar {
    background: rgba(255, 255, 255, 0.95);
}
html[data-theme="light"] .admin-sidebar {
    background: rgba(248, 248, 250, 0.98);
}

/* Light mode sidebar - make links darker for visibility */
html[data-theme="light"] .sidebar-link {
    color: #3d3d3f;
}
html[data-theme="light"] .sidebar-link:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #1d1d1f;
}
html[data-theme="light"] .sidebar-link.active {
    background: var(--gradient-pink);
    color: white;
}
html[data-theme="light"] .sidebar-title {
    color: #6e6e73;
}
html[data-theme="light"] .sidebar-user-info h4 {
    color: #1d1d1f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Right-side Decorative Wave */
.page-wave-decoration {
    position: fixed;
    top: 0;
    right: 18%;
    height: 100%;
    width: 120px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.5;
}

/* Light mode - slightly more subtle */
html[data-theme="light"] .page-wave-decoration {
    opacity: 0.35;
}

/* Landing page base */
.landing-page {
    position: relative;
    overflow-x: hidden;
}

/* Hide wave on mobile */
@media (max-width: 900px) {
    .page-wave-decoration,
    .admin-wave-decoration {
        display: none;
    }
}

/* Prevent scroll when admin portal is showing full page */
.admin-portal.active { min-height: 100vh; }

/* LANDING PAGE */
.landing-page { display: block; }
.landing-page.hidden { display: none; }

/* Floating Glass Navigation Pill - Centered (Landing page only) */
.landing-page > nav {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

.logo {
    color: #fff;
    padding-right: 0.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    margin-right: 0.25rem;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 38px;
    width: auto;
    margin-right: 8px;
    margin-bottom: 4px;
}

.nav-logo-text {
    height: 17px;
    width: auto;
    position: relative;
    top: 1px;
    left: -3px;
}

@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans', sans-serif;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans', sans-serif;
    padding: 0.6rem 1.25rem;
    background: #fff;
    border: none;
    border-radius: var(--radius-full);
    color: #050510;
    font-weight: 400;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-left: 0.25rem;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.02);
}

/* Hero Section - Liquid Glass Design */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

/* Clean subtle gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(226, 114, 91, 0.08) 0%,
        transparent 40%,
        rgba(59, 130, 246, 0.05) 100%);
    z-index: 0;
}

/* Subtle accent in corner */
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(226, 114, 91, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 114, 91, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: #E2725B;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Asap', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: linear-gradient(135deg, #E2725B 0%, #EC4899 50%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Primary Button - Terra-cotta */
.btn-primary {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #E2725B 0%, #d4624c 100%);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Store Badges */
.store-badges {
    display: flex;
    gap: 12px;
    align-items: center;
}

.store-badge {
    display: block;
    height: 54px;
}

.store-badge img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Secondary Button - Glass */
.btn-secondary {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans', sans-serif;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Phone Mockup - Liquid Glass */
.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 610px;
    background: rgba(20, 30, 60, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 48px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: none;
    /* No animation - static phone */
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 32px;
    background: #0a0a0f;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    position: absolute;
    inset: 8px;
    border-radius: 40px;
    background: linear-gradient(180deg, #0f172a 0%, #0a1128 100%);
    overflow: hidden;
}

/* Screen glow effect */
.phone-screen::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(226, 114, 91, 0.08) 0%, transparent 60%);
    animation: screenGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes screenGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.phone-app-header { padding: 50px 16px 12px; text-align: center; }
.phone-app-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E2725B 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.phone-app-header p { color: var(--text-muted); font-size: 0.7rem; }
.phone-tabs { display: flex; gap: 6px; padding: 0 12px; margin-top: 10px; }
.phone-tab { flex: 1; padding: 8px; background: var(--bg-card); border-radius: 10px; text-align: center; font-size: 0.65rem; font-weight: 600; color: var(--text-muted); }
.phone-tab.active { background: var(--gradient-primary); color: white; }
.phone-events { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.phone-event-card { background: var(--bg-card); border-radius: 12px; padding: 10px; display: flex; gap: 10px; align-items: center; }
.phone-event-img { width: 48px; height: 48px; border-radius: 10px; background: var(--gradient-ocean); flex-shrink: 0; }
.phone-event-info h4 { font-size: 0.75rem; font-weight: 600; }
.phone-event-info p { font-size: 0.65rem; color: var(--text-muted); }
.phone-event-tag { font-size: 0.55rem; padding: 2px 6px; background: rgba(226, 114, 91, 0.2); color: var(--accent-primary); border-radius: 10px; display: inline-block; margin-top: 3px; }

/* Features Section - Glassmorphism */
.features, .for-venues, .team {
    padding: 6rem 2rem;
    position: relative;
    z-index: 5;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}

/* Base section tag - will be overridden per section */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

/* Features section - Pink */
.features .section-tag {
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #EC4899;
}

/* Team section - Blue */
.team .section-tag {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3B82F6;
}

.section-header h2 {
    font-family: 'Asap', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans', sans-serif;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Feature Card - Liquid Glass */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Specular highlight */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    pointer-events: none;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    backdrop-filter: blur(8px);
    border: 1px solid transparent;
}

.feature-icon svg {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(52%) sepia(56%) saturate(567%) hue-rotate(331deg) brightness(92%) contrast(89%);
}

.feature-icon.pink {
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.25);
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.15);
    color: #EC4899;
}
.feature-icon.blue {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}
.feature-icon.green {
    background: rgba(226, 114, 91, 0.15);
    border-color: rgba(226, 114, 91, 0.25);
    box-shadow: 0 4px 16px rgba(226, 114, 91, 0.15);
    color: #E2725B;
}
.feature-icon.purple {
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.25);
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.15);
    color: #EC4899;
}
.feature-icon.orange {
    background: rgba(226, 114, 91, 0.15);
    border-color: rgba(226, 114, 91, 0.25);
    box-shadow: 0 4px 16px rgba(226, 114, 91, 0.15);
    color: #E2725B;
}
.feature-icon.yellow {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}

.feature-card h3 {
    font-family: 'Asap', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans', sans-serif;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* For Venues Section - Purple tint */
.for-venues {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.04) 0%, transparent 100%);
    position: relative;
}

.for-venues::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.venues-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    padding: 0 2rem;
}

/* For Venues section - Purple */
.venues-text .section-tag,
.for-venues .section-tag {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #8B5CF6;
}

.venues-text h2 {
    font-family: 'Asap', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.venues-text > p {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.venue-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.venue-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.venue-benefit:hover {
    background: rgba(255, 255, 255, 0.03);
}

.benefit-check {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: rgba(226, 114, 91, 0.15);
    border: 1px solid rgba(226, 114, 91, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(226, 114, 91, 0.1);
}

.venue-benefit p {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.venue-benefit strong {
    color: var(--text-primary);
}

/* Dashboard Preview - Glass */
.dashboard-preview {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
}

.dashboard-header-preview {
    display: flex;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dot.red { background: #ff5f57; }
.dashboard-dot.yellow { background: #ffbd2e; }
.dashboard-dot.green { background: #28ca42; }

.dashboard-content-preview {
    padding: 20px;
}

.dashboard-stats-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.dashboard-stat-preview {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 14px;
    text-align: center;
}

.dashboard-stat-preview span {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-stat-preview strong {
    font-size: 1.4rem;
    font-weight: 700;
}

.dashboard-stat-preview strong.pink { color: var(--accent-primary); }
.dashboard-stat-preview strong.blue { color: var(--accent-secondary); }
.dashboard-stat-preview strong.green { color: var(--accent-tertiary); }

.dashboard-chart-preview {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 90px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 12px;
}

.chart-bar-preview {
    flex: 1;
    border-radius: 4px 4px 0 0;
    transition: height 0.3s ease;
}

/* Bar colors matching the gradient trail */
.chart-bar-preview:nth-child(1) { background: #E2725B; }
.chart-bar-preview:nth-child(2) { background: #E55B7A; }
.chart-bar-preview:nth-child(3) { background: #EC4899; }
.chart-bar-preview:nth-child(4) { background: #BA51C5; }
.chart-bar-preview:nth-child(5) { background: #8B5CF6; }
.chart-bar-preview:nth-child(6) { background: #6371F6; }
.chart-bar-preview:nth-child(7) { background: #3B82F6; }

/* Team Section - Glass Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    pointer-events: none;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 50%, #2563EB 100%);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
    color: #ffffff;
}

.team-avatar svg {
    display: block;
    color: currentColor;
}

.team-card h3 {
    font-family: 'Asap', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.team-card .role {
    color: var(--accent-primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-card p {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans', sans-serif;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer - Clean Modern Design */
footer {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 17, 40, 0.3);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 4px;
}

.footer-logo-text {
    height: 38px;
    width: auto;
    position: relative;
    top: 4px;
    left: 5px;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans', sans-serif;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans', sans-serif;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

/* ADMIN PORTAL */
.admin-portal { display: none; position: relative; z-index: 10; background: var(--bg-dark); }
.admin-portal.active { display: block; }

/* Wave decoration for admin/venue portal */
.admin-wave-decoration {
    display: none;
}


.admin-header-bar {
    position: fixed; top: 0; left: 0; right: 0; height: 56px;
    background: rgba(20, 20, 28, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-subtle);
    display: flex; align-items: center; justify-content: space-between; padding: 0 1rem; z-index: 100;
}
.header-left { display: flex; align-items: center; gap: 0.75rem; }
.menu-btn { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border-subtle); background: transparent; color: var(--text-secondary); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.header-logo { font-size: 1rem; font-weight: 800; background: var(--gradient-rainbow); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: gradientShift 4s ease infinite; }
.header-right { display: flex; align-items: center; gap: 0.75rem; }
.header-btn { padding: 0.5rem 1rem; background: var(--gradient-pink); border: none; border-radius: 8px; color: white; font-weight: 600; font-size: 0.8rem; cursor: pointer; }
.header-avatar { width: 36px; height: 36px; border-radius: 8px; background: var(--gradient-sunset); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; }

.sidebar-backdrop { position: fixed; inset: 0; top: 56px; background: rgba(0, 0, 0, 0.6); opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 80; }
.sidebar-backdrop.show { opacity: 1; visibility: visible; }

.admin-sidebar { position: fixed; top: 56px; left: 0; bottom: 0; width: 260px; background: rgba(20, 20, 28, 0.98); backdrop-filter: blur(20px); border-right: 1px solid var(--border-subtle); transform: translateX(-100%); transition: transform 0.3s ease; z-index: 90; overflow-y: auto; padding: 1rem 0; }
.admin-sidebar.open { transform: translateX(0); }
.sidebar-section { padding: 0 0.75rem; margin-bottom: 1.5rem; }
.sidebar-title { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); padding: 0 0.75rem; margin-bottom: 0.5rem; }
.sidebar-link { display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 0.75rem; border-radius: 10px; color: var(--text-secondary); cursor: pointer; font-size: 0.9rem; transition: all 0.2s ease; }
.sidebar-link:hover { background: rgba(255, 255, 255, 0.05); color: var(--text-primary); }
.sidebar-link.active { background: var(--gradient-pink); color: white; }
.sidebar-link svg { width: 18px; height: 18px; }
.sidebar-user { padding: 1rem; margin-top: auto; display: flex; align-items: center; gap: 0.75rem; }
.sidebar-user-avatar { width: 38px; height: 38px; border-radius: 10px; background: var(--gradient-sunset); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; position: relative; overflow: hidden; }
.sidebar-user-avatar #sidebarInitials { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: white; z-index: 1; }
.sidebar-user-info h4 { font-size: 0.9rem; font-weight: 600; }
.sidebar-user-info p { font-size: 0.75rem; color: var(--text-muted); }

.admin-content { padding-top: 56px; min-height: calc(100vh - 56px); }
.admin-page { display: none; padding: 1.25rem; }
.admin-page.active { display: block; }
.page-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.25rem; }

.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 14px; padding: 1.25rem; }
.stat-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; }
.stat-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.stat-icon.pink { background: rgba(255, 0, 110, 0.15); }
.stat-icon.blue { background: rgba(0, 180, 216, 0.15); }
.stat-icon.green { background: rgba(6, 214, 160, 0.15); }
.stat-icon.purple { background: rgba(114, 9, 183, 0.15); }
.stat-change { font-size: 0.7rem; padding: 0.2rem 0.5rem; border-radius: 20px; font-weight: 600; background: rgba(6, 214, 160, 0.15); color: #06d6a0; }
.stat-card h3 { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.2rem; }
.stat-card p { color: var(--text-muted); font-size: 0.8rem; }

.content-row { display: grid; grid-template-columns: 2fr 1fr; gap: 1rem; }
.chart-card, .activity-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 14px; padding: 1.25rem; }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.card-header h3 { font-size: 1rem; font-weight: 600; }
.period-btns { display: flex; gap: 0.4rem; }
.period-btn { padding: 0.4rem 0.75rem; background: transparent; border: 1px solid var(--border-subtle); border-radius: 6px; color: var(--text-muted); font-size: 0.75rem; cursor: pointer; }
.period-btn.active { background: var(--gradient-pink); border-color: transparent; color: white; }
.chart-bars { display: flex; align-items: flex-end; gap: 12px; height: 180px; padding-top: 1rem; }
.chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.chart-bar { width: 100%; border-radius: 6px 6px 0 0; background: var(--gradient-ocean); }
.chart-col span { font-size: 0.7rem; color: var(--text-muted); }
.activity-list { display: flex; flex-direction: column; gap: 0.75rem; }
.activity-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.activity-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.activity-icon.pink { background: rgba(255, 0, 110, 0.15); }
.activity-icon.blue { background: rgba(0, 180, 216, 0.15); }
.activity-icon.green { background: rgba(6, 214, 160, 0.15); }
.activity-item h4 { font-size: 0.85rem; font-weight: 500; }
.activity-item p { font-size: 0.75rem; color: var(--text-muted); }

.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; flex-wrap: wrap; gap: 0.75rem; }
.filter-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn { padding: 0.5rem 1rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 8px; color: var(--text-secondary); font-size: 0.8rem; cursor: pointer; }
.filter-btn.active { border-color: var(--border-glow); color: var(--text-primary); }
.events-list { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 14px; overflow: hidden; }
.event-row { display: flex; align-items: center; padding: 1rem; border-bottom: 1px solid var(--border-subtle); gap: 1rem; }
.event-row:last-child { border-bottom: none; }
.event-thumb { width: 50px; height: 50px; border-radius: 10px; background: var(--gradient-sunset); flex-shrink: 0; }
.event-thumb.ocean { background: var(--gradient-ocean); }
.event-thumb.pink { background: var(--gradient-pink); }
.event-info { flex: 1; min-width: 0; }
.event-info h4 { font-size: 0.95rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.event-info p { font-size: 0.8rem; color: var(--text-muted); }
.event-meta { display: flex; align-items: center; gap: 1rem; }
.status { padding: 0.3rem 0.6rem; border-radius: 20px; font-size: 0.7rem; font-weight: 600; white-space: nowrap; }
.status.live { background: rgba(6, 214, 160, 0.15); color: #06d6a0; }
.status.upcoming { background: rgba(0, 180, 216, 0.15); color: #00b4d8; }
.status.draft { background: rgba(138, 138, 154, 0.15); color: #8a8a9a; }
.event-date { font-size: 0.8rem; color: var(--text-secondary); white-space: nowrap; display: none; }
.event-actions { display: flex; gap: 0.4rem; }
.action-btn { width: 32px; height: 32px; border-radius: 6px; border: 1px solid var(--border-subtle); background: transparent; color: var(--text-secondary); cursor: pointer; font-size: 0.8rem; }

.hh-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.hh-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 14px; padding: 1.25rem; }
.hh-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.hh-day { padding: 0.35rem 0.7rem; background: var(--gradient-sunset); border-radius: 6px; font-size: 0.8rem; font-weight: 600; }
.hh-toggle { width: 42px; height: 22px; background: rgba(255, 255, 255, 0.1); border-radius: 11px; position: relative; cursor: pointer; }
.hh-toggle::after { content: ''; position: absolute; width: 16px; height: 16px; background: white; border-radius: 50%; top: 3px; left: 3px; transition: transform 0.2s ease; }
.hh-toggle.on { background: var(--gradient-pink); }
.hh-toggle.on::after { transform: translateX(20px); }
.hh-time { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.hh-deals { display: flex; flex-direction: column; gap: 0.4rem; }
.hh-deal { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border-subtle); font-size: 0.85rem; }
.hh-deal:last-child { border-bottom: none; }
.hh-deal span:first-child { color: var(--text-secondary); }
.hh-deal span:last-child { color: #06d6a0; font-weight: 600; }

.settings-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 1.75rem; }
.settings-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border-subtle); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem; background: var(--bg-dark); border: 1px solid var(--border-subtle); border-radius: 10px; color: var(--text-primary); font-size: 0.9rem; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--border-glow); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tags-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag { padding: 0.4rem 0.75rem; background: transparent; border: 1px solid var(--border-subtle); border-radius: 20px; color: var(--text-secondary); font-size: 0.8rem; cursor: pointer; }
.tag.selected { background: var(--gradient-pink); border-color: transparent; color: white; }
.save-btn { margin-top: 1rem; padding: 0.75rem 1.5rem; background: var(--gradient-pink); border: none; border-radius: 10px; color: white; font-weight: 600; font-size: 0.9rem; cursor: pointer; }
.logo-upload-section { display: flex; gap: 1.5rem; align-items: flex-start; }
.delete-btn { padding: 0.65rem 1.25rem; background: #ef476f; border: none; border-radius: 10px; color: white; font-weight: 600; font-size: 0.9rem; cursor: pointer; white-space: nowrap; }
.delete-btn:hover { background: #d63659; }

.modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 1100; padding: 1rem; }
.modal-overlay.show { display: flex; }
body.modal-open { overflow: hidden; }
.modal { background: var(--bg-dark); border: 1px solid var(--border-subtle); border-radius: 16px; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; }
.modal-wide { max-width: 900px; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-subtle); }
.modal-header h2 { font-size: 1.1rem; font-weight: 700; }
.modal-close { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border-subtle); background: transparent; color: var(--text-secondary); cursor: pointer; font-size: 1.1rem; }
.modal-body { padding: 1.25rem; }
.modal-body-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.modal-form { flex: 1; }
.modal-preview { flex: 1; }
.preview-label { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.75rem; font-weight: 600; }
.large-preview { width: 100%; height: 400px; background: var(--bg-dark); border: 2px dashed var(--border-subtle); border-radius: 12px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.preview-placeholder { text-align: center; color: var(--text-muted); }
.preview-icon { font-size: 3rem; margin-bottom: 0.5rem; opacity: 0.3; }
.preview-placeholder p { font-size: 0.85rem; }
.upload-btn { padding: 0.75rem 1rem; background: var(--bg-dark); border: 1px solid var(--border-subtle); border-radius: 10px; color: var(--text-primary); font-size: 0.85rem; cursor: pointer; white-space: nowrap; }
.modal-footer { display: flex; justify-content: flex-end; gap: 0.75rem; padding: 1rem 1.25rem; border-top: 1px solid var(--border-subtle); }
.cancel-btn { padding: 0.65rem 1.25rem; background: transparent; border: 1px solid var(--border-subtle); border-radius: 10px; color: var(--text-secondary); font-size: 0.9rem; cursor: pointer; }
.submit-btn { padding: 0.65rem 1.25rem; background: var(--gradient-pink); border: none; border-radius: 10px; color: white; font-weight: 600; font-size: 0.9rem; cursor: pointer; }

@media (max-width: 768px) {
    .modal-body-flex { grid-template-columns: 1fr; }
    .modal-preview { display: none; }
}

/* Responsive - Landing Page */
@media (min-width: 768px) {
    .event-date { display: block; }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-phone {
        order: -1;
    }

    .phone-mockup {
        width: 260px;
        height: 530px;
    }

    .hero-buttons {
        justify-content: center;
        align-items: center;
    }

    .store-badges {
        justify-content: center;
        width: 100%;
    }

    .venues-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .venues-text {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .venues-preview {
        order: -1;
    }

    .content-row {
        grid-template-columns: 1fr;
    }

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

    .feature-card {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
}

/* Tablet - keep full menu but more compact */
@media (max-width: 1024px) and (min-width: 601px) {
    nav {
        max-width: 98%;
        padding: 0.4rem 0.4rem 0.4rem 0.75rem;
        gap: 0.25rem;
    }

    .nav-logo {
        height: 36px;
    }

    .logo {
        font-size: 0.95rem;
        padding-right: 0.4rem;
        margin-right: 0.1rem;
    }

    .nav-links a {
        padding: 0.4rem 0.5rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .nav-cta {
        padding: 0.45rem 0.75rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }
}

/* iPhone - logo + Partner Login only */
@media (max-width: 600px) {
    nav {
        padding: 0.4rem 0.4rem 0.4rem 0.75rem;
        width: auto;
        max-width: 95%;
    }

    .nav-logo {
        height: 35px;
    }

    .logo {
        font-size: 0.95rem;
        padding-right: 0;
        border-right: none;
        margin-right: 0;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
        margin-left: auto;
        white-space: nowrap;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-content {
        padding: 0;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .store-badges {
        width: 100%;
    }

    .store-badge {
        flex: 1;
        height: auto;
    }

    .store-badge img {
        width: 100%;
        height: auto;
    }

    .venues-content {
        padding: 0;
    }

    .phone-mockup {
        width: 240px;
        height: 490px;
        border-radius: 40px;
    }

    .phone-screen {
        border-radius: 34px;
    }

    .phone-notch {
        width: 90px;
        height: 26px;
    }

    .section-header h2,
    .venues-text h2 {
        font-size: 1.75rem;
    }

    .features, .for-venues, .team {
        padding: 4rem 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .team-card {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Reduce background effects on mobile for performance */
    .hero::before {
        filter: blur(40px);
    }

    .hero::after {
        display: none;
    }
}

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

    .hero::before,
    .hero::after {
        animation: none;
    }

    .phone-screen::before {
        animation: none;
    }

    .team-avatar {
        animation: none;
    }
}

/* iPad landscape and larger - sidebar always visible */
@media (min-width: 1024px) {
    .admin-sidebar {
        transform: translateX(0);
    }
    .admin-content {
        padding-left: 260px;
    }
    .sidebar-backdrop {
        display: none;
    }
    .menu-btn {
        display: none;
    }
}

/* Toast Notifications - Modern Glassmorphism Style */
.toast {
    min-width: 320px;
    max-width: 400px;
    padding: 1rem 1.25rem;
    background: rgba(20, 20, 28, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-rainbow);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.toast.success::before { background: linear-gradient(90deg, #06d6a0, #00b4d8); }
.toast.error::before { background: linear-gradient(90deg, #ef476f, #ff006e); }
.toast.info::before { background: linear-gradient(90deg, #00b4d8, #7209b7); }

.toast-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.toast.success .toast-icon { background: rgba(6, 214, 160, 0.15); }
.toast.error .toast-icon { background: rgba(239, 71, 111, 0.15); }
.toast.info .toast-icon { background: rgba(0, 180, 216, 0.15); }

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
    color: var(--text-primary);
}

.toast-message {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.toast-close {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

@keyframes toastSlideIn {
    from {
        transform: translateX(120%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    to {
        transform: translateX(120%) scale(0.9);
        opacity: 0;
    }
}

/* Light mode toast */
html[data-theme="light"] .toast {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Recurring Event Options */
.recurring-options {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.days-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.day-tag {
    padding: 0.5rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

.day-tag.selected {
    background: var(--gradient-pink);
    border-color: transparent;
    color: white;
}

/* Happy Hour New Design */
.page-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.hh-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
}

.hh-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
}

.hh-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hh-item-day-badge {
    padding: 0.4rem 0.9rem;
    background: var(--gradient-ocean);
    border-radius: 8px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hh-item-day-badge.weekend {
    background: var(--gradient-sunset);
}

.hh-item-body {
    grid-column: 1;
}

.hh-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.hh-item-time {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hh-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.hh-deal-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.deal-icon {
    font-size: 1.2rem;
}

.deal-price {
    margin-left: auto;
    font-weight: 700;
    color: var(--text-primary);
}

.hh-item-actions {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.deal-input-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.deal-item-input {
    flex: 2;
    padding: 0.75rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.deal-price-input {
    flex: 1;
    padding: 0.75rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Widget Hero Section */
.widget-hero {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.widget-hero-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid rgba(255, 0, 110, 0.2);
    border-radius: 20px;
    color: #ff4d6d;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
}

.widget-hero-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    color: var(--text-primary);
}

.widget-hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
}

.widget-hero-visual {
    display: none;
}

.widget-preview-browser,
.browser-bar,
.browser-dots,
.browser-url,
.browser-content,
.widget-preview-event,
.preview-event-image,
.preview-event-info,
.preview-event-title,
.preview-event-date {
    display: none;
}

/* Widget Cards Grid */
.widget-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.widget-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem;
}

.widget-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.widget-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.widget-card-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.theme-selector {
    display: flex;
    gap: 0.5rem;
}

.theme-option {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.theme-option.active {
    background: var(--gradient-pink);
    border-color: transparent;
    color: white;
}

.theme-preview {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.theme-preview.light {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.theme-preview.dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.slider {
    width: 100%;
    margin: 0.5rem 0;
}

.slider-value {
    display: inline-block;
    background: var(--gradient-pink);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.code-block {
    position: relative;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.code-block code {
    display: block;
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: pre;
    overflow-x: auto;
    line-height: 1.5;
}

.code-copy-btn {
    margin-top: 1rem;
    width: 100%;
    padding: 0.75rem;
    background: var(--gradient-ocean);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.widget-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.analytics-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.analytics-stat {
    text-align: center;
    padding: 1rem 0.75rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
}

.analytics-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.analytics-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Settings Pages Layout */
#page-settings,
#page-venue-settings {
    max-width: 700px;
}

#page-settings .settings-card,
#page-venue-settings .settings-card {
    margin-bottom: 1.5rem;
}

/* Widget Page Layout */
#page-widget {
    max-width: 1200px;
}

/* Responsive - Admin Pages */
@media (max-width: 900px) {
    .widget-cards-grid {
        grid-template-columns: 1fr;
    }

    .hh-item {
        grid-template-columns: 1fr;
    }

    .hh-item-actions {
        grid-column: 1;
        flex-direction: row;
        justify-content: flex-end;
    }
}

@media (max-width: 600px) {
    .widget-hero {
        padding: 1.5rem;
    }

    .hh-deals-grid {
        grid-template-columns: 1fr;
    }

    .analytics-preview {
        grid-template-columns: 1fr;
    }
}

/* ===== LOGIN MODAL ===== */
.login-modal {
    background: #ffffff;
    border: 1px solid #e5e4e4;
    border-radius: 24px;
    max-width: 420px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Rainbow gradient top border */
.login-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E2725B, #EC4899, #8B5CF6, #3B82F6);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.login-modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.login-modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #181514;
}

.login-subtitle {
    font-size: 0.95rem;
    color: #888888;
    margin: 0;
}

.login-modal-header .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f9f8f7;
    border: 1px solid #e5e4e4;
    color: #555555;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.login-modal-header .modal-close:hover {
    border-color: #D17359;
    color: #181514;
}

.login-modal-body {
    padding: 1.5rem 2rem 2rem;
}

/* Google Sign-in Button */
.google-signin-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    background: #ffffff;
    border: 1px solid #181514;
    border-radius: 12px;
    color: #1a1a2e;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.google-signin-btn:hover {
    background: #f9f8f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.google-signin-btn:active {
    transform: translateY(-1px);
}

.google-signin-btn svg {
    flex-shrink: 0;
}

/* Apple Sign-in Button */
.apple-signin-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    margin-top: 12px;
    background: #000000;
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.apple-signin-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.apple-signin-btn:active {
    transform: translateY(-1px);
}

.apple-signin-btn svg {
    flex-shrink: 0;
}

/* Divider */
.login-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e4e4;
}

.login-divider span {
    padding: 0 1rem;
    font-size: 0.85rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Inputs */
.login-modal-body .form-group {
    margin-bottom: 1rem;
}

.login-modal-body .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555555;
    margin-bottom: 0.5rem;
}

.login-input {
    width: 100%;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #e5e4e4;
    border-radius: 12px;
    color: #181514;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.login-input::placeholder {
    color: #888888;
}

.login-input:focus {
    outline: none;
    border-color: #D17359;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(209, 115, 89, 0.15);
}

/* Submit Button */
.login-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #E2725B 0%, #d4624c 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(226, 114, 91, 0.35);
}

.login-submit-btn:active {
    transform: translateY(-1px);
}

.login-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer Text */
.login-footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: #888888;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.login-footer-text a {
    color: #E2725B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.login-footer-text a:hover {
    color: #EC4899;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .login-modal {
        margin: 1rem;
        border-radius: 20px;
    }

    .login-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .login-modal-body {
        padding: 1rem 1.5rem 1.5rem;
    }

    .login-modal-header h2 {
        font-size: 1.5rem;
    }
}
