/**
 * LoveWoW v2.0 - Styles
 * Theme: Mists of Pandaria
 */

:root {
    --jade-dark: #0d4a3e;
    --jade: #1a7a5c;
    --jade-light: #2eb086;
    --gold: #d4a857;
    --gold-light: #f5d795;
    --gold-dark: #a67c3d;
    --red-accent: #c73e3a;
    --dark-bg: #0a0f0d;
    --darker-bg: #050807;
    --text-light: #e8efe9;
    --text-muted: #8fa99a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Crimson Pro', serif;
    background: var(--darker-bg);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== VIDEO BACKGROUND ===== */
.video-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -2;
}

.video-background iframe,
.video-background video {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw; height: 56.25vw;
    min-height: 100vh; min-width: 177.78vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(5,8,7,0.4) 70%, rgba(5,8,7,0.95) 100%),
        linear-gradient(135deg, rgba(13,74,62,0.4) 0%, transparent 50%, rgba(212,168,87,0.15) 100%),
        linear-gradient(to bottom, rgba(5,8,7,0.6) 0%, rgba(5,8,7,0.4) 50%, rgba(5,8,7,0.8) 100%);
}

.video-fallback {
    display: none;
    position: absolute;
    inset: 0;
    background: 
        url('assets/img/mop-bg.jpg') center/cover no-repeat,
        linear-gradient(135deg, var(--jade-dark) 0%, var(--darker-bg) 100%);
}

.video-error .video-fallback { display: block; }
.video-error iframe { display: none; }

/* ===== MIST & PARTICLES ===== */
.mist-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.mist-layer {
    position: absolute;
    width: 200%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.02' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.03;
    animation: mistFlow 60s linear infinite;
}

.mist-layer:nth-child(2) {
    animation-duration: 45s;
    animation-direction: reverse;
    opacity: 0.02;
}

@keyframes mistFlow {
    to { transform: translateX(-50%); }
}

.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 1s; }
.particle:nth-child(8) { left: 80%; animation-delay: 3s; }

@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10%, 90% { opacity: 0.8; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,15,13,0.95), transparent);
    backdrop-filter: blur(10px);
    transition: background 0.3s;
}

nav.scrolled {
    background: rgba(10,15,13,0.98);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--jade), var(--jade-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(46,176,134,0.3);
    font-size: 1.5rem;
}

.logo h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--jade-light), var(--gold));
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.menu-toggle span {
    width: 25px; height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 10;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(26,122,92,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212,168,87,0.1) 0%, transparent 40%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(46,176,134,0.1);
    border: 1px solid var(--jade);
    border-radius: 30px;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.85rem;
    color: var(--jade-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.hero-badge.online { border-color: var(--jade-light); }
.hero-badge.offline { border-color: var(--red-accent); color: var(--red-accent); }

.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--jade-light);
    animation: pulse 2s infinite;
}

.hero-badge.offline .status-dot {
    background: var(--red-accent);
    animation: none;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h2 .highlight {
    background: linear-gradient(135deg, var(--jade-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 1rem 2.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, var(--jade), var(--jade-light));
    color: white;
    box-shadow: 0 4px 20px rgba(46,176,134,0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46,176,134,0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover:not(:disabled) {
    background: rgba(212,168,87,0.1);
    transform: translateY(-3px);
}

.btn-loading {
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    top: 50%; left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===== FEATURES ===== */
.features {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

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

.section-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(26,122,92,0.1), rgba(10,15,13,0.8));
    border: 1px solid rgba(46,176,134,0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--jade), var(--gold), var(--jade));
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--jade);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--jade-dark), var(--jade));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--jade-light);
}

.feature-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== STATS ===== */
.stats {
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--jade-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Noto Sans SC', sans-serif;
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* ===== AUTH SECTION ===== */
.auth-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(13,74,62,0.2), rgba(10,15,13,0.9));
    border: 1px solid rgba(46,176,134,0.3);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--jade), transparent 30%);
    animation: rotate 10s linear infinite;
    opacity: 0.1;
}

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

.auth-content {
    position: relative;
    z-index: 1;
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(46,176,134,0.2);
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
}

.auth-tab.active { color: var(--gold); }

.auth-tab::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.auth-tab.active::after { transform: scaleX(1); }

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(46,176,134,0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--jade-light);
    box-shadow: 0 0 20px rgba(46,176,134,0.2);
}

.form-group input::placeholder {
    color: rgba(143,169,154,0.5);
}

.form-group input.error {
    border-color: var(--red-accent);
}

.form-group input.valid {
    border-color: var(--jade-light);
}

.form-error {
    color: var(--red-accent);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.form-error.visible { display: block; }

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

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.remember-forgot label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

.remember-forgot input[type="checkbox"] {
    accent-color: var(--jade);
}

.remember-forgot a {
    color: var(--jade-light);
    text-decoration: none;
    transition: color 0.3s;
}

.remember-forgot a:hover { color: var(--gold); }

/* Honeypot */
.hp-field { 
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    margin-top: 1rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(46,176,134,0.2);
}

.auth-divider span { padding: 0 1rem; }

.server-info {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(212,168,87,0.2);
}

.server-info h5 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.server-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
}

.server-info-item:last-child { border-bottom: none; }
.server-info-item span:first-child { color: var(--text-muted); }

.server-info-item span:last-child {
    color: var(--jade-light);
    font-family: 'Consolas', monospace;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    padding: 0.25rem;
    transition: transform 0.2s;
}

.copy-btn:hover { transform: scale(1.2); }
.copy-btn.copied { color: var(--jade-light); }

/* ===== DOWNLOAD ===== */
.download-section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.download-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(199,62,58,0.1), rgba(10,15,13,0.9));
    border: 1px solid rgba(199,62,58,0.3);
    border-radius: 20px;
    padding: 3rem;
}

.download-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.download-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.version-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--red-accent);
    border-radius: 20px;
    font-size: 0.85rem;
    color: white;
    margin-bottom: 1.5rem;
}

/* ===== SOUND TOGGLE ===== */
.sound-toggle {
    position: absolute;
    bottom: 100px; right: 30px;
    width: 50px; height: 50px;
    background: rgba(10,15,13,0.8);
    border: 1px solid var(--jade);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.sound-toggle:hover {
    background: rgba(46,176,134,0.3);
    border-color: var(--jade-light);
    transform: scale(1.1);
}

.sound-toggle.active {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212,168,87,0.3);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px; height: 30px;
    border: 2px solid var(--jade-light);
    border-radius: 10px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px; left: 50%;
    width: 4px; height: 8px;
    background: var(--jade-light);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollDot {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 14px; }
}

/* ===== FOOTER ===== */
footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(46,176,134,0.1);
    position: relative;
    z-index: 10;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--jade-light); }

.footer-copyright {
    color: rgba(143,169,154,0.5);
    font-size: 0.85rem;
}

.footer-copyright span { color: var(--gold); }

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    top: 100px; right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    animation: slideIn 0.3s ease;
    font-family: 'Noto Sans SC', sans-serif;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.notification-success {
    background: linear-gradient(135deg, rgba(46,176,134,0.95), rgba(26,122,92,0.95));
    border: 1px solid var(--jade-light);
    color: white;
}

.notification-error {
    background: linear-gradient(135deg, rgba(199,62,58,0.95), rgba(150,40,40,0.95));
    border: 1px solid #e74c3c;
    color: white;
}

.notification-warning {
    background: linear-gradient(135deg, rgba(212,168,87,0.95), rgba(166,124,61,0.95));
    border: 1px solid var(--gold);
    color: white;
}

.notification button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.notification button:hover { opacity: 1; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav { padding: 1rem; }
    
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10,15,13,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s;
        backdrop-filter: blur(20px);
    }
    
    .nav-links.active { right: 0; }
    
    .menu-toggle { display: flex; }
    
    .hero h2 { font-size: 2rem; }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .auth-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-row { grid-template-columns: 1fr; }
    
    .sound-toggle {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number { font-size: 2rem; }
}

@media (max-width: 480px) {
    .logo h1 { font-size: 1.1rem; }
    .logo-icon { width: 40px; height: 40px; font-size: 1.2rem; }
    
    .hero-badge { font-size: 0.75rem; padding: 0.4rem 1rem; }
    
    .notification {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}
