/* ========================================
   SERDAR BINGOL - Modern DJ & Academy Site
   ======================================== */

/* --- CSS Variables --- */
:root {
    --primary: #d4a843;
    --primary-light: #f0d078;
    --primary-dark: #b8892e;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border: rgba(255, 255, 255, 0.06);
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-light));
    --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(212, 168, 67, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

body.custom-cursor-active {
    cursor: none;
}

body.custom-cursor-active a,
body.custom-cursor-active button,
body.custom-cursor-active input,
body.custom-cursor-active textarea,
body.custom-cursor-active select {
    cursor: none;
}

::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

.accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Custom Cursor --- */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.1s;
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(212, 168, 67, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s, width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: var(--primary);
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-icon {
    font-size: 32px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 1.2s ease-in-out infinite;
}

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

.loader-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

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

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

.logo-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('bp.2.png') center center / cover no-repeat;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    #heroCanvas {
        display: none;
    }

    #hero {
        background: url('bp.2.png') center top / cover no-repeat;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-dark) 75%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 24px;
}

.hero-line {
    display: block;
    font-size: clamp(48px, 10vw, 120px);
    letter-spacing: 8px;
    animation: fadeInUp 0.8s ease;
}

.hero-line.accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-socials a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 16px;
    transition: var(--transition);
}

.hero-socials a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeInUp 0.8s ease 1s both;
}

.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 0.5; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient);
    color: var(--bg-dark);
}

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

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Section Common --- */
.section {
    padding: 120px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
}

.section-desc {
    max-width: 560px;
    margin: 16px auto 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    max-width: 380px;
    margin: 0 auto;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-image-border {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid var(--primary);
    border-radius: calc(var(--radius) + 4px);
    z-index: -1;
    opacity: 0.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat {
    text-align: center;
    padding: 20px 12px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number::after {
    content: '+';
    font-size: 20px;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

.about-skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.skill-item:hover {
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateX(4px);
}

.skill-item i {
    color: var(--primary);
    font-size: 16px;
}

/* --- Events Section --- */
.events-grid {
    display: grid;
    gap: 16px;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 28px 32px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.event-card:hover {
    border-color: rgba(212, 168, 67, 0.2);
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.event-date {
    text-align: center;
    min-width: 70px;
    padding: 16px;
    background: var(--gradient);
    border-radius: var(--radius-sm);
}

.event-day {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--bg-dark);
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--bg-dark);
    letter-spacing: 2px;
    margin-top: 4px;
}

.event-info {
    flex: 1;
}

.event-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.event-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.event-meta {
    display: flex;
    gap: 20px;
}

.event-meta span {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta i {
    color: var(--primary);
    font-size: 11px;
}

.event-btn {
    padding: 10px 24px;
    border: 1px solid var(--primary);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    transition: var(--transition);
    white-space: nowrap;
}

.event-btn:hover {
    background: var(--gradient);
    color: var(--bg-dark);
}

.past-events-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    margin: 48px 0 24px;
}

.past-events {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.past-event {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}

.past-event:hover {
    border-color: rgba(212, 168, 67, 0.3);
    color: var(--text-secondary);
}

/* --- Music Section --- */
.music-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.music-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.music-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: var(--shadow);
}

.music-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.music-cover-art {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary);
    transition: var(--transition);
}

.music-cover-art.art-2 {
    background: linear-gradient(135deg, #2d1b36, #1a1a2e);
}

.music-cover-art.art-3 {
    background: linear-gradient(135deg, #1a2e1a, #16213e);
}

.music-cover-art.art-4 {
    background: linear-gradient(135deg, #2e1a1a, #3e2116);
}

.music-card:hover .music-cover-art {
    transform: scale(1.05);
}

.music-card:hover .music-cover-art i {
    animation: spinSlow 4s linear infinite;
}

@keyframes spinSlow {
    to { transform: rotate(360deg); }
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bg-dark);
    transition: var(--transition);
}

.music-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1);
}

.play-btn:hover {
    box-shadow: var(--shadow-glow);
}

.music-info {
    padding: 20px;
}

.music-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.music-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.music-genre {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Academy Page --- */
.academy-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-darker);
    overflow: hidden;
    text-align: center;
}

.academy-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-darker) 80%);
}

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

/* Course Detail Cards */
.course-detail {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 32px;
    overflow: hidden;
    transition: var(--transition);
}

.course-detail:hover {
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: var(--shadow);
}

.course-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.course-detail-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.course-detail-icon i {
    font-size: 24px;
    color: var(--primary);
}

.course-detail-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.course-detail-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.course-popular-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    padding: 6px 16px;
    background: var(--gradient);
    border-radius: 0 0 12px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--bg-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.course-detail-body {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    padding: 32px;
}

.course-detail-info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.course-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.course-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.course-feature i {
    color: var(--primary);
    font-size: 14px;
}

.course-detail-meta {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.course-meta-item:last-of-type {
    border-bottom: none;
    padding-bottom: 8px;
}

.course-meta-item i {
    color: var(--primary);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.meta-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-top: 2px;
}

/* Academy Form */
.academy-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

    .course-detail-features {
        grid-template-columns: 1fr;
    }

    .course-detail-header {
        padding: 20px;
        flex-wrap: wrap;
    }

    .course-detail-body {
        padding: 20px;
    }

    .academy-form {
        padding: 0 8px;
    }
}

/* --- Location Card --- */
.location-card {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.location-card:hover {
    border-color: rgba(212, 168, 67, 0.2);
}

.location-card > i {
    font-size: 32px;
    color: var(--primary);
}

.location-card div {
    flex: 1;
}

.location-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.location-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .location-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

/* --- Academy Section (index) --- */
.academy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.academy-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.academy-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: var(--shadow);
}

.academy-card.featured {
    border-color: rgba(212, 168, 67, 0.3);
    background: linear-gradient(180deg, rgba(212, 168, 67, 0.05), var(--bg-card));
}

.academy-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 16px;
    background: var(--gradient);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--bg-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.academy-icon {
    position: relative;
    margin-bottom: 24px;
}

.academy-icon i {
    font-size: 36px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.academy-number {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 64px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.academy-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.academy-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.academy-features {
    list-style: none;
}

.academy-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.academy-features li:last-child {
    border-bottom: none;
}

.academy-features i {
    color: var(--primary);
    font-size: 12px;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    padding: 28px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(212, 168, 67, 0.2);
    transform: translateX(4px);
}

.contact-card i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* --- Contact Form --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    font-size: 14px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    left: 16px;
    font-size: 11px;
    color: var(--primary);
    background: var(--bg-dark);
    padding: 0 6px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

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

/* --- Footer --- */
#footer {
    padding: 80px 0 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 90px;
    width: auto;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Radio Section --- */
.radio-player {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.radio-visualizer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

.radio-disc {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
    border: 3px solid rgba(212, 168, 67, 0.2);
}

.radio-disc.spinning {
    animation: spin 4s linear infinite;
}

.radio-disc-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
}

.radio-disc-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.radio-disc.spinning .radio-disc-ring {
    opacity: 1;
    animation: spin 2s linear infinite;
}

.radio-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
}

.radio-bars span {
    display: block;
    width: 4px;
    height: 6px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0.3;
    transition: height 0.15s, opacity 0.15s;
}

.radio-bars.active span {
    opacity: 1;
    animation: barBounce 0.8s ease-in-out infinite;
}

.radio-bars.active span:nth-child(1) { animation-delay: 0s; }
.radio-bars.active span:nth-child(2) { animation-delay: 0.05s; }
.radio-bars.active span:nth-child(3) { animation-delay: 0.1s; }
.radio-bars.active span:nth-child(4) { animation-delay: 0.15s; }
.radio-bars.active span:nth-child(5) { animation-delay: 0.2s; }
.radio-bars.active span:nth-child(6) { animation-delay: 0.25s; }
.radio-bars.active span:nth-child(7) { animation-delay: 0.3s; }
.radio-bars.active span:nth-child(8) { animation-delay: 0.35s; }
.radio-bars.active span:nth-child(9) { animation-delay: 0.4s; }
.radio-bars.active span:nth-child(10) { animation-delay: 0.45s; }
.radio-bars.active span:nth-child(11) { animation-delay: 0.4s; }
.radio-bars.active span:nth-child(12) { animation-delay: 0.35s; }
.radio-bars.active span:nth-child(13) { animation-delay: 0.3s; }
.radio-bars.active span:nth-child(14) { animation-delay: 0.25s; }
.radio-bars.active span:nth-child(15) { animation-delay: 0.2s; }
.radio-bars.active span:nth-child(16) { animation-delay: 0.15s; }
.radio-bars.active span:nth-child(17) { animation-delay: 0.1s; }
.radio-bars.active span:nth-child(18) { animation-delay: 0.05s; }
.radio-bars.active span:nth-child(19) { animation-delay: 0s; }
.radio-bars.active span:nth-child(20) { animation-delay: 0.05s; }

@keyframes barBounce {
    0%, 100% { height: 6px; }
    50% { height: 36px; }
}

.radio-info {
    margin-bottom: 28px;
}

.radio-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e74c3c;
    margin-bottom: 16px;
}

.radio-live-dot {
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.radio-track-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.radio-track-artist {
    font-size: 14px;
    color: var(--text-muted);
}

.radio-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.radio-prev,
.radio-next {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--text-secondary);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.radio-prev:hover,
.radio-next:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.radio-play-btn {
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--bg-dark);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.radio-play-btn:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-glow);
}

.radio-progress {
    margin-bottom: 20px;
}

.radio-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.radio-progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
    width: 0%;
    transition: width 0.1s linear;
}

.radio-progress-bar:hover .radio-progress-fill {
    height: 6px;
    margin-top: -1px;
}

.radio-time {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.radio-volume {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.radio-volume i {
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
}

.radio-volume-slider {
    width: 120px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
}

.radio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

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

.radio-playlist h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.radio-playlist h4 i {
    color: var(--primary);
}

.radio-playlist-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 240px;
    overflow-y: auto;
}

.radio-playlist-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    text-align: left;
}

.radio-playlist-item:hover {
    background: rgba(212, 168, 67, 0.05);
    border-color: rgba(212, 168, 67, 0.15);
}

.radio-playlist-item.active {
    background: rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.3);
}

.radio-playlist-item .playlist-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 24px;
}

.radio-playlist-item.active .playlist-num {
    color: var(--primary);
}

.radio-playlist-item .playlist-title {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.radio-playlist-item .playlist-genre {
    font-size: 11px;
    padding: 3px 10px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 20px;
    color: var(--primary);
    letter-spacing: 0.5px;
}

/* --- Sticky Mini Player --- */
.mini-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 12px 24px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
}

.mini-player.visible {
    display: flex;
}

.mini-player-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-player-dot {
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

.mini-player-track {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.mini-player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-prev,
.mini-next {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--text-secondary);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mini-prev:hover,
.mini-next:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.mini-play {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--bg-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mini-play:hover {
    transform: scale(1.1);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- GLITCH EFFECT --- */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glitch::before {
    animation: glitch-1 3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    -webkit-text-fill-color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.glitch::after {
    animation: glitch-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    -webkit-text-fill-color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

@keyframes glitch-1 {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-5px, 2px); }
    94% { transform: translate(5px, -2px); }
    96% { transform: translate(-3px, 1px); }
    98% { transform: translate(3px, -1px); }
}

@keyframes glitch-2 {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(5px, 1px); }
    93% { transform: translate(-5px, -1px); }
    95% { transform: translate(3px, 2px); }
    97% { transform: translate(-3px, -2px); }
}

/* --- TYPEWRITER EFFECT --- */
.typewriter {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--primary);
    width: 0;
    animation: typewriter 2s steps(14) 1s forwards, blink-caret 0.6s step-end infinite;
    display: inline-block;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary); }
}

/* --- NEON GLOW --- */
.neon-glow {
    animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow:
            0 0 10px rgba(212, 168, 67, 0.3),
            0 0 20px rgba(212, 168, 67, 0.2),
            0 0 40px rgba(212, 168, 67, 0.1);
    }
    50% {
        text-shadow:
            0 0 20px rgba(212, 168, 67, 0.6),
            0 0 40px rgba(212, 168, 67, 0.4),
            0 0 80px rgba(212, 168, 67, 0.2),
            0 0 120px rgba(212, 168, 67, 0.1);
    }
}

/* Neon glow for cards */
.neon-card:hover {
    box-shadow:
        0 0 15px rgba(212, 168, 67, 0.15),
        0 0 30px rgba(212, 168, 67, 0.1),
        0 0 60px rgba(212, 168, 67, 0.05),
        inset 0 0 15px rgba(212, 168, 67, 0.03);
}

/* --- 3D TILT CARD --- */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.tilt-card .tilt-inner {
    transform: translateZ(20px);
    transition: transform 0.3s ease;
}

/* --- MAGNETIC BUTTON --- */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* --- GLOW TRAIL CURSOR --- */
.glow-trail {
    position: fixed;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

.glow-trail.active {
    opacity: 1;
}

/* --- SMOKE / FOG EFFECT --- */
.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.smoke {
    position: absolute;
    bottom: -20%;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 100%);
    animation: smokeRise 8s ease-in-out infinite;
}

.smoke::before,
.smoke::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
}

.smoke::before {
    left: 10%;
    bottom: 20%;
    animation: smokeDrift 12s ease-in-out infinite;
}

.smoke::after {
    right: 15%;
    bottom: 30%;
    animation: smokeDrift 10s ease-in-out infinite reverse;
}

@keyframes smokeRise {
    0%, 100% { transform: translateY(0) scaleX(1); opacity: 0.7; }
    50% { transform: translateY(-30px) scaleX(1.05); opacity: 0.9; }
}

@keyframes smokeDrift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(30px, -20px) scale(1.2); opacity: 0.7; }
    50% { transform: translate(-20px, -40px) scale(1.4); opacity: 0.5; }
    75% { transform: translate(10px, -20px) scale(1.1); opacity: 0.6; }
}

/* --- GRADIENT ANIMATION on text --- */
.gradient-move {
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary), var(--primary-light));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- FLOATING PARTICLES --- */
.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: floatUp 6s ease-in infinite;
}

@keyframes floatUp {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 0.6; transform: translateY(-20px) scale(1); }
    90% { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-400px) scale(0.5); }
}

/* --- ENHANCED SCROLL REVEALS --- */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-rotate {
    opacity: 0;
    transform: perspective(600px) rotateY(15deg);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active,
.reveal-right.active,
.reveal-scale.active,
.reveal-rotate.active {
    opacity: 1;
    transform: none;
}

/* --- STAGGER CASCADE --- */
.stagger-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- VINYL SPIN (enhanced) --- */
.vinyl-hover:hover .music-cover-art {
    animation: vinylSpin 2s linear infinite;
    box-shadow: 0 0 30px rgba(212, 168, 67, 0.2);
}

.vinyl-hover:hover .music-cover-art::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 67, 0.5);
    z-index: 2;
}

@keyframes vinylSpin {
    from { transform: rotate(0deg) scale(1.05); }
    to { transform: rotate(360deg) scale(1.05); }
}

/* --- SECTION DIVIDER WAVE --- */
.section-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
}

/* --- PULSE RING on play buttons --- */
.radio-play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: pulseRing 2s ease-out infinite;
    opacity: 0;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.radio-play-btn {
    position: relative;
}

/* --- HOVER LINE ANIMATION for nav --- */
.nav-link-anim {
    position: relative;
    overflow: hidden;
}

.nav-link-anim::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    transition: left 0.4s ease;
}

.nav-link-anim:hover::before {
    left: 0;
}

/* --- SHIMMER LOADING EFFECT for images --- */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.08), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* --- BOUNCE IN for badges --- */
.bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .academy-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Hide cursor on mobile */
    .cursor-dot, .cursor-outline {
        display: none;
    }

    body.custom-cursor-active {
        cursor: auto;
    }

    body.custom-cursor-active a,
    body.custom-cursor-active button,
    body.custom-cursor-active input,
    body.custom-cursor-active textarea,
    body.custom-cursor-active select {
        cursor: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right var(--transition);
    }

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

    .nav-toggle {
        display: flex;
    }

    #navbar {
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(20px);
        padding: 10px 0;
    }

    .nav-logo-img {
        height: 60px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrapper {
        max-width: 280px;
    }

    .about-skills {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px;
    }

    .event-meta {
        justify-content: center;
    }

    .music-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .radio-player {
        padding: 24px 16px;
    }

    .radio-disc {
        width: 120px;
        height: 120px;
    }

    .radio-disc-logo {
        width: 60px;
        height: 60px;
    }

    .radio-volume {
        display: none;
    }

    .mini-player {
        gap: 16px;
        padding: 10px 16px;
    }

    .mini-player-track {
        max-width: 140px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

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

    .section {
        padding: 80px 0;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stat-number {
        font-size: 24px;
    }
}


/* ========================================
   PROGRAMS SECTION
   ======================================== */
.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.program-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 680px;
    width: 100%;
    transition: var(--transition);
}

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

.program-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--bg-dark);
}

.program-info {
    flex: 1;
}

.program-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.program-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.program-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.program-meta span {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.program-meta span i {
    color: var(--primary);
}

.program-dl-btn {
    white-space: nowrap;
    padding: 12px 24px;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .program-card {
        flex-direction: column;
        text-align: center;
    }
    .program-meta {
        justify-content: center;
    }
    .program-dl-btn {
        width: 100%;
        justify-content: center;
    }
}
