/**
 * RIG 90.7 FM - Main Stylesheet
 * Light theme, modern radio design
 */

/* ========== VARIABLES ========== */
:root {
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --primary-light: #4ade80;
    --primary-glow: rgba(34, 197, 94, 0.2);
    
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-muted: #f1f5f9;
    --surface: #ffffff;
    --surface-raised: #ffffff;
    
    --text: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    
    --radius: 16px;
    --radius-sm: 8px;
    --radius-full: 9999px;
}

/* ========== RESET ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: var(--bg-soft);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 80px; /* Space for fixed player */
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.2s;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

@media (max-width: 768px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
}

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

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

/* ========== NAVBAR ========== */
.navbar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.nav-logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text);
}

.nav-logo-text span {
    color: var(--primary);
}

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

.nav-link {
    color: var(--text-secondary);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--text);
    background: var(--bg-muted);
}

.nav-link-live {
    background: var(--primary);
    color: white !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link-live:hover {
    background: var(--primary-dark);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    position: relative;
    background: var(--bg-muted);
}

.hamburger,
.hamburger::before,
.hamburger::after {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamburger::before,
.hamburger::after {
    content: '';
    left: 0;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
    .nav-toggle { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 20px;
        gap: 8px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 16px 20px;
        font-size: 1.1rem;
        border-radius: var(--radius);
    }
}

/* ========== CAROUSEL SLIDESHOW ========== */
.carousel-slideshow {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--bg-muted);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide.no-content {
    cursor: pointer;
}

a.carousel-slide {
    display: block;
    cursor: pointer;
}

.carousel-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.carousel-slide-content {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 60px;
    max-width: 600px;
    color: white;
}

.carousel-slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    color: white;
}

.carousel-slide-subtitle {
    font-size: 1.1rem;
    margin: 12px 0 0 0;
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    color: white;
}

.carousel-slide-btn {
    align-self: flex-start;
    margin-top: 20px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: all 0.2s;
}

.carousel-dot:hover {
    background: rgba(255,255,255,0.6);
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-slideshow {
        height: 300px;
    }
    
    .carousel-slide-overlay {
        background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    }
    
    .carousel-slide-content {
        padding: 20px 24px;
        max-width: 100%;
    }
    
    .carousel-slide-title {
        font-size: 1.5rem;
    }
    
    .carousel-slide-subtitle {
        font-size: 0.95rem;
        margin-top: 8px;
    }
    
    .carousel-slide-btn {
        margin-top: 16px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev { left: 12px; }
    .carousel-next { right: 12px; }
    
    .carousel-dots {
        bottom: 16px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-slideshow {
        height: 260px;
    }
    
    .carousel-slide-content {
        padding: 16px 20px;
    }
    
    .carousel-slide-title {
        font-size: 1.25rem;
    }
    
    .carousel-slide-subtitle {
        font-size: 0.85rem;
        margin-top: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .carousel-slide-btn {
        margin-top: 12px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .carousel-nav {
        display: none;
    }
}

/* ========== HERO / NOW PLAYING ========== */
.hero-player {
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-player::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 5 5, 10 10 T 20 10 T 30 10 T 40 10 T 50 10 T 60 10 T 70 10 T 80 10 T 90 10 T 100 10' stroke='rgba(255,255,255,0.1)' fill='none' stroke-width='0.5'/%3E%3C/svg%3E") repeat;
    background-size: 200px 40px;
    opacity: 0.5;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    from { background-position: 0 0; }
    to { background-position: 200px 0; }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.on-air-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.on-air-badge .live-dot {
    background: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.3);
}

.hero-show-name {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-show-host {
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero-now-playing {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: var(--radius);
}

.hero-track-cover {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero-track-info {
    flex: 1;
    min-width: 0;
}

.hero-track-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.hero-track-title {
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-track-artist {
    opacity: 0.9;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.play-button-hero {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
}

.play-button-hero::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    animation: ring-pulse 2s ease-out infinite;
}

@keyframes ring-pulse {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.play-button-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.play-button-hero svg {
    width: 60px;
    height: 60px;
    margin-left: 8px;
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
        text-align: center;
    }
    
    .on-air-badge {
        margin: 0 auto;
    }
    
    .hero-show-name {
        font-size: 2rem;
    }
    
    .play-button-hero {
        width: 140px;
        height: 140px;
    }
    
    .play-button-hero svg {
        width: 48px;
        height: 48px;
    }
}

/* ========== SECTIONS ========== */
.section {
    padding: 60px 0;
}

.section-white {
    background: var(--bg);
}

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

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--primary);
    border-radius: 2px;
}

.section-link {
    color: var(--primary-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-link:hover {
    gap: 8px;
}

/* ========== RECENT TRACKS ========== */
.recent-tracks {
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s;
}

.track-item:last-child {
    border-bottom: none;
}

.track-item:hover {
    background: var(--bg-soft);
}

.track-time {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 50px;
    font-variant-numeric: tabular-nums;
}

.track-cover {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--bg-muted);
}

.track-info {
    flex: 1;
    min-width: 0;
}

.track-title {
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    font-size: 0.9rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========== CARDS ========== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.card-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-muted);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.card-title {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.card-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ========== SCHEDULE SPOTLIGHT (Home Page) ========== */
.schedule-spotlight {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
    align-items: start;
}

.schedule-now-card {
    display: flex;
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}

.schedule-now-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
    transform: translateY(-2px);
}

.schedule-now-image {
    position: relative;
    width: 200px;
    min-height: 200px;
    flex-shrink: 0;
    background: var(--bg-muted);
}

.schedule-now-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-now-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-muted) 100%);
    color: var(--text-muted);
}

.schedule-now-badge-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-now-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.schedule-now-time {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.schedule-now-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px 0;
}

.schedule-now-host {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.schedule-now-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.schedule-upcoming {
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.schedule-upcoming-label {
    padding: 14px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}

.schedule-upcoming-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.schedule-upcoming-item:last-child {
    border-bottom: none;
}

.schedule-upcoming-item:hover {
    background: var(--bg-soft);
}

.schedule-upcoming-cover {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-muted);
}

.schedule-upcoming-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.schedule-upcoming-info {
    flex: 1;
    min-width: 0;
}

.schedule-upcoming-name {
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.schedule-upcoming-time {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.schedule-upcoming-day {
    color: var(--text-muted);
    font-weight: 400;
    margin-right: 4px;
}

@media (max-width: 800px) {
    .schedule-spotlight {
        grid-template-columns: 1fr;
    }
    
    .schedule-now-card {
        flex-direction: column;
    }
    
    .schedule-now-image {
        width: 100%;
        height: 180px;
    }
    
    .schedule-upcoming {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .schedule-upcoming-label {
        grid-column: 1 / -1;
    }
    
    .schedule-upcoming-item:last-child {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 500px) {
    .schedule-upcoming {
        grid-template-columns: 1fr;
    }
}

/* ========== SCHEDULE CARDS (Schedule Page) ========== */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schedule-card {
    display: grid;
    grid-template-columns: 80px 1fr 120px;
    gap: 20px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.25s ease;
    align-items: start;
}

.schedule-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.12);
    transform: translateY(-2px);
}

.schedule-card-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: var(--primary-glow);
    border-radius: var(--radius-sm);
    text-align: center;
}

.schedule-time-start {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.schedule-time-end {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.schedule-card-content {
    flex: 1;
    min-width: 0;
}

.schedule-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.schedule-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.schedule-freq-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    background: var(--warning);
    color: white;
    border-radius: var(--radius-full);
}

.schedule-card-host {
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 8px;
}

.schedule-card-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.schedule-card-next {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.schedule-card-next svg {
    flex-shrink: 0;
}

.schedule-card-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.schedule-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.schedule-card:hover .schedule-card-image img {
    transform: scale(1.05);
}

.schedule-card-image-placeholder {
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-muted) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.schedule-now-badge {
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.2s;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.btn-secondary {
    background: var(--bg);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* ========== TEAM GRID ========== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 32px;
}

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

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 16px;
    object-fit: cover;
    border: 4px solid var(--bg);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.team-name {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ========== SCHEDULE GRID ========== */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.schedule-day {
    background: var(--bg);
}

.schedule-day-header {
    padding: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.schedule-day-header.today {
    background: var(--primary);
    color: white;
}

.schedule-shows {
    padding: 12px;
    min-height: 300px;
}

.schedule-show {
    padding: 12px;
    margin-bottom: 8px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
    transition: all 0.2s;
}

.schedule-show:hover {
    background: var(--primary-glow);
}

.schedule-show-time {
    font-size: 0.8rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 4px;
}

.schedule-show-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.schedule-show-host {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.schedule-show-frequency {
    margin-top: 6px;
}

.schedule-frequency-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    background: var(--bg-muted);
    color: var(--text-secondary);
}

.schedule-next-broadcast {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.schedule-toggle-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* Day-by-day schedule (navigator + single day) */
.schedule-day-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.schedule-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-muted);
    color: var(--text-secondary);
    transition: all 0.2s;
}

.schedule-nav-btn:hover {
    background: var(--primary);
    color: white;
}

.schedule-day-label {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 200px;
    text-align: center;
}

.schedule-day-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
}

.schedule-day-date {
    font-size: 1rem;
    color: var(--text-secondary);
}

.schedule-day-today {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.schedule-panels {
    max-width: 900px;
    margin: 0 auto;
}

/* Schedule card responsive */
@media (max-width: 700px) {
    .schedule-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .schedule-card-time {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        padding: 10px;
    }
    
    .schedule-time-end::before {
        content: "—";
        margin-right: 8px;
    }
    
    .schedule-card-image {
        width: 100%;
        height: 180px;
        order: -1;
    }
}

.schedule-day-panel {
    animation: schedule-fade 0.2s ease;
}

@keyframes schedule-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.schedule-empty {
    padding: 60px 24px;
    text-align: center;
    color: var(--text-muted);
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px dashed var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.schedule-empty p {
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-shows {
        min-height: auto;
    }
}

/* ========== FORMS ========== */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 1rem;
    transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand img {
    height: 48px;
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-section h4 {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 24px 20px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========== BOTTOM PLAYER ========== */
.player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 200;
}

.player-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    max-width: 300px;
    overflow: hidden;
}

.player-cover {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.player-text {
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.player-title {
    display: block;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-artist {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.player-btn {
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.player-btn-main {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.player-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-time {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    min-width: 40px;
}

.player-seek,
.player-vol-slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    cursor: pointer;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.player-seek { flex: 1; }
.player-vol-slider { width: 100px; }

.player-seek::-webkit-slider-thumb,
.player-vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    margin-top: 0;
}

.player-seek::-moz-range-thumb,
.player-vol-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
}

.player-seek::-moz-range-track,
.player-vol-slider::-moz-range-track {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
}

.player-volume {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.player-volume .player-btn {
    flex-shrink: 0;
}

.player-volume .player-vol-slider {
    margin: 0;
    flex-shrink: 0;
}

.player-live {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
}


.player-speed {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.player-speed:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.player-expand {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    padding: 8px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.player-expand:hover {
    color: var(--primary);
}

/* Fullscreen Podcast Player */
.player-fullscreen {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, #065f46 100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.player-fullscreen.active {
    opacity: 1;
    visibility: visible;
}

.player-fs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: white;
}

.player-fs-close {
    color: white;
    opacity: 0.8;
    transition: opacity 0.2s;
    padding: 8px;
}

.player-fs-close:hover {
    opacity: 1;
}

.player-fs-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-fs-live-dot {
    width: 10px;
    height: 10px;
}

.player-fs-live {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.2s;
}

.player-fs-live:hover {
    background: rgba(255,255,255,0.25);
}

.player-fs-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: white;
    text-align: center;
    overflow-y: auto;
}

.player-fs-cover {
    width: 280px;
    height: 280px;
    max-width: 70vw;
    max-height: 70vw;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    margin-bottom: 32px;
}

.player-fs-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-fs-artist {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0 0 32px 0;
}

.player-fs-progress {
    width: 100%;
    max-width: 400px;
    margin-bottom: 24px;
}

.player-fs-seek {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
}

.player-fs-seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.player-fs-seek::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
}

.player-fs-times {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.player-fs-controls {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.player-fs-btn {
    color: white;
    opacity: 0.9;
    transition: all 0.2s;
    padding: 12px;
}

.player-fs-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.player-fs-btn-main {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: white;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.player-fs-btn-main:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.player-fs-extras {
    width: 100%;
    max-width: 400px;
}

.player-fs-speed {
    margin-bottom: 20px;
}

.player-fs-speed-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-fs-speed-options {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.speed-btn {
    padding: 8px 14px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.speed-btn:hover {
    background: rgba(255,255,255,0.2);
}

.speed-btn.active {
    background: white;
    color: var(--primary-dark);
}

.player-fs-volume {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    color: white;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .player-fs-volume {
        display: none;
    }
}

.player-fs-vol {
    -webkit-appearance: none;
    appearance: none;
    width: 120px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
}

.player-fs-vol::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
}

.player-fs-vol::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
}

/* Episode play button responsive */
.episode-play-btn .episode-play-text {
    display: inline;
}


@media (max-width: 768px) {
    .player-container {
        padding: 10px 16px;
        gap: 10px;
    }
    
    .player-info {
        flex: 1;
        max-width: none;
        min-width: 0;
        overflow: hidden;
        cursor: pointer;
    }
    
    .player-cover {
        width: 44px;
        height: 44px;
    }
    
    .player-title {
        font-size: 0.9rem;
    }
    
    .player-artist {
        font-size: 0.8rem;
    }
    
    .player-controls {
        flex-shrink: 0;
    }
    
    .player-btn-main {
        width: 44px;
        height: 44px;
    }
    
    .player-progress {
        display: none !important;
    }
    
    .player-speed {
        display: none !important;
    }
    
    .player-live {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .player-live .live-text {
        display: none;
    }
    
    .player-volume { display: none !important; }
    
    .mobile-only { display: flex !important; }
    
    /* Episode play button - icon only on mobile */
    .episode-play-btn .episode-play-text {
        display: none;
    }
    
    .episode-play-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .player-container {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .player-cover {
        width: 40px;
        height: 40px;
    }
    
    .player-text {
        max-width: calc(100vw - 160px);
    }
    
    .player-title {
        font-size: 0.85rem;
    }
    
    .player-artist {
        font-size: 0.75rem;
    }
    
    .player-btn-main {
        width: 40px;
        height: 40px;
    }
    
    .player-btn-main svg {
        width: 20px;
        height: 20px;
    }
    
    .player-live {
        padding: 5px;
    }
    
    .player-live .live-dot {
        width: 8px;
        height: 8px;
    }
    
    .player-expand {
        padding: 6px;
    }
    
    /* Fullscreen adjustments */
    .player-fs-cover {
        width: 220px;
        height: 220px;
        margin-bottom: 24px;
    }
    
    .player-fs-title {
        font-size: 1.25rem;
    }
    
    .player-fs-controls {
        gap: 16px;
    }
    
    .player-fs-btn-main {
        width: 64px;
        height: 64px;
    }
    
    .speed-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Podcast progress bar on mobile */
@media (max-width: 768px) {
    .player-progress {
        order: 3;
        flex: 0 0 100%;
        margin-top: -4px;
    }
}

/* ========== PAGE STYLES ========== */
.page-header {
    background: var(--bg);
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

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

/* Episode/Show/Member headers */
.content-header {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
}

.content-cover {
    width: 280px;
    height: 280px;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}

.content-cover.round {
    border-radius: 50%;
}

.content-info {
    flex: 1;
}

.content-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.content-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.content-meta {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .content-header {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .content-cover {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .content-title {
        font-size: 1.75rem;
    }
}

/* Donate page */
.donate-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    color: white;
    padding: 80px 20px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 48px;
}

.donate-hero h1 {
    color: white;
    margin-bottom: 16px;
}

.donate-hero p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== RICH TEXT DESCRIPTIONS ========== */
.episode-description p,
.show-description p,
.podcast-description p {
    margin-bottom: 1em;
}

.episode-description p:last-child,
.show-description p:last-child,
.podcast-description p:last-child {
    margin-bottom: 0;
}

.episode-description ul,
.episode-description ol,
.show-description ul,
.show-description ol,
.podcast-description ul,
.podcast-description ol {
    margin: 1em 0;
    padding-left: 2em;
}

.episode-description li,
.show-description li,
.podcast-description li {
    margin-bottom: 0.5em;
}

.episode-description a,
.show-description a,
.podcast-description a {
    color: var(--primary);
    text-decoration: underline;
}

.episode-description a:hover,
.show-description a:hover,
.podcast-description a:hover {
    color: var(--primary-dark);
}

.episode-description strong,
.episode-description b,
.show-description strong,
.show-description b,
.podcast-description strong,
.podcast-description b {
    font-weight: 600;
}

.episode-description em,
.episode-description i,
.show-description em,
.show-description i,
.podcast-description em,
.podcast-description i {
    font-style: italic;
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-muted { color: var(--text-secondary); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* Hide elements */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
    .desktop-only { display: none; }
    .mobile-only { display: block; }
}

/* Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.spin { animation: spin 1s linear infinite; }

