:root {
    --bg-dark: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-gold: #D4AF37;
    --accent-red: #D32F2F;
    --accent-blue: #1976D2;
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    background-image: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #0a0a0a 100%);
}

.background-glob {
    position: absolute;
    top: -20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 80px;
    /* Space for fixed navbar */
}

/* MAIN NAVIGATION BAR */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-brand {
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-btn {
    padding: 0.5rem 1.2rem;
    font-family: 'Teko', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.05);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-btn.mission {
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    color: #000;
    border: 1px solid #fff;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    font-weight: bold;
}

.nav-btn.tracker {
    border-color: #00ff00;
    color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
}

.nav-btn.scanner {
    border-color: #aaa;
    color: #ccc;
}

.nav-btn.war-room {
    border-color: #ff4444;
    color: #ff4444;
    background: rgba(255, 0, 0, 0.1);
}

.nav-btn.recovery {
    border-color: #00c3ff;
    color: #00c3ff;
    background: rgba(0, 195, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 195, 255, 0.2);
}

.main-header {
    text-align: center;
}

.event-title {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.date-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fight-card,
.fighters-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
}

.fighter-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fighter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.fighter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.red-corner::before {
    background: var(--accent-red);
    box-shadow: 0 0 20px var(--accent-red);
}

.blue-corner::before {
    background: var(--accent-blue);
    box-shadow: 0 0 20px var(--accent-blue);
}

.fighter-status {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.champion {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.challenger {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fighter-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fighter-name {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 0.9;
    text-align: center;
    margin-bottom: 0.5rem;
}

.fighter-name .lastname {
    font-size: 4.5rem;
    font-weight: 700;
}

.fighter-nickname {
    color: var(--accent-gold);
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.fighter-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    text-align: center;
}

.stat-box .label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.stat-box .value {
    font-size: 1.2rem;
    font-weight: 600;
}

.detailed-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.info-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.info-value {
    font-weight: 600;
    text-align: right;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #222;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.prediction-section {
    background: linear-gradient(90deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.8) 50%, rgba(20, 20, 20, 0) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem;
    text-align: center;
}

.prediction-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.winner-declare {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.winner-name {
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.method {
    margin-bottom: 1rem;
    color: #ddd;
}

.rationale {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 900px) {

    .fight-card,
    .fighters-comparison {
        grid-template-columns: 1fr;
    }

    .vs-divider {
        margin: 2rem 0;
    }

    .main-title {
        font-size: 2.5rem;
    }
}

/* Gym Deep Dive Section */
.gym-comparison-section {
    width: 100%;
    margin-top: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.gym-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.gym-deep-dive {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gym-header h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.red-gym .gym-header h3 {
    color: var(--accent-red);
}

.blue-gym .gym-header h3 {
    color: var(--accent-blue);
}

.location {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gym-detail-box {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.detail-label {
    font-size: 0.7rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.detail-value.highlight {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
}

.fighter-list {
    list-style: none;
    padding: 0;
}

.fighter-list li {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 0.4rem;
    display: flex;
    justify-content: space-between;
}

.fighter-list li .org {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.gym-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.gym-desc strong {
    color: #fff;
}


/* Technical War Room Section */
.technical-analysis-section {
    width: 100%;
    margin-top: 1rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tech-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.tech-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.01),
            rgba(255, 255, 255, 0.01) 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 20px);
    pointer-events: none;
    z-index: 0;
}

.red-tech {
    border-left: 4px solid var(--accent-red);
}

.blue-tech {
    border-left: 4px solid var(--accent-blue);
}

.tech-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.tech-header h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    margin-bottom: 0.25rem;
}

.tech-subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tech-block {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.tech-block:last-child {
    margin-bottom: 0;
}

.tech-block h5 {
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 2px solid var(--accent-gold);
    padding-left: 0.5rem;
}

.tech-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.25rem;
}

.tech-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.8rem;
}

.tech-val {
    color: #eee;
    text-align: right;
    font-family: 'Consolas', monospace;
}

.highlight-blue {
    color: #64b5f6;
    font-weight: bold;
}

.tech-desc {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 4px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}


/* Social Links Section */
.social-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.social-icon {
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--accent-gold);
}


/* Fighter Photos */
.fighter-photo {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.fighter-photo:hover {
    filter: brightness(1.1);
}

/* Fight History Section */
.fight-history-section {
    width: 100%;
    margin-top: 1rem;
}

.history-table-container {
    width: 100%;
    overflow-x: auto;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: #eee;
}

.history-table th {
    text-align: left;
    padding: 0.75rem 0.5rem;
    color: var(--text-secondary);
    font-size: 0.7rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.history-table td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.history-table tr:last-child td {
    border-bottom: none;
}

.history-table .win {
    color: #4caf50;
    font-weight: 700;
}


/* Face Off Banner */
.faceoff-container {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dashbboard / Event Hub Styles */
.event-hub-header {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.hub-title {
    font-family: 'Teko', sans-serif;
    font-size: 4rem;
    background: linear-gradient(45deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.9;
    margin-bottom: 0.5rem;
}

.hub-subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.card-section-title {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-gold);
}

.fight-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fight-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 100px 1fr auto;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
}

.fight-row:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(5px);
    border-color: var(--accent-gold);
}

.fight-row.main-event {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0));
    border: 1px solid var(--accent-gold);
    padding: 2.5rem 1.5rem;
}

.fighter-name-hub {
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
}

.fighter-name-hub.red {
    text-align: right;
    color: #ff4d4d;
}

.fighter-name-hub.blue {
    text-align: left;
    color: #4d94ff;
}

.vs-badge {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.fight-meta {
    text-align: right;
    min-width: 120px;
}

.weight-class {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fight-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.status-live {
    background: #4CAF50;
    color: #000;
}

.status-upcoming {
    background: #333;
    color: #fff;
    border: 1px solid #555;
}

.analyze-btn {
    background: var(--accent-gold);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    margin-left: 2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.fight-row:hover .analyze-btn {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .fight-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .fighter-name-hub.red,
    .fighter-name-hub.blue {
        text-align: center;
    }

    .fight-meta {
        text-align: center;
        margin-top: 1rem;
    }

    .analyze-btn {
        opacity: 1;
        transform: none;
        margin: 1rem auto 0;
        display: inline-block;
    }
}

/* Fighter Image Placeholders - FIXED */
.fighter-image-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.red-bg {
    background: linear-gradient(135deg, var(--accent-red), #500);
}

.blue-bg {
    background: linear-gradient(135deg, var(--accent-blue), #003c8f);
}

.placeholder-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 0.9;
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    text-transform: uppercase;
}

/* Faceoff Image Container - Widescreen Fix */
.faceoff-container {
    width: 100%;
    max-width: 800px;
    margin: 1rem auto 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background: #000;
}

.faceoff-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* AGENT 22 STYLES */
.agent-btn-container {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    z-index: 10;
}

.agent22-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #000;
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    padding: 1rem 3rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.agent22-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

/* Agent 22 Modal */
.agent-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.agent-modal.active {
    display: flex;
}

.modal-content {
    background-color: #1a1a1a;
    margin: auto;
    padding: 2rem;
    border: 1px solid var(--accent-gold);
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    /* SCROLL FIXES */
    max-height: 90vh;
    /* Prevent it from being taller than screen */
    overflow-y: auto;
    /* Enable internal scrolling */
    display: flex;
    flex-direction: column;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #111;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}


.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--accent-gold);
    text-decoration: none;
    cursor: pointer;
}

.agent-form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.agent-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.agent-input,
.agent-select {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
}

.agent-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-gold);
    color: #000;
    border: none;
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.agent-btn:hover {
    background: #fff;
}

/* RESULTS PANEL */
.result-panel {
    display: none;
    background: #000;
    padding: 1.5rem;
    border: 1px solid #333;
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #222;
    padding-bottom: 5px;
}

.result-label {
    color: #888;
}

.result-val {
    color: #fff;
    font-weight: bold;
}

.result-val.highlight {
    color: var(--accent-gold);
}

.recommendation-box {
    margin-top: 1rem;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--accent-gold);
}

.rec-title {
    color: var(--accent-gold);
    font-family: 'Teko';
    font-size: 1.5rem;
}

.rec-action {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
}

/* AGENT 22 PREMIUM MODULES (APP STYLE) */
.agent-special-section,
.parlay-section {
    margin: 2rem 0 4rem 0;
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.agent-special-section {
    border: 1px solid var(--accent-gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.agent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.agent-title-block h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 0;
    line-height: 1;
    color: var(--accent-gold);
}

.agent-title-block p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 1px;
}

.verified-badge {
    background: var(--accent-gold);
    color: black;
    padding: 0.4rem 1rem;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 4px;
    font-family: var(--font-body);
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.bet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.bet-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.bet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.bet-card.green-lock {
    border-left: 4px solid #4CAF50;
}

.bet-card.gold-lock {
    border-left: 4px solid var(--accent-gold);
}

.bet-card.red-lock {
    border-left: 4px solid #ff4444;
}

.bet-card.blue-lock {
    border-left: 4px solid #00c3ff;
}

.bet-card.purple-lock {
    border-left: 4px solid #b300ff;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.tag-label {
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.odds-badge {
    color: #fff;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Consolas', monospace;
}

.bet-name {
    color: #fff;
    margin: 0.5rem 0;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 0.9;
}

.bet-desc {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.view-btn {
    display: block;
    text-align: center;
    padding: 1rem;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.view-btn:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

/* Specific Tag Colors */
.tag-green {
    color: #4CAF50;
}

.tag-gold {
    color: var(--accent-gold);
}

.tag-red {
    color: #ff4444;
}

.tag-blue {
    color: #00c3ff;
}

.tag-purple {
    color: #b300ff;
}

/* Parlay Specifics */
.parlay-header-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2rem;
    border-left: 4px solid #b300ff;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.parlay-legs {
    margin-bottom: 1.5rem;
}

.parlay-leg {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
    font-size: 0.95rem;
}

.rationale-box {
    background: rgba(255, 255, 255, 0.03);
    margin-top: auto;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

/* EVENT ACCORDION STYLES */
details.event-accordion {
    margin-bottom: 2rem;
    border-radius: 8px;
    background: transparent;
}

details.event-accordion summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 0;
}

details.event-accordion summary::-webkit-details-marker {
    display: none;
}

details.event-accordion summary:focus {
    outline: none;
}

/* Add a subtle hover effect to the summary content */
details.event-accordion summary:hover .event-hub-header {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Rotate indicator if we decide to add one later, currently keeping it clean */
details.event-accordion[open] summary~* {
    animation: sweep .5s ease-in-out;
}

@keyframes sweep {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

/* Style for the simple h3 headers inside accordions */
details.event-accordion summary .card-section-title {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid #333;
    border-radius: 8px;
    transition: all 0.3s ease;
    /* Ensure it fills the summary width if needed, or at least looks like a button */
    display: block;
}

details.event-accordion summary:hover .card-section-title {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
}