/* ==========================================================================
   ANIME EXPEDITIONS - PREMIUM ROBLOX GAME UI STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Rajdhani:wght@600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
    /* Roblox Game Palette */
    --bg-dark: #12141d;
    --bg-panel: #1a1d2b;
    --bg-panel-light: #24293e;
    --bg-card: #202436;
    
    /* Vibrant Roblox Accent Colors */
    --accent-red: #ff3b30;
    --accent-red-shadow: #b31d15;
    --accent-blue: #007aff;
    --accent-blue-shadow: #004fb3;
    --accent-gold: #ffcc00;
    --accent-gold-shadow: #cc9900;
    --accent-green: #34c759;
    --accent-green-shadow: #1b8a37;
    --accent-purple: #af52de;

    /* Rarities */
    --rarity-secret: #ff2a5f;
    --rarity-exclusive: #00e5ff;
    --rarity-mythic: #b259ff;
    --rarity-legendary: #ffcc00;
    --rarity-epic: #ff4df2;
    --rarity-rare: #3b82f6;

    /* Text */
    --text-main: #ffffff;
    --text-muted: #8e95b0;
    --text-dim: #636b85;

    /* Fonts */
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* 3D Borders & Shadows */
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-pill: 9999px;
    --panel-border: 2px solid #2e354f;
    --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* BASE RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body.anime-game-theme {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* HERO CANVAS & GLOW ORBS */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}
.orb-1 { top: -100px; left: 10%; width: 400px; height: 400px; background: var(--accent-blue); }
.orb-2 { top: 200px; right: 5%; width: 450px; height: 450px; background: var(--accent-purple); }
.orb-3 { bottom: 100px; left: 20%; width: 500px; height: 500px; background: var(--accent-red); }

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(26, 29, 43, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid #2e354f;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(18, 20, 29, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}
.logo-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--accent-gold);
    overflow: hidden;
    background: #000;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}
.logo-avatar-img img { width: 100%; height: 100%; object-fit: contain; }

.logo-text { display: flex; flex-direction: column; }
.brand-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}
.brand-title .highlight { color: var(--accent-gold); }
.brand-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.live-dot { font-size: 0.5rem; color: var(--accent-green); animation: pulse 1.5s infinite; }

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.nav-menu { display: flex; gap: 24px; }
.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link:hover, .nav-link.active {
    color: #fff;
    background: var(--bg-panel-light);
    border: 1px solid #3d4666;
}

.nav-actions { display: flex; align-items: center; gap: 12px; }
.sfx-toggle {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--bg-panel-light);
    border: 2px solid #3d4666;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.sfx-toggle:hover { color: #fff; border-color: var(--accent-blue); transform: translateY(-2px); }
.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* 3D ROBLOX BUTTON SYSTEM */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
    border: none;
    position: relative;
    user-select: none;
}
.btn:active {
    transform: translateY(4px) !important;
    box-shadow: none !important;
}

.btn-primary {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 5px 0 var(--accent-blue-shadow);
}
.btn-primary:hover {
    background: #1a88ff;
    transform: translateY(-2px);
    box-shadow: 0 7px 0 var(--accent-blue-shadow);
}

.btn-accent {
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 5px 0 var(--accent-red-shadow);
}
.btn-accent:hover {
    background: #ff5247;
    transform: translateY(-2px);
    box-shadow: 0 7px 0 var(--accent-red-shadow);
}

.btn-sm { padding: 8px 16px; font-size: 0.95rem; border-radius: var(--radius-sm); }
.btn-xl { padding: 18px 36px; font-size: 1.3rem; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }

.btn-pulse {
    animation: btnGlowPulse 2s infinite alternate;
}
@keyframes btnGlowPulse {
    0% { box-shadow: 0 5px 0 var(--accent-red-shadow), 0 0 10px rgba(255, 59, 48, 0.4); }
    100% { box-shadow: 0 5px 0 var(--accent-red-shadow), 0 0 25px rgba(255, 59, 48, 0.8); }
}

.btn-text { display: flex; flex-direction: column; text-align: left; line-height: 1.1; }
.main-text { font-size: 1.2rem; font-weight: 800; }
.sub-text { font-size: 0.75rem; font-weight: 600; opacity: 0.9; }

/* HERO SECTION */
.hero {
    padding: 160px 24px 80px 24px;
    position: relative;
    z-index: 10;
    text-align: center;
}
.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-game-avatar {
    margin-bottom: 24px;
    display: inline-block;
    position: relative;
}
.avatar-frame-gold {
    width: 110px;
    height: 110px;
    border-radius: 24px;
    background: var(--bg-panel);
    border: 4px solid var(--accent-gold);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.4), inset 0 0 15px rgba(255, 204, 0, 0.2);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.main-avatar-img { width: 100%; height: 100%; object-fit: contain; border-radius: 16px; }

.game-ver-tag {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 0 var(--accent-green-shadow);
    white-space: nowrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(36, 41, 62, 0.8);
    border: 2px solid #3d4666;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.badge-pulse { color: var(--accent-gold); }

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.text-gradient {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 36px auto;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* SECTION COMMONS */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 10;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }

.section-tag {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 8px;
}

/* LOCKED PROMO CODES */
.codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.game-ui-card {
    background: var(--bg-panel);
    border: var(--panel-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.game-ui-card:hover {
    transform: translateY(-4px);
    border-color: #4a5680;
}
.highlight-code {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 30px rgba(255, 204, 0, 0.15);
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.code-badge {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}
.mythic-code-badge { background: rgba(255, 204, 0, 0.2); color: var(--accent-gold); border: 1px solid var(--accent-gold); }
.active-badge { background: rgba(0, 122, 255, 0.2); color: var(--accent-blue); border: 1px solid var(--accent-blue); }

.code-exp { font-size: 0.8rem; color: var(--text-dim); font-weight: 600; }

.locked-code-box {
    background: var(--bg-dark);
    border: 2px dashed #2e354f;
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}
.code-blur-wrapper { position: relative; width: 100%; }
.blurred-text {
    font-family: monospace;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    filter: blur(6px);
    color: var(--text-muted);
    user-select: none;
}
.lock-overlay-tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.code-reward {
    font-size: 0.95rem;
    color: var(--text-muted);
    background: rgba(36, 41, 62, 0.5);
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid #2e354f;
    margin-top: auto;
}
.code-reward strong { color: #fff; }

/* ROSTER UNITS SECTION */
.roster-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.tab-btn {
    padding: 8px 20px;
    background: var(--bg-panel);
    border: 2px solid #2e354f;
    color: var(--text-muted);
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}
.tab-btn:hover { color: #fff; border-color: #4a5680; }
.tab-btn.active {
    background: var(--accent-blue);
    color: #fff;
    border-color: var(--accent-blue);
    box-shadow: 0 4px 0 var(--accent-blue-shadow);
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.champ-card {
    background: var(--bg-panel);
    border: var(--panel-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    transition: all 0.25s ease;
    position: relative;
}
.champ-card:hover {
    transform: translateY(-6px);
    border-color: #4a5680;
}

.champ-banner {
    height: 170px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #141724;
    overflow: hidden;
}
.champ-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background: radial-gradient(circle, #fff 10%, transparent 70%);
}

/* RARITY BACKGROUND GLOWS */
.secret-bg::before { background: radial-gradient(circle, var(--rarity-secret) 20%, transparent 80%); opacity: 0.3; }
.exclusive-bg::before { background: radial-gradient(circle, var(--rarity-exclusive) 20%, transparent 80%); opacity: 0.3; }
.mythic-bg::before { background: radial-gradient(circle, var(--rarity-mythic) 20%, transparent 80%); opacity: 0.3; }
.legendary-bg::before { background: radial-gradient(circle, var(--rarity-legendary) 20%, transparent 80%); opacity: 0.3; }
.epic-bg::before { background: radial-gradient(circle, var(--rarity-epic) 20%, transparent 80%); opacity: 0.3; }
.rare-bg::before { background: radial-gradient(circle, var(--rarity-rare) 20%, transparent 80%); opacity: 0.3; }

.unit-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.6));
    transition: transform 0.3s ease;
}
.champ-card:hover .unit-img { transform: scale(1.08); }

.rarity-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.secret-tag { background: var(--rarity-secret); color: #fff; }
.exclusive-tag { background: var(--rarity-exclusive); color: #000; }
.mythic-tag { background: var(--rarity-mythic); color: #fff; }
.legendary-tag { background: var(--rarity-legendary); color: #000; }
.epic-tag { background: var(--rarity-epic); color: #fff; }
.rare-tag { background: var(--rarity-rare); color: #fff; }

.champ-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: var(--bg-panel);
    border-top: 1px solid #2e354f;
}
.champ-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4px;
}
.champ-anime {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 600;
    margin-bottom: 16px;
}

.claim-unit-btn {
    width: 100%;
    padding: 10px;
    background: var(--bg-panel-light);
    border: 2px solid #3d4666;
    color: #fff;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.claim-unit-btn:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #000;
    box-shadow: 0 4px 0 var(--accent-green-shadow);
    transform: translateY(-2px);
}

/* MODAL OVERLAY & CARD */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 18, 0.85);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-panel);
    border: 3px solid #3d4666;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--bg-panel-light);
    border: 2px solid #3d4666;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}
.modal-close:hover { color: #fff; background: var(--accent-red); border-color: var(--accent-red); }

.modal-step { padding: 24px 20px; display: none; }
.modal-step.active { display: block; animation: fadeIn 0.3s ease; }

.modal-header { margin-bottom: 24px; }
.modal-badge {
    display: inline-block;
    background: rgba(0, 122, 255, 0.2);
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}
.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}
.modal-header p { color: var(--text-muted); font-size: 0.95rem; margin-top: 4px; }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-main);
}

.unit-select-input, .input-wrapper input {
    width: 100%;
    padding: 14px;
    background: var(--bg-dark);
    border: 2px solid #2e354f;
    border-radius: var(--radius-md);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
}
.unit-select-input:focus, .input-wrapper input:focus {
    border-color: var(--accent-blue);
}

.platform-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.platform-btn {
    padding: 12px;
    background: var(--bg-dark);
    border: 2px solid #2e354f;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.platform-btn.active, .platform-btn:hover {
    background: var(--bg-panel-light);
    border-color: var(--accent-blue);
    color: #fff;
}

/* GENERATOR STEP 2 */
.generator-status-box {
    background: var(--bg-dark);
    border: 2px solid #2e354f;
    border-radius: var(--radius-md);
    padding: 24px;
}
.user-display {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--accent-gold);
}

.progress-bar-outer {
    height: 12px;
    background: #202436;
    border-radius: var(--radius-pill);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid #3d4666;
}
.progress-bar-inner {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    border-radius: var(--radius-pill);
    transition: width 0.4s ease;
}

.log-output {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-height: 120px;
    overflow-y: auto;
}

/* STEP 3 VERIFICATION & OFFERS */
.urgency-top-banner {
    background: rgba(255, 59, 48, 0.2);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 8px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.text-accent { color: var(--accent-red); }

.verification-hero-card { display: flex; flex-direction: column; gap: 16px; }
.unit-preview-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-dark);
    border: 2px solid #2e354f;
    padding: 16px;
    border-radius: var(--radius-md);
}
.preview-img-glow {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background: var(--bg-panel);
    border: 2px solid var(--accent-gold);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preview-img-glow img { width: 100%; height: 100%; object-fit: contain; }
.preview-info h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; }
.unit-status-tag { font-size: 0.75rem; color: var(--accent-green); font-weight: 700; }
.code-preview-pill { font-size: 0.9rem; color: var(--text-muted); }
.code-glow { color: var(--accent-gold); font-weight: 800; }

.account-recap-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--bg-panel-light);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}
.recap-green { color: var(--accent-green); }

.cpa-hero-box {
    background: transparent;
    border: none;
    padding: 0;
    margin: 4px 0;
}
.cpa-guarantee-badge {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    text-align: center;
}

.offer-feed-container { display: flex; flex-direction: column; gap: 8px; }
.cpa-offer-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-dark);
    border: 2px solid #2e354f;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
}
.cpa-offer-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-2px);
    background: var(--bg-panel-light);
}
.cpa-offer-left { display: flex; align-items: center; gap: 10px; }
.cpa-offer-icon { font-size: 1.3rem; color: var(--accent-green); flex-shrink: 0; }
.cpa-offer-details { display: flex; flex-direction: column; }
.cpa-offer-title { font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem; line-height: 1.2; }
.cpa-offer-sub { font-size: 0.75rem; color: var(--text-muted); }

.verification-footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 8px;
}
.v-live-status { color: var(--accent-blue); font-weight: 700; }
.trust-badges { display: flex; gap: 12px; }

/* TOAST & LIVE CLAIM POPUPS */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-panel);
    border: 2px solid var(--accent-green);
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3000;
}
.toast.active { transform: translateY(0); opacity: 1; }
.toast-icon { color: var(--accent-green); font-size: 1.2rem; }

.live-claim-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--bg-panel);
    border: 2px solid var(--accent-gold);
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    transform: translateX(-150%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2900;
    max-width: 360px;
}
.live-claim-popup.active { transform: translateX(0); opacity: 1; }
.popup-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    overflow: hidden;
    background: #000;
}
.popup-avatar img { width: 100%; height: 100%; object-fit: contain; }
.popup-info { display: flex; flex-direction: column; line-height: 1.2; overflow: hidden; }
.popup-user { font-family: var(--font-heading); font-weight: 800; font-size: 1rem; color: var(--accent-gold); }
.popup-action { font-size: 0.85rem; color: #fff; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.popup-time { font-size: 0.75rem; color: var(--text-dim); }

/* FOOTER */
.footer {
    background: var(--bg-panel);
    border-top: 3px solid #2e354f;
    padding: 60px 24px 30px 24px;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}
.footer-desc { color: var(--text-muted); margin-top: 12px; font-size: 0.95rem; }
.footer-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; }
.footer-links, .footer-info { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-info li { color: var(--text-muted); font-size: 0.9rem; }

.footer-bottom {
    border-top: 1px solid #2e354f;
    margin-top: 40px;
    padding-top: 24px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
}
.disclaimer { margin-top: 6px; font-size: 0.75rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-title { font-size: 3rem; }
    .nav-menu { display: none; }
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-panel);
        border-bottom: 3px solid #2e354f;
        padding: 20px;
    }
    .mobile-toggle { display: block; }
    .footer-container { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .navbar { padding: 10px 0; }
    .nav-container { padding: 0 12px; gap: 8px; }
    .logo { gap: 8px; }
    .logo-avatar-img { width: 36px; height: 36px; }
    .brand-title { font-size: 1.05rem; }
    .brand-sub { display: none; }
    .nav-actions { gap: 6px; }
    .sfx-toggle { width: 34px; height: 34px; font-size: 0.95rem; }
    .nav-actions .btn { padding: 6px 10px; font-size: 0.8rem; border-radius: var(--radius-sm); }
    .mobile-toggle { font-size: 1.25rem; }

    .hero { padding: 100px 16px 40px 16px; }
    .avatar-frame-gold { width: 90px; height: 90px; border-width: 3px; border-radius: 18px; }
    .hero-badge {
        flex-direction: column;
        gap: 4px;
        padding: 8px 14px;
        font-size: 0.78rem;
        width: 100%;
        max-width: 340px;
    }
    .hero-title { font-size: 1.75rem; line-height: 1.15; margin-bottom: 14px; }
    .hero-subtitle { font-size: 0.92rem; margin-bottom: 24px; }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .btn-xl { padding: 14px 20px; font-size: 1rem; width: 100%; }

    .section-container { padding: 50px 16px; }
    .section-title { font-size: 2rem; }
    .roster-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .champ-banner { height: 130px; padding: 10px; }
    .champ-body { padding: 12px; }
    .champ-name { font-size: 0.95rem; }
    .platform-selector { grid-template-columns: 1fr; }
    .live-claim-popup { bottom: auto; top: 75px; left: 50%; transform: translateX(-50%) translateY(-150%); max-width: 90%; }
    .live-claim-popup.active { transform: translateX(-50%) translateY(0); }
}
