/* ============================================
   MRBEAST OFFICIAL PORTAL - PRODUCTION CSS
   Black & White Theme + Glass Design
   ============================================ */

:root {
    --beast-blue: #3b82f6;
    --beast-blue-dark: #1d4ed8;
    --beast-blue-light: #38bdf8;
    --beast-red: #ff3333;
    --beast-red-dark: #cc0000;
    --beast-red-light: #ff6666;
    --dark-bg: #081a54;
    --dark-card: #0d2268;
    --dark-border: #24408f;
    --text-primary: #ffffff;
    --text-secondary: #d6dbe8;
    --text-muted: #aeb6c6;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ff3333;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(8,26,84,0.5);
    --shadow-lg: 0 16px 48px rgba(8,26,84,0.6);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.08);
    --glass-hover: rgba(255,255,255,0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a { text-decoration: none; color: inherit; }

/* ============================================
   GLASS DESIGN
   ============================================ */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--glass-hover);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: rgba(8, 26, 84, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(4, 14, 48, 0.95) !important;
    box-shadow: var(--shadow);
}

.brand-logo { width: 140px; height: auto; }

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-beast {
    background: var(--text-primary);
    color: var(--dark-bg);
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.875rem 2.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.btn-beast:hover {
    background: var(--text-secondary);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.15);
}

.btn-beast-red {
    background: var(--beast-red);
    color: white;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.875rem 2.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-beast-red:hover {
    background: var(--beast-red-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,51,51,0.3);
}

.btn-beast-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255,255,255,0.3);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-beast-outline:hover {
    background: var(--text-primary);
    color: var(--dark-bg);
    border-color: var(--text-primary);
}

/* ============================================
   HERO SECTION WITH YOUTUBE VIDEO
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #081a54;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    border: none;
}

/* Local hero video - covers the hero exactly like the iframe, but plays offline */
.hero-video-el {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    display: none;
    background: #081a54;
}

/* Static poster - last-resort hero background when no video can play (fully offline) */
.hero-video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero-poster.svg');
    background-size: cover;
    background-position: center;
    background-color: #081a54;
    display: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.78) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-secondary);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin: 1.5rem 0;
    line-height: 1.05;
    text-shadow: 0 2px 14px rgba(0,0,0,0.9), 0 4px 44px rgba(0,0,0,0.55);
    letter-spacing: -1px;
}

.text-beast-blue { color: var(--text-primary); }
.text-beast-red { color: var(--beast-red-light); }

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-buttons { margin-top: 2rem; }

.hero-stats {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item { text-align: center; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

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

/* ============================================
   SECTIONS
   ============================================ */
.features-section, .how-it-works, .py-5 {
    padding: 6rem 0;
}

.how-it-works {
    background: linear-gradient(180deg, #081a54 0%, #0d2268 50%, #081a54 100%);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

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

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    background: var(--glass-hover);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(8,26,84,0.3);
}

.bg-beast-blue { background: linear-gradient(135deg, #1d3a8a 0%, #2b4da6 100%); border: 1px solid rgba(56,189,248,0.25); }
.bg-beast-red { background: linear-gradient(135deg, #2a0a0a 0%, #3d1515 100%); border: 1px solid rgba(255,51,51,0.2); }

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

/* ============================================
   STEP CARDS
   ============================================ */
.step-card {
    padding: 2rem 1rem;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 20px rgba(8,26,84,0.3);
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #081a54 0%, #0d2268 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.page-header-sm {
    padding: 120px 0 40px;
}

.about-image-wrapper {
    position: relative;
    padding: 2rem;
}

.about-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 2rem;
    bottom: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.about-image-card {
    position: relative;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
}

.about-stats-row {
    display: flex;
    gap: 2rem;
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
}

.offer-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.offer-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card, .contact-form-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    min-width: 0;
}

.contact-item h5,
.contact-item p {
    overflow-wrap: anywhere;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================
   REGISTRATION PAGE
   ============================================ */
.registration-step {
    animation: fadeIn 0.5s ease;
}

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

.application-type-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    height: 100%;
}

.application-type-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.application-type-card.selected {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
}

.type-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(8,26,84,0.3);
}

.type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--text-primary);
    color: var(--dark-bg);
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

.type-badge-red { background: var(--beast-red); color: white; }

.registration-form-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.btn-back {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-back:hover {
    border-color: rgba(255,255,255,0.3);
    color: var(--text-primary);
}

.form-type-badge {
    background: rgba(255,255,255,0.08);
    color: var(--text-secondary);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--glass-border);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.form-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.form-control, .form-select {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-check-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-check-input {
    background: rgba(255,255,255,0.05);
    border-color: var(--glass-border);
}

.form-check-input:checked {
    background: var(--text-primary);
    border-color: var(--text-primary);
}

.form-text {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Payment Section */
.payment-section {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.payment-info-box {
    background: rgba(8,26,84,0.3);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
}

.fee-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.payment-methods { margin-top: 1rem; }

.payment-method-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.payment-method-card:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}

.payment-method-card.selected {
    border-color: var(--text-primary);
    background: rgba(255,255,255,0.06);
}

.payment-method-card span {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.crypto-address-box {
    background: rgba(8,26,84,0.3);
    border-radius: var(--radius-sm);
    padding: 1rem;
    border: 1px solid var(--glass-border);
}

.font-monospace {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #081a54 0%, #0d2268 100%);
    padding: 2rem;
}

.auth-wrapper {
    width: 100%;
    max-width: 420px;
}

.auth-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.auth-logo {
    width: 160px;
    height: auto;
}

.auth-card .input-group-text {
    background: rgba(255,255,255,0.03);
    border-color: var(--glass-border);
    color: var(--text-muted);
}

.auth-card .form-control {
    border-left: none;
}

.admin-auth-page {
    background: linear-gradient(180deg, #081a54 0%, #0d2268 100%);
}

.admin-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.admin-access {
    text-align: center;
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-nav {
    background: rgba(8,26,84,0.9) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: static;
}

.dashboard-wrapper {
    background: var(--dark-bg);
    min-height: calc(100vh - 66px);
    padding-bottom: 3rem;
}

.welcome-banner {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    color: white;
    backdrop-filter: blur(20px);
}

.welcome-banner h2 {
    font-weight: 800;
}

.application-type-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.15);
}

.status-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.status-card:hover {
    border-color: rgba(255,255,255,0.15);
}

.status-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--warning);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-badge.approved {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-badge.suspended {
    background: rgba(255, 51, 51, 0.15);
    color: var(--danger);
    border: 1px solid rgba(255, 51, 51, 0.2);
}

.status-badge.completed {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.app-id {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dashboard-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.detail-row:last-child {
    border-bottom: none;
}

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

.detail-value {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 1.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -1.5rem;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--glass-border);
    border: 2px solid var(--dark-bg);
}

.timeline-item.completed .timeline-dot {
    background: var(--success);
}

.timeline-item.active .timeline-dot {
    background: var(--text-primary);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 4px rgba(255,255,255,0.15); }
    50% { box-shadow: 0 0 0 8px rgba(255,255,255,0.05); }
    100% { box-shadow: 0 0 0 4px rgba(255,255,255,0.15); }
}

.timeline-content h6 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    background: var(--text-primary);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ============================================
   REWARD CLAIM
   ============================================ */
.claim-card { margin-top: 1rem; }

/* Claim CTA */
.claim-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.8rem 2rem;
    flex-wrap: wrap;
}

.claim-cta-icon {
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1d3a8a 0%, #2b4da6 100%);
    border: 1px solid rgba(56,189,248,0.25);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(8,26,84,0.4);
}

.claim-cta-text { flex: 1; min-width: 220px; }

.claim-cta-text h6 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.claim-cta-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    max-width: 520px;
}

.claim-cta-btn { white-space: nowrap; }

/* Reward amount pill shown in the dashboard claim CTA */
.claim-reward-amount {
    display: inline-block;
    margin-top: 0.7rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 0.35rem 1.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

/* Reward box inside the claim wizard */
.claim-reward-box {
    max-width: 480px;
    margin: 1.3rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
}

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

.claim-reward-box-amount {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--success);
}

.claim-reward-box-title {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Claim summary row */
.claim-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
}

.claim-summary-item { display: flex; flex-direction: column; gap: 0.2rem; }

.claim-summary-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.claim-summary-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
}

/* Claim status badges */
.claim-status-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.claim-status-badge.pending_submission {
    background: rgba(148, 163, 184, 0.12);
    color: var(--text-secondary);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.claim-status-badge.under_review {
    background: rgba(245, 158, 11, 0.12);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.claim-status-badge.verification_approved {
    background: rgba(59, 130, 246, 0.12);
    color: var(--beast-blue-light);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.claim-status-badge.payment_processing {
    background: rgba(168, 85, 247, 0.12);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.claim-status-badge.paid {
    background: rgba(34, 197, 94, 0.12);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.claim-status-badge.rejected {
    background: rgba(255, 51, 51, 0.12);
    color: var(--danger);
    border: 1px solid rgba(255, 51, 51, 0.3);
}

/* Claim status tracker (horizontal stepper) */
.claim-tracker {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.claim-tracker-step {
    flex: 1;
    text-align: center;
    position: relative;
    min-width: 0;
}

.claim-tracker-step + .claim-tracker-step::before {
    content: '';
    position: absolute;
    top: 21px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: var(--glass-border);
    z-index: 1;
    transition: background 0.4s ease;
}

.claim-tracker-step.completed + .claim-tracker-step::before { background: var(--success); }
.claim-tracker-step.rejected + .claim-tracker-step::before { background: var(--glass-border); }

.claim-tracker-dot {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.6rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.claim-tracker-step.completed .claim-tracker-dot {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.claim-tracker-step.active .claim-tracker-dot {
    background: var(--text-primary);
    border-color: var(--text-primary);
    color: var(--dark-bg);
    box-shadow: 0 0 0 6px rgba(255,255,255,0.12);
    animation: pulse 2s infinite;
}

.claim-tracker-step.rejected .claim-tracker-dot {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
}

.claim-tracker-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.3;
    padding: 0 0.3rem;
}

.claim-tracker-step.completed .claim-tracker-label,
.claim-tracker-step.active .claim-tracker-label { color: var(--text-primary); }

.claim-tracker-step.rejected .claim-tracker-label { color: var(--danger); }

/* Claim wizard */
.claim-wizard-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.claim-wizard-track {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 50px;
    overflow: hidden;
}

.claim-wizard-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--text-primary), var(--text-secondary));
    border-radius: 50px;
    transition: width 0.4s ease;
}

.claim-wizard-step-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.claim-step { animation: fadeIn 0.4s ease; }

.claim-step-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(8,26,84,0.3);
}

.claim-step-icon.green {
    background: linear-gradient(135deg, #14532d 0%, #1e7a3d 100%);
    border-color: rgba(34,197,94,0.4);
}

.claim-step-icon.blue {
    background: linear-gradient(135deg, #1d3a8a 0%, #2b4da6 100%);
    border-color: rgba(59,130,246,0.4);
}

.claim-step-icon.amber {
    background: linear-gradient(135deg, #78350f 0%, #a16207 100%);
    border-color: rgba(245,158,11,0.4);
}

.claim-step-desc { max-width: 480px; }

.claim-process-list {
    max-width: 520px;
    margin: 1.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.claim-process-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.claim-process-num {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--text-primary);
}

/* Claim ID box */
.claim-id-box {
    max-width: 520px;
    margin: 1.5rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.04);
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 1.2rem;
}

.claim-id {
    font-family: 'Courier New', monospace;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.claim-note {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    flex-wrap: wrap;
    min-width: 0;
    max-width: 520px;
    margin: 0 auto;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.claim-note svg { flex-shrink: 0; margin-top: 2px; }

/* Upload zones */
.upload-zone {
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    padding: 1.8rem 1rem;
    text-align: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    background: rgba(255,255,255,0.02);
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.upload-zone-text {
    margin: 0.5rem 0 0.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.upload-zone-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.upload-preview {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.06);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.upload-preview img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
}

.upload-preview span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.upload-remove {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(255, 51, 51, 0.12);
    border: 1px solid rgba(255, 51, 51, 0.3);
    border-radius: 50%;
    color: var(--danger);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.upload-remove:hover {
    background: rgba(255, 51, 51, 0.2);
}

.claim-accepted {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
}

.claim-accepted-title {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 0.3rem;
}

.claim-accepted-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

.claim-pay-card { border-radius: var(--radius); }

/* Claim review summary */
.claim-review {
    max-width: 560px;
    margin: 1.5rem auto 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
}

.claim-review-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.claim-review-row:last-child { border-bottom: none; }

.claim-review-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.claim-review-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: right;
}

/* Admin claims table */
.payout-details { font-size: 0.8rem; }

/* Per-person reward amount input in admin claims table */
.reward-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.reward-input-prefix {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
}

.reward-amount-input {
    max-width: 130px;
    padding: 0.35rem 0.6rem;
    font-size: 0.85rem;
    min-width: 90px;
}

.reward-title-input {
    max-width: 180px;
    padding: 0.35rem 0.6rem;
    font-size: 0.85rem;
    min-width: 140px;
}

/* Admin claim detail modal */
.claim-detail-section {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--glass-border);
}

.claim-detail-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.claim-detail-section h6 {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.claim-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
    font-size: 0.9rem;
}

.claim-detail-row .label {
    color: var(--text-muted);
}

.claim-detail-row .value {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
}

.claim-detail-reward {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--success);
    border-radius: 50px;
    padding: 0.35rem 1.1rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Responsive claim tracker */
@media (max-width: 768px) {
    .claim-cta { padding: 1.2rem; text-align: center; justify-content: center; }
    .claim-cta-btn { width: 100%; }
    .claim-id { font-size: 1.2rem; }
    .claim-tracker { flex-wrap: wrap; gap: 1rem 0; }
    .claim-tracker-step { flex: 1 1 33%; }
    .claim-tracker-step + .claim-tracker-step::before { display: none; }
}

/* ============================================
   PENDING REVIEW PAGE
   ============================================ */
.pending-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #081a54 0%, #0d2268 100%);
    padding: 2rem;
}

.pending-card {
    background: var(--glass);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.pending-animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.pending-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--text-primary);
    animation: spin 1.5s linear infinite;
}

.pending-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: var(--text-muted);
    animation: spin 1s linear infinite reverse;
}

.pending-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: var(--text-secondary);
    animation: spin 2s linear infinite;
}

.pending-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    color: var(--text-primary);
}

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

.pending-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pending-subtitle {
    color: var(--warning);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.pending-message {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pending-info {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.pending-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.pending-info-item:last-child {
    border-bottom: none;
}

.pending-info-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pending-info-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.pending-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

.pending-dots {
    display: inline-flex;
    gap: 4px;
    margin-left: 4px;
}

.pending-dots span {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite;
}

.pending-dots span:nth-child(2) { animation-delay: 0.2s; }
.pending-dots span:nth-child(3) { animation-delay: 0.4s; }

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

/* ============================================
   CELEBRATION OVERLAY
   ============================================ */
.celebration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#confettiCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.celebration-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    animation: celebrationIn 0.8s ease;
}

@keyframes celebrationIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.celebration-badge {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: badgeBounce 0.6s ease;
}

@keyframes badgeBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.celebration-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--success) 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.celebration-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.celebration-message {
    color: var(--text-muted);
    font-size: 1rem;
}

/* MrBeast Card */
.mrbeast-card {
    width: 380px;
    max-width: 90vw;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, #0d2268 0%, #122a7a 50%, #0b1c5e 100%);
    border-radius: 20px;
    padding: 2px;
    box-shadow: 0 20px 60px rgba(255,255,255,0.05), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
    animation: cardFloat 3s ease-in-out infinite;
}

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

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.03) 50%,
        transparent 70%
    );
    animation: shine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.card-inner {
    background: linear-gradient(135deg, #061342 0%, #0d2268 100%);
    border-radius: 18px;
    padding: 1.8rem;
    position: relative;
    z-index: 1;
}

.card-header-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.card-logo svg {
    width: 50px;
    height: 50px;
}

.card-title-text h4 {
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
}

.card-title-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: 1rem 0;
}

.card-body-section {
    margin-bottom: 1rem;
}

.card-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

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

.card-field span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.approved-badge {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.card-footer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.card-valid {
    text-align: right;
}

.card-valid span:first-child {
    display: block;
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-valid span:last-child {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 700;
}

.card-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: rgba(255,255,255,0.1);
    filter: blur(40px);
    opacity: 0.3;
    border-radius: 50%;
}

/* Suspended Overlay */
.suspended-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suspended-content {
    text-align: center;
    padding: 2rem;
}

.suspended-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: rgba(8,26,84,0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 1000;
    transition: var(--transition);
}

.admin-sidebar.collapsed {
    width: 70px;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.sidebar-logo {
    width: 140px;
    height: auto;
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-link:hover, .sidebar-link.active {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
    border-left-color: var(--text-primary);
}

.sidebar-footer {
    padding: 1rem 0;
    border-top: 1px solid var(--glass-border);
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    background: var(--dark-bg);
    min-height: 100vh;
    min-width: 0; /* allow flex child to shrink so wide tables scroll inside, not the page */
}

.admin-topbar {
    background: rgba(8,26,84,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.sidebar-toggle {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-toggle:hover {
    border-color: rgba(255,255,255,0.2);
    color: var(--text-primary);
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.08);
    color: var(--text-secondary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--glass-border);
}

.admin-content {
    padding: 1.5rem;
}

.content-header {
    margin-bottom: 1.5rem;
}

.content-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.admin-stat-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.admin-stat-card:hover {
    border-color: rgba(255,255,255,0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.stat-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-table {
    color: var(--text-secondary);
    margin: 0;
}

.admin-table thead th {
    background: rgba(255,255,255,0.03);
    border-bottom: 2px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem;
    white-space: nowrap;
}

.admin-table tbody td {
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem;
    vertical-align: middle;
    font-size: 0.9rem;
}

.admin-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}

.user-status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.user-status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.user-status-badge.approved {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.user-status-badge.suspended {
    background: rgba(255, 51, 51, 0.1);
    color: var(--danger);
    border: 1px solid rgba(255, 51, 51, 0.15);
}

.user-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.user-type-badge.video {
    background: rgba(255,255,255,0.06);
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.1);
}

.user-type-badge.games {
    background: rgba(255, 51, 51, 0.08);
    color: var(--beast-red-light);
    border: 1px solid rgba(255, 51, 51, 0.15);
}

.action-btns {
    display: flex;
    gap: 0.3rem;
}

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.action-btn:hover {
    border-color: rgba(255,255,255,0.2);
    color: var(--text-primary);
}

.action-btn.approve-btn:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.action-btn.suspend-btn:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--warning);
    color: var(--warning);
}

.action-btn.delete-btn:hover {
    background: rgba(255, 51, 51, 0.1);
    border-color: var(--danger);
    color: var(--danger);
}

.search-box {
    position: relative;
    min-width: 250px;
}

.search-box svg {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    z-index: 2;
}

.search-box input {
    padding-left: 2.5rem;
}

.breakdown-item {
    padding: 0.5rem 0;
}

.revenue-box {
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    margin-top: 1rem;
}

.revenue-icon {
    width: 50px;
    height: 50px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.danger-zone {
    background: rgba(255, 51, 51, 0.03);
    border: 1px solid rgba(255, 51, 51, 0.15);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 0.3rem;
}

.page-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.page-btn:hover, .page-btn.active {
    background: var(--text-primary);
    border-color: var(--text-primary);
    color: var(--dark-bg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(8,26,84,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}

.footer-logo {
    width: 140px;
    height: auto;
}

.footer h5 {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--text-primary);
    border-color: var(--text-primary);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: var(--glass-border);
    margin: 2rem 0;
}

/* ============================================
   MODAL
   ============================================ */
.modal-content {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.modal-header {
    border-bottom: 1px solid var(--glass-border);
}

.modal-footer {
    border-top: 1px solid var(--glass-border);
}

.btn-close {
    filter: invert(1);
}

/* ============================================
   ALERTS / TOASTS
   ============================================ */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.beast-toast {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: var(--shadow-lg);
    animation: toastIn 0.3s ease;
    min-width: 300px;
}

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

.beast-toast.success { border-left: 4px solid var(--success); }
.beast-toast.error { border-left: 4px solid var(--danger); }
.beast-toast.warning { border-left: 4px solid var(--warning); }
.beast-toast.info { border-left: 4px solid var(--text-primary); }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Dim backdrop behind the mobile admin sidebar drawer */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Desktop: collapsed icon-only rail */
.admin-sidebar.collapsed .sidebar-header {
    padding: 1.5rem 0.6rem;
}

.admin-sidebar.collapsed .sidebar-logo {
    width: 46px;
}

.admin-sidebar.collapsed .sidebar-link {
    justify-content: center;
    padding: 0.8rem 0;
    gap: 0;
    font-size: 0;
}

.admin-sidebar.collapsed .sidebar-link svg {
    flex-shrink: 0;
}

.admin-sidebar.collapsed .sidebar-footer {
    padding: 1rem 0;
}

@media (max-width: 1199px) {
    .hero-stats .stat-number {
        font-size: 1.9rem;
    }
}

@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
        box-shadow: none;
        width: 280px;
    }
    .admin-sidebar.collapsed {
        width: 280px;
    }
    .admin-sidebar.show {
        transform: translateX(0);
        box-shadow: 16px 0 48px rgba(0, 0, 0, 0.45);
    }
    .admin-main {
        margin-left: 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .about-stats-row {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .mrbeast-card {
        width: 100%;
    }
    .admin-stat-card {
        padding: 1rem;
    }
    .search-box {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    /* Hero */
    .hero-content {
        padding-top: 56px;
    }
    .hero-badge {
        font-size: 0.68rem;
        padding: 0.5rem 1rem;
        letter-spacing: 1.5px;
    }
    .hero-title {
        font-size: 2.1rem;
        letter-spacing: -0.5px;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 !important;
    }
    .hero-stats {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }
    .stat-number {
        font-size: 1.55rem;
    }
    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    .scroll-indicator {
        bottom: 1.1rem;
    }

    /* Page headers */
    .page-header {
        padding: 108px 0 40px;
    }
    .page-header h1 {
        font-size: 1.7rem;
    }

    /* Cards & dashboard */
    .welcome-banner {
        padding: 1.4rem;
    }
    .dashboard-card,
    .registration-form-card,
    .contact-info-card,
    .contact-form-card,
    .offer-card,
    .feature-card,
    .application-type-card {
        padding: 1.5rem 1.2rem;
    }
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }
    .detail-value {
        text-align: left;
    }

    /* Claim wizard */
    .claim-wizard-progress {
        gap: 0.5rem;
    }
    .claim-wizard-step-label {
        font-size: 0.7rem;
    }
    .payment-methods.d-flex {
        flex-direction: column;
    }
    .payment-methods .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Auth & pending pages */
    .auth-page,
    .pending-page {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 2.5rem;
    }
    .auth-card,
    .pending-card {
        padding: 2rem 1.4rem;
    }

    /* Toasts */
    .toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
    }
    .beast-toast {
        min-width: 0;
        width: 100%;
        font-size: 0.88rem;
    }

    /* Admin panel */
    .admin-content {
        padding: 1rem;
    }
    .content-header h2 {
        font-size: 1.3rem;
    }
    .admin-card {
        padding: 1.2rem;
    }
    .admin-table tbody td {
        white-space: nowrap;
        padding: 0.75rem 0.6rem;
    }
    .card-header-flex {
        align-items: stretch;
    }
    .card-header-flex .btn {
        width: 100%;
    }
    .about-stats-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.5rem;
    }

    /* Heavy Bootstrap gutters cause horizontal overflow on tiny screens */
    .row.g-5 {
        --bs-gutter-x: 1.5rem;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.d-none { display: none !important; }

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.2);
}

::selection {
    background: var(--text-primary);
    color: var(--dark-bg);
}

/* ============================================
   CONTRAST & READABILITY FIXES
   (bright text so every word is visible on the blue theme)
   ============================================ */
/* Bootstrap's dim 50%-white helper is too faint on near-black — brighten it */
.text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Bootstrap .text-muted is a gray-blue that washes out on black — use the theme's brighter muted tone */
body .text-muted {
    color: var(--text-muted) !important;
}

/* ============================================
   HERO VIDEO — SHARP & FULL-COVER ON ALL SCREENS
   ============================================ */
/* Local <video>: absolute cover that never letterboxes, no upscaling artifacts */
.hero-video-el {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.02);
}

/* YouTube fallback: slight over-scale hides 1px edge seams (no blurry gaps on mobile) */
.hero-video-iframe {
    transform: translate(-50%, -50%) scale(1.02);
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    /* Mobile: keep the hero a true full-viewport stage, video always centered & covering */
    .hero-section {
        min-height: 100svh;
        height: 100svh;
    }
    .hero-video-iframe,
    .hero-video-el {
        transform: translate(-50%, -50%) scale(1.06);
    }
    /* Slightly stronger overlay at the bottom so hero copy stays readable over bright scenes */
    .video-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.82) 100%);
    }
}