/* Yandex Market Loyalty System - Premium Yellow, Charcoal Black & Mobile Ultra-Responsive CSS */
:root {
    /* Brand Yandex Colors */
    --ym-yellow: #ffcc00;
    --ym-yellow-hover: #e6b800;
    --ym-yellow-light: #fff9e6;
    --ym-yellow-glow: rgba(255, 204, 0, 0.25);
    
    /* Dark Palette (Charcoal - Eye Soothing) */
    --ym-dark-bg: #181920;
    --ym-dark-card: #22232d;
    --ym-dark-border: #2d2e3a;
    --ym-text-light: #f1f5f9;
    --ym-text-muted: #94a3b8;

    /* Light Theme Body & Cards */
    --bg-body: #f8fafc;
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --card-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    --border-radius: 16px;

    --sidebar-width: 270px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-body);
    color: #1e293b;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    touch-action: manipulation;
}

.font-mono {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.font-bold {
    font-weight: 700;
}

/* App Layout */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar - Deep Charcoal Black */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--ym-dark-bg);
    color: var(--ym-text-light);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    padding: 1.2rem 1rem;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.brand-badge {
    background: var(--ym-yellow);
    color: #111;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 4px 14px var(--ym-yellow-glow);
}

.brand-title {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.brand-sub {
    font-size: 0.72rem;
    color: var(--ym-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-badge-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 204, 0, 0.25);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    color: #e2e8f0;
    margin-bottom: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    overflow-y: auto;
}

.nav-item {
    margin-bottom: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.nav-link:hover {
    color: var(--ym-yellow);
    background: rgba(255, 204, 0, 0.1);
}

.nav-link.active {
    background: var(--ym-yellow);
    color: #111118;
    font-weight: 800;
    box-shadow: 0 4px 16px var(--ym-yellow-glow);
}

.menu-divider {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 800;
    padding: 14px 12px 4px;
    letter-spacing: 1px;
}

.sidebar-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
}

.user-info-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px;
}

.user-avatar {
    width: 34px;
    height: 34px;
    background: #2a2b38;
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ym-yellow);
}

.user-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}

.btn-logout {
    background: rgba(239, 68, 68, 0.08);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
    font-weight: 600;
    border-radius: 8px;
    padding: 6px;
}

/* Main Area */
.main-content {
    margin-left: var(--sidebar-width);
    flex-grow: 1;
    padding: 1.75rem 2rem;
    width: calc(100% - var(--sidebar-width));
}

.top-header {
    margin-bottom: 1.5rem !important;
}

.page-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.4px;
    margin-bottom: 4px;
}

/* Dashboard Stat Cards */
.stat-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 1.25rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
    border-color: rgba(255, 204, 0, 0.5);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--ym-yellow);
}

.stat-card.stat-today::before { background: linear-gradient(180deg, #ffcc00 0%, #d97706 100%); }
.stat-card.stat-7days::before { background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%); }
.stat-card.stat-30days::before { background: linear-gradient(180deg, #8b5cf6 0%, #6d28d9 100%); }
.stat-card.stat-gifts::before { background: linear-gradient(180deg, #10b981 0%, #047857 100%); }

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.stat-today .stat-icon { background: rgba(255, 204, 0, 0.18); color: #b45309; }
.stat-7days .stat-icon { background: rgba(59, 130, 246, 0.12); color: #2563eb; }
.stat-30days .stat-icon { background: rgba(139, 92, 246, 0.12); color: #7c3aed; }
.stat-gifts .stat-icon { background: rgba(16, 185, 129, 0.12); color: #059669; }

.stat-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.stat-value {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin: 0 0 4px 0;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.stat-sub {
    font-size: 0.76rem;
    color: #94a3b8;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Content Cards */
.content-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.content-card:hover {
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.07);
}

.card-header-custom {
    padding: 1.1rem 1.4rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #f1f5f9;
}

.card-header-custom h5 {
    font-weight: 800;
    font-size: 1.05rem;
    color: #0f172a;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.card-body-custom {
    padding: 1.4rem;
}

/* Tables */
.custom-table th {
    background-color: #f8fafc;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #64748b;
    font-weight: 800;
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
}

.custom-table td {
    padding: 13px 16px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.custom-table tbody tr {
    transition: background-color 0.15s ease;
}

.custom-table tbody tr:hover {
    background-color: #f8fafc;
}

.rank-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.82rem;
}

.rank-1 { background: #ffcc00; color: #111; box-shadow: 0 2px 8px rgba(255,204,0,0.4); }
.rank-2 { background: #e2e8f0; color: #334155; }
.rank-3 { background: #fed7aa; color: #9a3412; }
.rank-other { background: #f1f5f9; color: #64748b; }

/* Buttons */
.btn-warning {
    background-color: var(--ym-yellow) !important;
    border-color: var(--ym-yellow) !important;
    color: #111118 !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
    transition: all 0.2s ease !important;
}

.btn-warning:hover {
    background-color: var(--ym-yellow-hover) !important;
    border-color: var(--ym-yellow-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 204, 0, 0.4);
}

/* Form Controls */
.form-control, .form-select {
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    padding: 9px 14px;
    font-size: 0.92rem;
    color: #1e293b;
    min-height: 44px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--ym-yellow);
    box-shadow: 0 0 0 3px var(--ym-yellow-glow);
}

/* Printable QR Code Container for A4 Top-Left Corner Print */
.printable-qr-card {
    display: none;
}

@media print {
    body * {
        visibility: hidden !important;
    }
    .printable-qr-card, .printable-qr-card * {
        visibility: visible !important;
    }
    .printable-qr-card {
        display: block !important;
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        width: 170px !important;
        text-align: center !important;
        padding: 5px !important;
        background: #ffffff !important;
    }
    .printable-qr-card img {
        width: 150px !important;
        height: 150px !important;
        display: block !important;
        margin: 0 auto 5px auto !important;
    }
    .print-id-text {
        font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
        font-size: 15pt !important;
        font-weight: 800 !important;
        color: #000000 !important;
        text-align: center !important;
    }
}

/* Mobile Ultra-Responsive Master Styles (< 992px & < 768px & < 480px) */
.mobile-topbar {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: #181920 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

@media (max-width: 991.98px) {
    .app-container {
        flex-direction: column;
    }
    .sidebar {
        transform: translateX(-100%);
        width: 285px;
        box-shadow: 6px 0 25px rgba(0,0,0,0.35);
    }
    .sidebar.show-mobile {
        transform: translateX(0);
    }
    .mobile-sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.65);
        z-index: 1045;
        display: none;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
    .mobile-sidebar-overlay.show {
        display: block;
    }
    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 0.85rem 0.65rem;
    }
    .page-title {
        font-size: 1.15rem !important;
    }
    .top-header {
        margin-bottom: 1rem !important;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
    .top-header p {
        font-size: 0.78rem !important;
    }
}

@media (max-width: 767.98px) {
    /* Stat Cards 2-column mobile optimization */
    .stat-card {
        padding: 0.85rem 0.95rem;
        gap: 0.75rem;
        border-radius: 12px;
    }
    .stat-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 1.1rem;
    }
    .stat-label {
        font-size: 0.68rem;
        letter-spacing: 0.2px;
    }
    .stat-value {
        font-size: 1.35rem;
        margin-bottom: 2px;
    }
    .stat-sub {
        font-size: 0.7rem;
    }

    /* Content Cards & Padding */
    .card-header-custom {
        padding: 0.85rem 1rem;
    }
    .card-header-custom h5 {
        font-size: 0.95rem;
    }
    .card-body-custom {
        padding: 0.85rem 1rem;
    }

    /* Table Compact Mobile Styling */
    .custom-table th {
        font-size: 0.7rem;
        padding: 8px 10px;
    }
    .custom-table td {
        font-size: 0.82rem;
        padding: 9px 10px;
    }
    .rank-badge {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    /* Mobile Inputs: font-size 16px prevents iOS zoom on tap */
    .form-control, .form-select {
        font-size: 16px !important;
        min-height: 44px;
        padding: 8px 12px;
    }
    
    /* Chart Containers Responsive Height */
    .content-card canvas {
        max-height: 210px !important;
    }

    /* Modals Mobile Friendly */
    .modal-dialog {
        margin: 0.5rem;
    }
    .modal-body {
        padding: 1rem !important;
    }

    /* Mobile Action Buttons */
    .btn-lg {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: 0.75rem 0.75rem;
        gap: 0.5rem;
    }
    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .stat-value {
        font-size: 1.2rem;
    }
}

/* Premium Responsive Login Page Styling */
.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    background: radial-gradient(circle at 50% 20%, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow-x: hidden;
    padding: 1.5rem;
    margin: 0;
}

.login-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.login-bg-shapes .shape-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.15) 0%, rgba(255, 204, 0, 0) 70%);
}

.login-bg-shapes .shape-2 {
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 70%);
}

.login-wrapper {
    width: 100%;
    max-width: 440px;
    z-index: 10;
    margin: 0 auto;
}

.login-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.2rem 2rem 1.8rem 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 5px 20px rgba(255, 204, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.login-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffcc00 0%, #ff9900 100%);
}

.login-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.login-brand-badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ffcc00 0%, #f59e0b 100%);
    color: #111111;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem auto;
    box-shadow: 0 8px 24px rgba(255, 204, 0, 0.35);
}

.login-title {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.login-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
}

.login-alert {
    border-radius: 12px;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

.login-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.4rem;
}

.login-input-group .input-group-text {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 1.05rem;
}

.login-input {
    border-color: #cbd5e1;
    border-top-right-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
    padding: 0.7rem 0.9rem;
    font-size: 16px !important; /* 16px prevents iOS zoom */
    color: #0f172a;
}

.login-input-group .btn-toggle-pw {
    border-color: #cbd5e1;
    border-top-right-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
    cursor: pointer;
}

.login-input:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.2);
}

.login-btn {
    background: linear-gradient(135deg, #ffcc00 0%, #e6b800 100%);
    border: none;
    color: #0f172a;
    padding: 0.82rem 1.2rem;
    border-radius: 12px;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.28) !important;
}

.login-btn:hover {
    background: linear-gradient(135deg, #ffe066 0%, #ffcc00 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(255, 204, 0, 0.4) !important;
    color: #000000;
}

.login-btn:active {
    transform: translateY(0);
}

.login-card-footer {
    text-align: center;
    margin-top: 1.4rem;
    color: #94a3b8;
    font-size: 0.78rem;
}

@media (max-width: 480px) {
    .login-body {
        padding: 1rem;
    }
    .login-card {
        padding: 1.6rem 1.25rem 1.4rem 1.25rem;
        border-radius: 16px;
    }
    .login-brand-badge {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
        border-radius: 14px;
    }
    .login-title {
        font-size: 1.3rem;
    }
}

/* Top Loading Progress Bar */
.global-loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #ffcc00 0%, #f59e0b 50%, #ffcc00 100%);
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.8);
    z-index: 99999999;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

/* Offline Screen Locker Overlay CSS */
.offline-lock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.offline-lock-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.offline-lock-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 6px solid #ef4444;
}

.offline-lock-overlay.active .offline-lock-card {
    transform: scale(1);
}

.offline-icon-box {
    width: 72px;
    height: 72px;
    background: #fee2e2;
    color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.2rem auto;
    animation: offlinePulse 2s infinite;
}

@keyframes offlinePulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 18px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.offline-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.offline-text {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 1.4rem;
    line-height: 1.5;
}

.offline-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: dotPulse 1.2s infinite ease-in-out;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Falcons Team Entrance & Branding Styling */
.falcons-team-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 204, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.25);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #475569;
    margin-top: 0.5rem;
}

.falcons-glow-text {
    background: linear-gradient(90deg, #ffcc00 0%, #f59e0b 50%, #ffcc00 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: falconsShimmer 3s linear infinite;
    font-weight: 800;
    letter-spacing: 0.5px;
}

@keyframes falconsShimmer {
    to { background-position: 200% center; }
}

.falcons-splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 30%, #1e293b 0%, #0f172a 100%);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.falcons-splash-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.falcons-splash-content {
    animation: falconsPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes falconsPop {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.falcons-logo-pulse {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffcc00 0%, #f59e0b 100%);
    color: #0f172a;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.4);
    animation: falconsIconBounce 2s infinite ease-in-out;
}

@keyframes falconsIconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}

.falcons-splash-title {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ffffff 0%, #ffcc00 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: falconsShimmer 2.5s linear infinite;
    margin-bottom: 0.5rem;
}

.falcons-splash-sub {
    color: #94a3b8;
    font-size: 0.95rem;
}

