:root {
    --bg-dark: #0a0b10;
    --accent: #00f2ff;
    --accent-glow: rgba(0, 242, 255, 0.3);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text: #e0e0e0;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background: linear-gradient(rgba(10, 11, 16, 0.90), rgba(10, 11, 16, 0.96)), url('analysis_hero.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

.background-blob, .background-blob-2 {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
}

.background-blob { top: -200px; left: -200px; }
.background-blob-2 { bottom: -200px; right: -200px; opacity: 0.5; }

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 10%;
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand-logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px var(--accent-glow);
}

.logo span { color: var(--accent); }

.hero-image {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.brand-hero {
    max-width: 400px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    background: var(--glass);
    padding: 10px;
}

.status-badge {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    70% { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0; }
}

.admin-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    background: var(--accent);
    color: #020617;
    box-shadow: 0 0 15px var(--accent);
}

header {
    text-align: center;
    padding: 4rem 10% 2rem;
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

header h1 span { color: var(--accent); text-shadow: 0 0 20px var(--accent-glow); }

header p { opacity: 0.7; max-width: 600px; margin: 0 auto; line-height: 1.6; }

main {
    padding: 2rem 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
}

.prediction-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.prediction-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    opacity: 0.6;
}

.teams {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.teams span { color: var(--accent); margin: 0 0.5rem; }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    font-size: 0.85rem;
}

.stat-label { opacity: 0.5; display: block; margin-bottom: 0.2rem; }
.stat-value { font-weight: 500; color: #fff; }

.main-outcome {
    background: linear-gradient(90deg, var(--accent-glow), transparent);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid var(--accent);
    font-weight: 700;
    color: var(--accent);
}

.loading { grid-column: 1 / -1; text-align: center; padding: 4rem; font-family: 'Orbitron'; opacity: 0.5; }

/* --- Dashboard V2 Enhancements --- */

.last-sync {
    font-size: 0.75rem;
    opacity: 0.4;
    margin-top: 1.5rem;
    letter-spacing: 1px;
}

.filter-container {
    padding: 0 10% 2rem;
    display: flex;
    justify-content: center;
}

.filter-bar {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--glass);
    padding: 1rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.prediction-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease;
    animation: cardEntrance 0.6s ease forwards;
    opacity: 0;
}

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

.confidence-gauge-container {
    margin: 1.5rem 0;
    font-size: 0.8rem;
}

.gauge-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.gauge-track {
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    overflow: hidden;
}

.gauge-fill {
    height: 100%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
    border-radius: 3px;
    transition: width 1s ease-out;
}

.main-outcome {
    background: linear-gradient(90deg, var(--accent-glow), transparent);
    padding: 1.2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

footer {
    padding: 4rem 10% 2rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
    color: var(--text);
    opacity: 0.6;
    font-size: 0.7rem;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

footer p {
    letter-spacing: 1px;
}

footer span {
    color: var(--accent);
    font-weight: 600;
}

/* Prediction Cards Extra Polish */
.card-tier {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Animations and Smoothness */
::selection {
    background: var(--accent);
    color: var(--bg-dark);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-glow);
}

/* --- Premium Hero & Shadow Enhancements --- */
.hero-image {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 242, 255, 0.15), 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s ease;
}
.hero-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}
.hero-image:hover {
    transform: translateY(-8px) scale(1.02);
}

/* --- Multi-Market Custom Cards --- */
.avg-goals-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(0, 242, 255, 0.2);
    padding: 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-bottom: 1.2rem;
    text-align: center;
}
.combo-bet-container {
    background: rgba(0, 242, 255, 0.04);
    border: 1px solid rgba(0, 242, 255, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.combo-badge {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.3rem;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

/* --- Timeline Section & Cards --- */
.timeline-section {
    padding: 4rem 10% 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.timeline-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}
.timeline-section h2 span {
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent-glow);
}
.timeline-subtitle {
    text-align: center;
    opacity: 0.6;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}
#timeline-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.timeline-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.8rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.timeline-card:hover {
    border-color: rgba(0, 242, 255, 0.3);
    transform: translateX(4px);
}
.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.platform-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}
.platform-x {
    background: rgba(29, 161, 242, 0.15);
    color: #1da1f2;
    border: 1px solid rgba(29, 161, 242, 0.3);
}
.platform-telegram {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
    border: 1px solid rgba(0, 136, 204, 0.3);
}
.timeline-date {
    font-size: 0.8rem;
    opacity: 0.5;
}
.timeline-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f1f5f9;
    margin-bottom: 1.2rem;
    font-family: monospace;
    white-space: pre-wrap;
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}
.timeline-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    transition: opacity 0.2s;
}
.timeline-link:hover {
    opacity: 0.8;
}
.reaction-bar {
    display: flex;
    gap: 0.8rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}
.reaction-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: #94a3b8;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}
.reaction-btn:hover {
    background: rgba(255,255,255,0.02);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}
.reaction-btn.reacted {
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.15);
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll !important;
    }
    header h1 { font-size: 2.2rem; }
    nav { padding: 1.5rem 5%; }
    main { padding: 1rem 5%; }
    .view-toggle-container {
        gap: 0.8rem;
        padding: 0 5%;
    }
    .toggle-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Responsive Chat Widget for Tablets & Large Mobile */
    .chat-widget {
        position: static;
    }
    .chat-icon {
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 1500;
    }
    .chat-window {
        position: fixed;
        right: 20px;
        width: calc(100% - 40px);
        max-width: 380px;
        bottom: 90px;
        height: 400px;
        border-radius: 16px;
        z-index: 9999;
    }
}
@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
        text-align: center;
        align-items: center;
    }
    .nav-actions {
        width: 100%;
        justify-content: center;
    }
    .view-toggle-container {
        display: flex;
        justify-content: center;
        gap: 0.4rem;
        margin: 1rem 0 1.5rem;
        padding: 0 10px;
        flex-wrap: nowrap;
        width: 100%;
    }
    .toggle-btn {
        flex: 1;
        padding: 0.6rem 0.2rem;
        font-size: 0.75rem;
        border-radius: 20px;
        text-align: center;
        letter-spacing: 0px;
        white-space: nowrap;
    }
    header h1 {
        font-size: 1.8rem;
    }
    main {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1rem 12px;
    }
    .prediction-card {
        padding: 1.2rem;
        border-radius: 16px;
    }
    .cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    .cookie-btn {
        width: 100%;
    }
    /* Chat Widget overrides for smaller mobile screens */
    .chat-icon {
        right: 15px;
        bottom: 15px;
    }
    .chat-window {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        width: calc(100% - 24px) !important;
        max-width: none !important;
        bottom: 85px !important;
        height: 380px !important;
    }
    footer {
        padding-bottom: 6rem;
    }
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
    color: #cbd5e1;
    transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
.cookie-btn {
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.cookie-btn:hover {
    opacity: 0.9;
}

/* --- Modals for Terms & Privacy --- */
.modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.close-modal:hover {
    opacity: 1;
    color: var(--accent);
}
.modal h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    margin-bottom: 1rem;
}
.modal p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

/* --- Chatbot Widget --- */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
}
.chat-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px var(--accent-glow);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.chat-icon:hover {
    transform: scale(1.1);
}
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.chat-header {
    background: rgba(30, 41, 59, 0.8);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}
.chat-close {
    cursor: pointer;
    opacity: 0.7;
    font-size: 1.2rem;
}
.chat-close:hover {
    opacity: 1;
    color: var(--accent);
}
.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.message {
    padding: 0.8rem;
    border-radius: 10px;
    max-width: 80%;
    font-size: 0.85rem;
    line-height: 1.4;
}
.bot-msg {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    align-self: flex-start;
    color: #f1f5f9;
}
.user-msg {
    background: var(--accent-glow);
    border: 1px solid var(--accent);
    align-self: flex-end;
    color: #fff;
}
.chat-input-area {
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    gap: 0.5rem;
}
.chat-input-area input {
    flex: 1;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.6rem;
    color: #fff;
    font-size: 0.85rem;
}
.chat-input-area input:focus {
    outline: none;
    border-color: var(--accent);
}
.chat-input-area button {
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
}

/* --- Legal Footer Styles --- */
.gamble-warning {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ef4444;
}
.gamble-warning a {
    color: #ef4444;
    text-decoration: underline;
}
.legal-disclaimer {
    font-size: 0.65rem;
    opacity: 0.5;
    max-width: 700px;
    margin: 0.5rem auto 1rem;
    line-height: 1.5;
}
footer a {
    color: var(--accent);
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* --- View Toggle & Tabs --- */
.view-toggle-container {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 1.5rem 0 2rem;
    padding: 0 10%;
    flex-wrap: wrap;
}
.toggle-btn {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}
.toggle-btn.active, .toggle-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* --- Live Scores Widget --- */
.live-scores-container {
    padding: 0 10% 2rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    animation: cardEntrance 0.6s ease forwards;
}

/* --- Past Predictions Badges --- */
.past-status-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.status-won {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.1);
}
.status-lost {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.status-pending {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.3);
}
.final-score-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.6rem;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 1.2rem;
    text-align: center;
    letter-spacing: 0.5px;
}
.prediction-date-footer {
    font-size: 0.7rem;
    opacity: 0.4;
    margin-top: 1.2rem;
    text-align: right;
    border-top: 1px dashed rgba(255,255,255,0.05);
    padding-top: 0.8rem;
}

/* Helper hidden class */
.hidden {
    display: none !important;
}

/* --- Premium Livescore Presentation --- */
.widget-header {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
}
.widget-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    text-shadow: 0 0 12px var(--accent-glow);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.widget-header p {
    font-size: 0.9rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}
.iframe-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 8px;
    background: linear-gradient(135deg, var(--glass-border), transparent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 255, 0.05);
    border: 1px solid var(--glass-border);
}

/* --- Pagination Style --- */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0;
    padding: 0 10%;
    flex-wrap: wrap;
}
.page-btn {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.page-btn:hover:not(:disabled) {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}
.page-btn.active {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}
.page-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .pagination-container {
        padding: 0 10px;
        gap: 0.3rem;
    }
    .page-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* --- Recommended Picks Style --- */
.recommended-picks-container {
    margin: 1.5rem 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
}
.picks-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 5px var(--accent-glow);
    font-weight: 700;
}
.picks-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.pick-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.pick-item:hover {
    transform: translateX(4px);
    border-color: var(--accent-glow);
}
.pick-market {
    font-weight: 500;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pick-val {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 242, 255, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}
.pick-precision {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
}


