:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary: #004e89;
    --secondary-dark: #003a6a;
    --accent: #ffc93c;
    --dark: #1a1a2e;
    --dark-alt: #16213e;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --border: #dee2e6;
    --success: #28a745;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.frequency-badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    background: var(--light-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
}

.badge.live {
    background: var(--success);
    color: #fff;
    animation: pulse 2s infinite;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.btn-listen {
    background: var(--primary);
    color: #fff !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: background 0.3s;
}

.btn-listen:hover {
    background: var(--primary-dark);
}

/* Hero Sections */
.hero {
    position: relative;
    background: var(--gradient);
    color: #fff;
    padding: 8rem 0 6rem;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: #fff;
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--light-gray);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.bg-gradient {
    background: var(--gradient);
    color: #fff;
}

.bg-gradient .section-title {
    color: #fff;
}

.bg-light {
    background: var(--light-gray);
}

/* Player Card */
.listen-section {
    background: var(--light-gray);
}

.player-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.player-info {
    margin-bottom: 2rem;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.player-info h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.volume-slider {
    flex: 1;
    max-width: 200px;
}

.broadcast-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.broadcast-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.broadcast-option svg {
    color: var(--primary);
    flex-shrink: 0;
}

.broadcast-option div {
    display: flex;
    flex-direction: column;
}

.broadcast-option strong {
    font-size: 1rem;
    color: var(--dark);
}

.broadcast-option span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Bingo Highlight */
.bingo-highlight {
    background: var(--dark);
    color: #fff;
}

.bingo-card-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
}

.bingo-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bingo-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bingo-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--accent);
}

.detail-item span {
    display: block;
    font-size: 1.1rem;
}

.bingo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bingo-grid-display {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.bingo-cell {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.schedule-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.time-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.schedule-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.host-name {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.show-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Hosts Grid */
.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.host-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.host-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.host-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.host-show {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.host-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.host-social a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.host-social a:hover {
    color: var(--primary);
}

/* Bingo Page */
.hero-bingo {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.hero-schedule {
    background: linear-gradient(135deg, #004e89 0%, #1a659e 100%);
}

.hero-hosts {
    background: linear-gradient(135deg, #004e89 0%, #1a659e 100%);
}

.bingo-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.bingo-game-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s;
}

.bingo-game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.game-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.game-date-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: #fff;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.game-date-large .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.game-date-large .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.bingo-game-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.game-time,
.game-prize {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--gray);
}

.game-prize svg,
.game-time svg {
    color: var(--primary);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
}

.bingo-cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.bingo-cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.rules-list,
.prize-list {
    list-style: none;
    padding-left: 0;
}

.rules-list li,
.prize-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    padding-left: 1.5rem;
}

.rules-list li:before,
.prize-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.note {
    margin-top: 1rem;
    font-style: italic;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Winners List */
.winners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.winner-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
}

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

.winner-icon svg {
    color: var(--dark);
}

.winner-info h4 {
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.winner-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.winner-date {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Contact Box */
.contact-bingo-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-bingo-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Schedule Tabs */
.schedule-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.schedule-tab {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray);
    transition: all 0.3s;
    white-space: nowrap;
}

.schedule-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.schedule-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.day-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 180px;
}

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

.timeline-time {
    position: absolute;
    left: -180px;
    top: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gray);
}

.time-separator {
    color: var(--border);
}

.timeline-content {
    position: relative;
    padding-left: 2rem;
}

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

.timeline-item:last-child .timeline-content::before {
    display: none;
}

.timeline-content::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.show-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.show-host-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.host-avatar-small {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.show-title {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.show-host {
    color: var(--gray);
    font-size: 0.9rem;
}

.show-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.show-link:hover {
    text-decoration: underline;
}

/* Featured Shows */
.featured-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.featured-show-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.featured-show-card.highlight {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--accent);
}

.featured-show-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-show-badge.special {
    background: var(--accent);
    color: var(--dark);
}

.featured-show-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.show-time {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 600;
}

.show-features {
    list-style: none;
    margin: 1.5rem 0;
}

.show-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.show-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Request Box */
.request-box {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.request-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.request-box > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Host Profile */
.host-profile {
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.host-profile-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.host-avatar-large {
    width: 150px;
    height: 150px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.host-header-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.host-show-title {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.host-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 20px;
    text-decoration: none;
    color: var(--dark);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
}

.host-bio {
    margin-bottom: 2rem;
}

.host-bio h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.host-schedule-box {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.host-schedule-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.host-show-times {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.show-time-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: #fff;
    border-radius: 8px;
}

/* Join Team Box */
.join-team-box {
    text-align: center;
}

.join-team-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

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

.feature-item svg {
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Contact Hosts Box */
.contact-hosts-box {
    max-width: 700px;
    margin: 0 auto;
}

.contact-hosts-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-hosts-box > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col h3 {
    font-size: 1.8rem;
    color: var(--primary);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.stream-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge-lg {
    background: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-icon {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: background 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

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

.no-schedule {
    text-align: center;
    padding: 3rem;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .bingo-card-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline-time {
        position: static;
        margin-bottom: 0.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .host-profile-header {
        flex-direction: column;
        text-align: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .broadcast-options {
        grid-template-columns: 1fr;
    }

    .schedule-tabs {
        flex-wrap: wrap;
    }
}
