:root {
    --bg-color: #0a0b10;
    --primary: #998100;
    --primary-glow: rgba(153, 129, 0, 0.4);
    --secondary: #7d00ff;
    --secondary-glow: rgba(125, 0, 255, 0.4);
    --text-color: #ffffff;
    --text-muted: #a0a0b0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-radius: 20px;
    --font-main: 'Outfit', sans-serif;
}

.hidden {
    display: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    display: block;
    /* Ensure standard vertical flow */
}

/* Background Effects */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ... existing globe styles ... */

/* App Container */
.app-container {
    width: 90%;
    max-width: 600px;
    max-width: 600px;
    position: relative;
    margin: 6rem auto 2rem;
    /* Center horizontally with auto, vertical spacing */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.screen {
    position: relative;
    /* Changed from absolute */
    width: 100%;
    height: auto;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}

.screen.active {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
    z-index: 10;
}

.screen.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    z-index: -1;
}

/* Typography & Elements */
.title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

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

.hero-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Hero Visual (New) */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.floating-cyclist {
    max-width: 100%;
    width: 450px;
    /* Desktop size */
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .floating-cyclist {
        width: 300px;
        /* Mobile size */
    }

    .hero-section {
        flex-direction: column-reverse;
        /* Text on top, image below or vice versa depending on pref. Let's keep Standard Column */
        /* Actually, standard is row. Mobile should be column. */
        flex-direction: column;
        padding-top: 6rem;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }
}

.primary-btn {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
    background: #fff;
}

.secondary-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    margin-top: 2rem;
    position: relative;
    z-index: 100;
    /* Ensure it's on top */
}

.secondary-btn:hover {
    background: rgba(0, 247, 255, 0.1);
}

/* Quiz UI */
.quiz-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.header-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.header-bar .icon-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 15px;
    transition: transform 0.2s;
    color: var(--text-color);
}

.header-bar .icon-btn:hover {
    transform: scale(1.1);
}

.progress-container {
    flex-grow: 1;
    height: 8px;
    /* Slightly taller */
    background: transparent;
    /* Container is transparent now */
    border-radius: 0;
    margin-right: 15px;
    overflow: visible;
    display: flex;
    gap: 4px;
    /* Space between segments */
}

.timer {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    min-width: 80px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.1);
}

.timer.warning {
    color: #ff3c3c;
    border-color: #ff3c3c;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.progress-segment {
    flex: 1;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Added border */
    border-radius: 4px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.progress-segment.correct {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.progress-segment.incorrect {
    background: #ff3c3c;
    box-shadow: 0 0 10px rgba(255, 60, 60, 0.4);
}

.progress-segment.current {
    background: rgba(255, 255, 255, 0.3);
}

.score-display {
    font-weight: 800;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.question-card h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    text-align: left;
}

.options-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: left;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.option-btn:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.option-btn.correct {
    background: rgba(0, 255, 128, 0.2);
    border-color: #00ff80;
    color: #00ff80;
}

.option-btn.incorrect {
    background: rgba(255, 60, 60, 0.2);
    border-color: #ff3c3c;
    color: #ff3c3c;
}

.option-btn.disabled {
    cursor: default;
    opacity: 0.7;
}

.feedback {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    height: 1.5rem;
}

/* Results */
.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    box-shadow: 0 0 30px var(--primary-glow) inset, 0 0 30px var(--primary-glow);
    background: rgba(0, 0, 0, 0.2);
}

#final-score {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.total {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.result-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--primary);
}

/* Menu Styles */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin-top: 1rem;
}

.menu-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px -10px rgba(0, 247, 255, 0.2);
}

.menu-card .icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.menu-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
}

.menu-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Career Quiz Styles */
.career-container {
    width: 100%;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.career-flag {
    width: 80px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.career-teams {
    list-style: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
}

.career-teams li {
    font-size: 0.8rem;
    color: var(--text-color);
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s;
    width: 100px;
    text-align: center;
}

.career-teams li img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 5px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.career-teams li:hover {
    background: rgba(0, 247, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* Reveal Image */
.reveal-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    animation: fadeIn 0.5s ease-out;
}

.reveal-container img {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    border: 4px solid var(--primary);
    object-fit: cover;
    box-shadow: 0 0 20px var(--primary-glow);
    /* Removed default transition to prevent 'blurring in' effect */
}

.blur-effect {
    filter: blur(20px);
}

.animate-filter {
    transition: filter 1s ease;
}

.pixel-effect {
    filter: contrast(150%) brightness(0.8) blur(10px);
    /* Simple CSS approximation of pixel/obscured effect */
    animation: unpixel 10s forwards;
}

@keyframes unblur {
    to {
        filter: blur(0);
    }
}

@keyframes unpixel {
    to {
        filter: contrast(100%) brightness(1) blur(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add arrow after each item except the last one */
.career-teams li:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    pointer-events: none;
}

/* Adjust margin to account for arrow spacing */
.career-teams li:not(:last-child) {
    margin-right: 15px;
}

.career-teams li:last-child {
    font-weight: 800;
    background: rgba(0, 247, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.2);
}

/* Responsive adjustments for menu */
/* Responsive adjustments */
@media (max-width: 768px) {
    .app-container {
        width: 95%;
        min-height: auto;
        padding: 20px 0;
    }

    .title {
        font-size: 3rem;
    }

    .hero-image {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .menu-card {
        padding: 1.5rem;
        flex-direction: row;
        text-align: left;
        justify-content: start;
    }

    .menu-card .icon {
        font-size: 2.5rem;
        margin-bottom: 0;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .screen {
        padding: 1.5rem 1rem;
    }

    .career-flag {
        width: 60px;
    }

    /* Career Teams Mobile Flow */
    .career-teams {
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
    }

    .career-teams li {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        margin-right: 0 !important;
        /* Override desktop margin */
        padding: 10px;
    }

    /* Change arrow from right to down for vertical stack */
    .career-teams li:not(:last-child)::after {
        content: '↓';
        right: auto;
        bottom: -22px;
        position: absolute;
    }

    /* Add space for the down arrow */
    .career-teams li:not(:last-child) {
        margin-bottom: 20px;
    }

    .options-container {
        gap: 10px;
    }

    .option-btn {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .globe-1 {
        width: 250px;
        height: 250px;
        top: -50px;
        left: -50px;
    }

    .globe-2 {
        width: 300px;
        height: 300px;
        bottom: -50px;
        right: -50px;
    }
}

/* Player Name Input */
.input-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.name-input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: var(--text-color);
    width: 80%;
    max-width: 400px;
    text-align: center;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.name-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.name-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    background: rgba(255, 255, 255, 0.15);
}

/* Leaderboard Styles */
.leaderboard-container {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1rem;
    width: 90%;
    max-width: 600px;
    max-height: 60vh;
    overflow-y: auto;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.leaderboard-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
    width: 100%;
}

.tab-btn {
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 15px var(--primary-glow);
    font-weight: 800;
}

#leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-color);
    text-align: left;
}

#leaderboard-table th,
#leaderboard-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#leaderboard-table th {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

#leaderboard-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

#leaderboard-table td {
    font-weight: 300;
}

/* Scrollbar for leaderboard */
.leaderboard-container::-webkit-scrollbar {
    width: 8px;
}

.leaderboard-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.leaderboard-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Landing Page Specifics */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(0, 0, 0, 0.3);
    /* More transparent */
    backdrop-filter: blur(15px);
    /* Stronger blur */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Fainter border */
}

/* ... existing code ... */

.menu-card {
    background: rgba(255, 255, 255, 0.02);
    /* Cleaner, less opaque */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    /* Match global radius */
    padding: 2.5rem 2rem;
    /* More spacing */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
}

.logo {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    border-color: rgba(255, 255, 255, 0.1);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    background: transparent;
    /* Allows globes to show */
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Divider */
}

/* ... [hero content/visual styles] ... */

/* Responsive Navbar */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
        justify-content: space-between;
        position: relative;
        /* Or fixed if you want sticky */
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 11, 16, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .hero-section {
        padding-top: 5rem;
        /* Ensure content doesn't hide behind nav */
    }
}

.podcast-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    max-width: none;
    margin: 0;
}

.podcast-container:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.1);
}

.podcast-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.podcast-logo {
    max-width: 250px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 10px var(--primary));
    transition: none;
}

.podcast-content {
    flex: 2;
    text-align: left;
}

.section-title {
    font-family: var(--font-main);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--text-color);
}

.section-desc {
    font-family: var(--font-main);
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
}

.podcast-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Voting Section */
.voting-section {
    padding: 4rem 10%;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.centered-desc {
    margin: 0 auto 3rem auto;
}

.poll-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
}

.poll-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
    backdrop-filter: blur(5px);
}

.poll-option:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateX(5px);
}

.poll-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.poll-status {
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Selected State */
.poll-option.selected {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
}

.poll-option.selected .poll-name {
    color: #000;
}

.poll-option.selected .poll-status {
    color: #000;
    content: "Votado";
}

/* Disabled State */
.poll-option:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.vote-message {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    animation: fadeIn 0.5s ease;
}

.vote-message.hidden {
    display: none;
}

.text-btn {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-btn:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .podcast-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }

    .podcast-buttons {
        justify-content: center;
        flex-wrap: wrap;
        /* Allow wrapping on small screens */
    }
}

/* Platform Styles */
.platform-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    color: white;
}

.platform-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.platform-btn.youtube {
    background: #FF0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.platform-btn.youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

.platform-btn.spotify {
    background: #1DB954;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.platform-btn.spotify:hover {
    background: #1aa34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.5);
}

/* About Page Specifics */
.about-section {
    min-height: 100vh;
    padding: 8rem 10% 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    max-width: 1000px;
    width: 100%;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--primary);
    font-weight: 600;
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hosts-image {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.hosts-image:hover {
    transform: scale(1.02);
}

@media (max-width: 868px) {
    .about-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .about-section {
        padding: 6rem 5% 2rem;
    }
}

/* Contact Page Specifics */
.contact-section {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.info-item h3 {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--text-color);
    outline: none;
    transition: all 0.3s ease;
    resize: none;
    /* For textarea */
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px var(--primary-glow);
}

.social-links-row {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.platform-mini-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.platform-mini-btn svg {
    width: 20px;
    height: 20px;
}

/* .platform-mini-btn.youtube { background: #FF0000; }
.platform-mini-btn.spotify { background: #1DB954; } */
.platform-mini-btn.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.platform-mini-btn.x-twitter {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-mini-btn.tiktok {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-mini-btn.tiktok svg {
    filter: drop-shadow(2px 2px 0px rgba(255, 0, 80, 0.5)) drop-shadow(-2px -2px 0px rgba(0, 242, 234, 0.5));
}

.platform-mini-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* Partners Section */
.partners-section {
    padding: 3rem 10%;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title-small {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.partner-logo {
    max-height: 160px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-placeholder {
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Episodes Page */
.episodes-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

.latest-episode {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8rem;
    /* Increased margin as requested */
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper:hover {
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.15);
    /* Primary glow on hover */
    border-color: rgba(0, 247, 255, 0.3);
}

.video-thumbnail-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-wrapper:hover .video-thumb-img {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    border: 2px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    padding-left: 4px;
    /* Center align play triangle visually */
}

.video-wrapper:hover .play-button-overlay {
    background: var(--primary, #00f7ff);
    color: black;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.6);
    border-color: transparent;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.episode-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.episode-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-5px);
}

.video-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.episode-thumb {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.7);
    transition: filter 0.3s;
}

.episode-card:hover .episode-thumb {
    filter: brightness(1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

.channel-link-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Main Footer */
}

.main-footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
    width: 100%;
}