/* 90s VTM Retro Styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Marker Felt', 'Trebuchet MS', cursive, sans-serif;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #fb5607);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    cursor: none; /* Hide default cursor */
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated stars background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(2px 2px at 10% 90%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 5s ease-in-out infinite;
    z-index: 0;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Music Player - COMMENTED OUT (copyright issues, vervang met royalty-free muziek) */
/*
.music-player {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff006e, #8338ec);
    border: 4px solid #ffbe0b;
    border-radius: 15px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9998;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.music-player:hover {
    transform: scale(1.05) translateY(-2px);
}

.player-icon {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.player-btn {
    background: #ffbe0b;
    border: 3px solid white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 0 #d4a005, 0 6px 10px rgba(0, 0, 0, 0.3);
}

.player-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #d4a005, 0 4px 8px rgba(0, 0, 0, 0.3);
}

.player-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 #d4a005, 0 2px 5px rgba(0, 0, 0, 0.3);
}

.player-btn .play-icon {
    display: inline-block;
    line-height: 1;
}

.player-btn.playing .play-icon::before {
    content: '⏸️';
}

.player-info {
    display: flex;
    flex-direction: column;
    color: white;
}

.track-name {
    font-size: 0.9rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Comic Sans MS', cursive;
}
*/

/* Header */
.vtm-header {
    background: linear-gradient(180deg, #ff006e 0%, #8338ec 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 5px solid #ffbe0b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Chickens Easter Egg */
.chickens-container {
    position: absolute;
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
    display: none; /* Hidden by default */
    gap: 20px;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
}

.chickens-container.walking {
    display: flex; /* Only show when walking */
    animation: chickens-walk 5s linear forwards;
}

@keyframes chickens-walk {
    0% {
        left: -150px;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        left: calc(100% + 150px);
        opacity: 0;
    }
}

.chicken {
    width: 50px;
    height: 50px;
    animation: chicken-bob 0.5s ease-in-out infinite;
}

.chicken svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

@keyframes chicken-bob {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-3px) rotate(2deg);
    }
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.glowing-title {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 30px #ffbe0b,
        0 0 40px #ffbe0b,
        0 0 50px #ffbe0b;
    animation: glow-pulse 2s ease-in-out infinite;
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ffbe0b; }
    50% { text-shadow: 0 0 20px #fff, 0 0 30px #ffbe0b, 0 0 40px #ffbe0b, 0 0 50px #ffbe0b; }
}

.subtitle {
    font-size: 1.5rem;
    color: #ffbe0b;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.blink {
    animation: blink 1.5s step-start infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Navigation */
.retro-nav {
    background: #3a86ff;
    padding: 1rem;
    text-align: center;
    border-bottom: 3px solid #ffbe0b;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: padding 0.3s ease, transform 0.3s ease;
}

.nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #3a86ff;
    border-top: 2px solid #ffbe0b;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    animation: slide-down-menu 0.3s ease;
    padding: 1rem 0;
}

@keyframes slide-down-menu {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Show menu when active */
.nav-menu.active {
    display: flex;
}

/* Burger Menu - visible on all screens for now */
.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 45px;
    height: 45px;
    background: linear-gradient(180deg, #ff006e 0%, #d00057 100%);
    border: 3px solid #ffbe0b;
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 
        0 5px 0 #8d003e,
        0 8px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    z-index: 101;
}

.burger-menu:hover {
    transform: translateY(calc(-50% + 2px));
    box-shadow: 
        0 3px 0 #8d003e,
        0 6px 10px rgba(0, 0, 0, 0.3);
}

.burger-menu:active {
    transform: translateY(calc(-50% + 5px));
    box-shadow: 
        0 0px 0 #8d003e,
        0 3px 5px rgba(0, 0, 0, 0.3);
}

.burger-line {
    width: 100%;
    height: 3px;
    background: #ffbe0b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Burger menu animation when open */
.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.nav-btn {
    background: linear-gradient(180deg, #ff006e 0%, #d00057 100%);
    color: white;
    border: 3px solid #ffbe0b;
    padding: 15px 30px;
    margin: 10px auto;
    width: 90%;
    max-width: 300px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 10px;
    box-shadow: 
        0 5px 0 #8d003e,
        0 8px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease;
    font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Marker Felt', 'Trebuchet MS', cursive, sans-serif !important;
}

.nav-btn:hover {
    transform: translateY(2px);
    box-shadow: 
        0 3px 0 #8d003e,
        0 6px 10px rgba(0, 0, 0, 0.3);
}

.nav-btn:active {
    transform: translateY(5px);
    box-shadow: 
        0 0px 0 #8d003e,
        0 3px 5px rgba(0, 0, 0, 0.3);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.content-section {
    margin: 3rem 0;
}

.section-header {
    background: linear-gradient(90deg, #ff006e, #8338ec);
    padding: 1.5rem;
    border: 4px solid #ffbe0b;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.section-header h2 {
    font-size: 2.5rem;
    text-align: center;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.content-box {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 2rem;
    border: 4px solid #ffbe0b;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* About Section */
.profile-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.profile-image {
    flex: 0 0 250px;
    width: 250px;
    height: auto;
    border: 5px solid #ffbe0b;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    background: linear-gradient(135deg, #ff006e, #8338ec);
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bio-text {
    flex: 1;
    min-width: 300px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.bio-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.highlight {
    background: linear-gradient(90deg, #ff006e, #8338ec);
    color: white;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: bold;
}

.fun-facts {
    background: linear-gradient(135deg, #ffbe0b, #fb5607);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border: 3px solid #ff006e;
}

.fun-facts h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.fun-facts ul {
    list-style: none;
    padding-left: 0;
}

.fun-facts li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Marquee */
.marquee-container {
    background: #ff006e;
    border: 3px solid #ffbe0b;
    margin-bottom: 2rem;
    overflow: hidden;
    padding: 1rem 0;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffbe0b;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Shows Grid */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.show-card-link,
.show-card-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    animation: slide-in 0.5s ease;
}

.show-card-link {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.show-card-link:hover {
    transform: translateY(-5px) rotate(1deg);
}

.show-card {
    background: linear-gradient(135deg, #8338ec, #3a86ff);
    color: white;
    padding: 1.5rem;
    border: 4px solid #ffbe0b;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.show-card-link:hover .show-card {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.show-date {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffbe0b;
}

.show-venue {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.show-location {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.show-time {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.show-ticket-badge {
    display: inline-block;
    background: #ff006e;
    color: white;
    padding: 10px 20px;
    border: 2px solid #ffbe0b;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.2s ease;
}

.show-card-link:hover .show-ticket-badge {
    background: #ffbe0b;
    color: #333;
    transform: scale(1.05);
}

.loading {
    text-align: center;
    font-size: 1.5rem;
    padding: 2rem;
    color: #8338ec;
    font-weight: bold;
}

/* Druiverlarie / Podcast Section */
.podcast-intro {
    margin-bottom: 1.5rem;
    text-align: center;
}

.podcast-intro .intro-text {
    font-size: 1.2rem;
    color: #333;
}

.video-header {
    text-align: center;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: normal;
    font-style: italic;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border: 5px solid #ffbe0b;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #8338ec, #3a86ff);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.podcast-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.youtube-btn {
    display: inline-block;
    background: linear-gradient(180deg, #ff0000, #cc0000);
    color: white;
    padding: 15px 30px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border: 4px solid #ffbe0b;
    border-radius: 10px;
    box-shadow: 
        0 5px 0 #8b0000,
        0 8px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Marker Felt', 'Trebuchet MS', cursive, sans-serif !important;
}

.youtube-btn:hover {
    transform: translateY(2px);
    box-shadow: 
        0 3px 0 #8b0000,
        0 6px 10px rgba(0, 0, 0, 0.3);
}

.youtube-btn:active {
    transform: translateY(5px);
    box-shadow: 
        0 0px 0 #8b0000,
        0 3px 5px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.contact-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.contact-card-link:hover {
    transform: scale(1.05) rotate(2deg);
}

.contact-card {
    background: linear-gradient(135deg, #3a86ff, #8338ec);
    color: white;
    padding: 2rem;
    border: 4px solid #ffbe0b;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 200px;
}

.contact-card-link:hover .contact-card {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: white;
}

.contact-text {
    color: #ffbe0b;
    font-weight: bold;
    overflow-wrap: break-word;
    word-wrap: break-word;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.booking-info {
    background: linear-gradient(90deg, #ff006e, #fb5607);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 3px solid #ffbe0b;
}

.booking-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffbe0b;
}

.booking-info p {
    font-size: 1.2rem;
    color: white;
}

/* Footer */
.vtm-footer {
    background: linear-gradient(180deg, #8338ec 0%, #3a86ff 100%);
    padding: 2rem;
    text-align: center;
    border-top: 5px solid #ffbe0b;
    margin-top: 4rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    min-height: 150px;
}

.footer-content p {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.counter-container {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.counter {
    background: #000;
    color: #0f0;
    padding: 5px 15px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    border: 2px solid #0f0;
    display: inline-block;
}

/* Edouard's Kia Sportage Easter Egg - Hidden in footer */
.kia-container {
    position: absolute;
    z-index: 50;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
    opacity: 0.8;
    cursor: pointer !important;
    animation: none !important;
    text-align: center;
    /* Statisch - geen beweging! */
}

.kia-container:hover {
    transform: scale(1.4) rotate(-5deg);
    opacity: 1;
    filter: drop-shadow(0 0 20px #ff006e) drop-shadow(0 0 30px #ffbe0b);
    animation: kia-honk 0.3s ease;
}

@keyframes kia-honk {
    0%, 100% { transform: scale(1.4) rotate(-5deg); }
    25% { transform: scale(1.5) rotate(-8deg); }
    75% { transform: scale(1.3) rotate(-3deg); }
}

.kia-emoji {
    font-size: 48px;
    line-height: 1;
    filter: hue-rotate(330deg) saturate(2);
}

.kia-label {
    text-align: center;
    font-size: 10px;
    color: #ffbe0b;
    background: rgba(0, 0, 0, 0.8);
    padding: 3px 8px;
    border-radius: 5px;
    margin-top: 5px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kia-container:hover .kia-label {
    opacity: 1;
}

/* Custom Bus Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform-origin: center center;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    will-change: transform;
}

.bus-body {
    width: 40px;
    height: 25px;
}

.wheel-spokes {
    animation: spin-wheel 0.5s linear infinite;
}

@keyframes spin-wheel {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Show default cursor on interactive elements */
a, button, input, textarea, select {
    cursor: pointer !important;
}

/* Toast notification animations */
@keyframes slide-down {
    from {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes slide-up {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-family: 'Comic Sans MS', 'Trebuchet MS', cursive, sans-serif !important;
        cursor: auto;
    }
    
    .glowing-title {
        font-size: 2.5rem;
        font-family: 'Comic Sans MS', 'Trebuchet MS', cursive, sans-serif !important;
    }
    
    .subtitle {
        font-size: 1.2rem;
        font-family: 'Comic Sans MS', 'Trebuchet MS', cursive, sans-serif !important;
    }
    
    /* Navbar op mobile */
    .retro-nav {
        padding: 1rem;
        position: relative;
    }
    
    .retro-nav.scrolled {
        padding: 0.5rem;
    }
    
    .retro-nav.scrolled .burger-menu {
        width: 35px;
        height: 35px;
        padding: 6px;
        left: 10px;
    }
    
    .retro-nav.scrolled .burger-line {
        height: 2px;
    }
    
    .nav-btn {
        width: 80%;
        padding: 15px 30px;
        font-size: 1.2rem;
        font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Marker Felt', 'Trebuchet MS', cursive, sans-serif !important;
    }
    
    .retro-nav.scrolled .nav-btn {
        padding: 10px 20px;
        font-size: 1rem;
        margin: 8px auto;
    }
    
    /* Extra specificiteit voor navbar op mobile */
    .retro-nav .nav-btn {
        font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Marker Felt', 'Trebuchet MS', cursive, sans-serif !important;
    }
    
    /* Force font op buttons in navbar */
    nav.retro-nav button.nav-btn {
        font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Marker Felt', 'Trebuchet MS', cursive, sans-serif !important;
    }
    
    .profile-container {
        flex-direction: column;
        align-items: center;
    }
    
    .profile-image {
        margin-bottom: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        font-family: 'Comic Sans MS', 'Trebuchet MS', cursive, sans-serif !important;
    }
    
    main {
        padding: 1rem;
    }
    
    /* Disable custom cursor on mobile */
    .custom-cursor {
        display: none;
    }
    
    /* Hide chickens on mobile for performance */
    .chickens-container {
        display: none;
    }
    
    /* Ensure all text elements use the right font */
    h1, h2, h3, h4, h5, h6, p, a, button, div, span {
        font-family: 'Comic Sans MS', 'Trebuchet MS', cursive, sans-serif !important;
    }
    
    /* Music player rechtsonder op mobile - COMMENTED OUT */
    /*
    .music-player {
        top: auto;
        bottom: 20px;
        right: 15px;
        padding: 8px 10px;
        gap: 8px;
    }
    
    .player-icon {
        font-size: 1.2rem;
    }
    
    .player-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .track-name {
        font-size: 0.75rem;
    }
    */
}

