:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --accent: #39ff14;
    --accent-dim: rgba(57, 255, 20, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Cervantes', Georgia, serif;
}

@font-face {
    font-family: 'Cervantes';
    src: url('fonts/Cervantes/Web Fonts/cervantes-webfont.woff2') format('woff2'),
         url('fonts/Cervantes/Web Fonts/cervantes-webfont.woff') format('woff'),
         url('fonts/Cervantes/Fonts/Cervantes.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: var(--font-display);
}

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

.logo:hover .logo-img {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}

.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s;
    border: 1px solid transparent;
    white-space: nowrap;
}

.nav-link-btn:hover {
    color: var(--accent);
    border-color: rgba(57, 255, 20, 0.3);
    background: rgba(57, 255, 20, 0.05);
}

.nav-socials:hover {
    color: #ff1744;
    border-color: rgba(255, 23, 68, 0.3);
    background: rgba(255, 23, 68, 0.05);
}

.nav-muziek:hover {
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.05);
}

.nav-galerij:hover {
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.05);
}

.nav-over:hover {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
}

.nav-contact:hover {
    color: #39ff14;
    border-color: rgba(57, 255, 20, 0.3);
    background: rgba(57, 255, 20, 0.05);
}

.nav-maps:hover {
    color: #00c8ff;
    border-color: rgba(0, 200, 255, 0.3);
    background: rgba(0, 200, 255, 0.05);
}

.nav-woordenboek:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px 30px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    margin-bottom: 0.25rem;
    font-family: var(--font-display);
}

.hero-logo-img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-tagline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.hero-blocks {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 0.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
}

.hero-block:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.15);
    transform: translateY(-2px);
}

.hero-block-maps {
    border-color: rgba(0, 255, 255, 0.35);
    background: linear-gradient(145deg, rgba(0, 200, 255, 0.08), rgba(57, 255, 20, 0.05), var(--bg-secondary));
    box-shadow: inset 0 0 18px rgba(0, 200, 255, 0.08);
}

.hero-block-maps:hover {
    border-color: #00c8ff;
    box-shadow: 0 0 24px rgba(0, 200, 255, 0.25);
}

.hero-block-maps .hero-block-icon {
    stroke: #00c8ff;
}

.hero-block-maps:hover .hero-block-icon {
    stroke: #80eaff;
}

.hero-block-woordenboek {
    border-color: rgba(255, 255, 255, 0.35);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), var(--bg-secondary));
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.hero-block-woordenboek:hover {
    border-color: #ffffff;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.2);
}

.hero-block-woordenboek .hero-block-icon {
    stroke: #ffffff;
}

.hero-block-woordenboek:hover .hero-block-icon {
    stroke: #ffffff;
}

.hero-block-woordenboek .hero-block-title {
    color: #ffffff;
}

.hero-block-checksonar {
    border-color: rgba(168, 85, 247, 0.35);
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.08), var(--bg-secondary));
    box-shadow: inset 0 0 18px rgba(168, 85, 247, 0.08);
}

.hero-block-checksonar:hover {
    border-color: #a855f7;
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.25);
}

.hero-block-checksonar .hero-block-icon {
    stroke: #a855f7;
}

.hero-block-checksonar:hover .hero-block-icon {
    stroke: #c084fc;
}

.hero-block-icon {
    width: 28px;
    height: 28px;
    stroke: var(--text-secondary);
    transition: stroke 0.3s;
}

.hero-block-checksonar .hero-block-icon {
    stroke: #a855f7;
}

.hero-block-checksonar:hover .hero-block-icon {
    stroke: #c084fc;
}

.hero-block:hover .hero-block-icon {
    stroke: var(--accent);
}

.hero-block-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
}

.hero-scroll-hint {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 0.8; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .hero-blocks {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-blocks {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

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

.btn-soundcloud {
    background: #ff5500;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.35);
    border-color: #ff5500;
}

.btn-soundcloud:hover {
    background: #ff6a00;
    box-shadow: 0 0 35px rgba(255, 85, 0, 0.55);
    transform: translateY(-2px);
}

.btn-soundcloud .platform-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Sections */
.section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: var(--font-display);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 0;
    box-shadow: 0 0 10px var(--accent);
}

/* Music */
.music-embed {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.music-embed iframe {
    border-radius: 8px;
}

.embed-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
}

.embed-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.placeholder-hint {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* About */
.over-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.origin-story {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.image-placeholder {
    background: var(--bg-secondary);
    border-radius: 8px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.over-image .image-placeholder {
    aspect-ratio: 3/4;
}

/* Gallery */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 auto;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    padding: 0 4px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Shop */
.shop-embed {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 400px;
}

.shop-placeholder {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Socials */
.social-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.social-block {
    position: relative;
    background: var(--block-bg, #000);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--block-color);
    box-shadow: 0 0 12px var(--block-color);
}

.block-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.social-block:nth-child(1) .block-icon {
    width: 64px;
    height: 64px;
}

.social-block:nth-child(2) .block-icon {
    width: 64px;
    height: 64px;
}

.social-block:nth-child(3) .block-icon {
    width: 64px;
    height: 64px;
}

.social-block:nth-child(4) .block-icon {
    width: 80px;
    height: 80px;
}

.block-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s;
}

.block-link:hover {
    color: var(--block-color);
    border-color: var(--block-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.15);
    transform: translateY(-1px);
}

.platform-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.block-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.block-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.block-list li {
    position: relative;
    padding-left: 1rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
}

.block-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}

.social-block:nth-child(1) .block-list li::before {
    background: #ff1744;
    box-shadow: 0 0 6px #ff1744;
}

.social-block:nth-child(2) .block-list li::before {
    background: #39ff14;
    box-shadow: 0 0 6px #39ff14;
}

.social-block:nth-child(3) .block-list li::before {
    background: #00e5ff;
    box-shadow: 0 0 6px #00e5ff;
}

.social-block:nth-child(4) .block-list li::before {
    background: #ffffff;
    box-shadow: 0 0 6px #ffffff;
}

.block-tags {
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.social-block:last-child .block-link:hover {
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .social-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .social-blocks {
        grid-template-columns: 1fr;
    }
}

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

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-link {
    display: block;
    color: var(--accent);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.contact-link-sub {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.contact-link-sub:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Woordenboek */
.woordenboek-container {
    max-height: 500px;
    overflow-y: auto;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    scroll-behavior: smooth;
}

.woordenboek-container::-webkit-scrollbar {
    width: 8px;
}

.woordenboek-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.woordenboek-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.woordenboek-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.favoriet-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.favoriet-label:first-child {
    margin-top: 0;
}

.woord-item {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0.35rem 0;
}

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

.woord-item--described {
    background: rgba(57, 255, 20, 0.04);
    border-left: 3px solid var(--accent);
    padding: 0.4rem 0.6rem;
    border-radius: 0 4px 4px 0;
    margin: 0.2rem 0;
}

.definitie {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.85;
    margin-left: 0.3rem;
    font-weight: 400;
}

.woordenboek-footnote {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Maps */
.maps-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.map-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.map-control-btn {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.map-control-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.map-control-btn.active {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.map-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    user-select: none;
}

.filter-check {
    accent-color: var(--accent);
    cursor: pointer;
}

.maps-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: 600px;
}

.maps-main {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
    background: #111;
    overscroll-behavior: none;
}

.custom-marker,
.custom-marker-dot {
    background: transparent;
    border: none;
}

.cluster-marker {
    background: transparent;
    border: none;
}

.cluster-badge {
    width: 28px;
    height: 28px;
    background: #ff1744;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 23, 68, 0.6);
    border: 2px solid #fff;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.leaflet-popup-content-wrapper {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leaflet-popup-tip {
    background: var(--bg-secondary);
}

.leaflet-container a {
    color: var(--accent);
}

.category-legend {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.category-group {
    background: var(--bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 1rem;
}

.category-group-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    flex-wrap: wrap;
}

.category-hint {
    font-size: 0.7rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-left: 0.4rem;
    animation: hintBounce 2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes hintBounce {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(-2px); opacity: 1; }
}

@keyframes togglePulse {
    0%, 100% { border-color: rgba(255, 255, 255, 0.35); }
    50% { border-color: rgba(57, 255, 20, 0.6); box-shadow: 0 0 8px rgba(57, 255, 20, 0.15); }
}

.category-toggle {
    margin-left: auto;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: var(--text-primary);
    font-size: 0.7rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    border-radius: 4px;
    transition: all 0.25s ease;
    animation: togglePulse 2s ease-in-out 1;
}

.category-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(57, 255, 20, 0.08);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.category-group-list {
    overflow: hidden;
}

.category-subgroup {
    margin-bottom: 0.5rem;
}

.category-subgroup-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-subgroup-title .category-toggle {
    margin-left: auto;
}

.category-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 4px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

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

.category-item-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.category-item-text {
    flex: 1;
}

.category-item-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.3;
}

.category-item-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
}

/* Verificatie */
.verification-section {
    padding-top: 100px;
    min-height: 100vh;
}

.verification-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
}

.verification-logo {
    margin-bottom: 1.5rem;
}

.verification-logo-img {
    height: 60px;
    width: auto;
    opacity: 0.9;
}

.verification-artist-name {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-main);
    margin-bottom: 0.5rem;
}

.verification-stage-name {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.verification-email {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 8px;
    transition: all 0.3s;
}

.verification-email:hover {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.verification-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.verification-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e4407e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.verification-instagram:hover {
    color: #f06;
    text-decoration: underline;
}

.verification-instagram .instagram-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.2);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.carousel-slide {
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        gap: 0.25rem;
    }

    .nav-link-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }

    .nav-link-icon {
        width: 14px;
        height: 14px;
    }

    .maps-layout {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-links {
        order: 3;
        flex-basis: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .nav-link-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.6rem;
    }

    .nav-link-icon {
        width: 14px;
        height: 14px;
    }

    .logo-img {
        height: 32px;
    }

    .over-content {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .woordenboek-container {
        max-height: 400px;
    }

    .maps-layout {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .music-embed,
    .shop-embed {
        padding: 1.5rem;
    }

    .maps-layout {
        height: 350px;
    }

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

    .woord-card--wide {
        grid-column: span 1;
    }
}
