/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff;
    --accent-gray: #888888;
    --highlight-color: #ff0000;
    --gradient-start: #000000;
    --gradient-end: #1a1a1a;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-color);
    color: var(--accent-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Accessibility - Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--highlight-color);
    color: var(--accent-color);
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Notification System */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 16px 24px;
    background: rgba(26, 26, 26, 0.95);
    color: var(--accent-color);
    border-left: 4px solid var(--highlight-color);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 400px;
    font-size: 0.95rem;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    border-left-color: #4CAF50;
}

.notification-info {
    border-left-color: #2196F3;
}

.notification-error {
    border-left-color: #f44336;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    transition: padding 0.3s ease;
}

.navbar.scrolled .container {
    padding: 0.6rem 2rem;
}

.logo {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo:hover,
.logo:focus-visible {
    color: inherit;
}

.logo-mark {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.1;
}

.logo span {
    color: var(--accent-gray);
    font-weight: 300;
}

.tagline {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--accent-gray);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-link.nav-cta {
    padding: 0.55rem 1.2rem;
    background: var(--highlight-color);
    color: var(--accent-color);
    border: 1px solid var(--highlight-color);
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.nav-link.nav-cta:hover {
    background: transparent;
    color: var(--highlight-color);
    transform: translateY(-2px);
}

.nav-link.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--accent-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    background-image: 
        linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%),
        url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title span {
    display: block;
    color: var(--accent-gray);
    font-weight: 300;
    letter-spacing: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: var(--accent-gray);
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    font-size: 0.9rem;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-button--ghost {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.cta-button--ghost:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    position: relative;
    animation: scroll 2s infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title span {
    color: var(--accent-gray);
    font-weight: 300;
}

.section-subtitle {
    text-align: center;
    color: var(--accent-gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Artists Section */
.artists-section {
    background: var(--secondary-color);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* Featured-Single Spotlight: ein einziger Artist groß zentriert */
.artists-grid--featured-single {
    grid-template-columns: minmax(0, 880px);
    justify-content: center;
}

.artist-card--spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.artist-card--spotlight .artist-image {
    height: auto;
    min-height: 480px;
}

.artist-card--spotlight .artist-info {
    padding: 2.5rem 2.5rem 2.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--highlight-color, #e63946);
    font-weight: 700;
    margin-bottom: 0.75rem;
    border-left: 2px solid currentColor;
    padding-left: 0.6rem;
}

@media (max-width: 720px) {
    .artist-card--spotlight {
        grid-template-columns: 1fr;
    }
    .artist-card--spotlight .artist-image {
        min-height: 360px;
    }
    .artist-card--spotlight .artist-info {
        padding: 2rem;
    }
}

.artist-card {
    background: var(--primary-color);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-card:hover {
    transform: translateY(-10px);
}

.artist-card.featured {
    grid-column: span 1;
}

.artist-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-socials {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: var(--accent-gray);
}

.artist-info {
    padding: 2rem;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.artist-genre {
    color: var(--accent-gray);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.artist-cta-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.artist-cta {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.artist-cta i {
    font-size: 1rem;
    width: 1.1rem;
    text-align: center;
}

.artist-cta:hover {
    color: var(--accent-gray);
    gap: 0.75rem;
}

.artist-loading {
    color: var(--accent-gray);
    text-align: center;
    padding: 2rem;
    grid-column: 1 / -1;
}

/* Coming-Soon Artist Cards */
.artist-card--coming-soon {
    opacity: 0.85;
}

.artist-card--coming-soon:hover {
    opacity: 1;
    transform: translateY(-6px);
}

.artist-image--placeholder {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 12px,
            rgba(255, 255, 255, 0.05) 12px,
            rgba(255, 255, 255, 0.05) 24px
        ),
        linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-badge {
    background: var(--highlight-color);
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    padding: 0.7rem 1.4rem;
    border: 2px solid var(--accent-color);
}

.coming-soon-text {
    color: var(--accent-gray);
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: 0.5rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Channels Section */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.channel-card {
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.35);
}

.channel-icon {
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
    color: var(--accent-color);
}

.channel-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.channel-card p {
    color: var(--accent-gray);
    margin-bottom: 1rem;
}

.channel-link {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    background: var(--accent-color);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
    margin-bottom: 1rem;
}

.channel-link:hover {
    background: var(--accent-gray);
}

.channel-embed {
    width: 100%;
    min-height: 170px;
    border: 0;
    border-radius: 2px;
}

.channel-embed--youtube {
    aspect-ratio: 16 / 9;
    min-height: 0;
}

.channel-embed--spotify {
    min-height: 152px;
}

.channel-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: 0.25rem;
}

.channel-gallery__tile {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
}

.channel-gallery__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.3s ease;
    filter: saturate(0.95);
}

.channel-gallery__tile:hover img,
.channel-gallery__tile:focus-visible img {
    transform: scale(1.06);
    filter: saturate(1.15);
}

.channel-gallery__tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.channel-gallery__tile:hover::after,
.channel-gallery__tile:focus-visible::after {
    opacity: 1;
}

.todo-box {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
}

.todo-box h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.todo-box ul {
    margin-left: 1.2rem;
    color: var(--accent-gray);
}

.todo-box li {
    margin-bottom: 0.6rem;
}

/* Recording Section */
.recording-section {
    background: var(--primary-color);
}

.recording-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.recording-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.recording-info > p {
    color: var(--accent-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.services-list {
    margin-bottom: 3rem;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
}

.service-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.service-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-text p {
    color: var(--accent-gray);
    font-weight: 300;
}

.studio-equipment {
    margin: 5rem 0 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(10,10,10,0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.studio-equipment h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.equipment-intro {
    text-align: center;
    color: var(--accent-gray);
    font-weight: 300;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.equipment-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.equipment-tab {
    background: transparent;
    color: var(--accent-gray);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.7rem 1.4rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    min-height: 44px;
}

.equipment-tab:hover {
    color: var(--accent-color);
    border-color: rgba(255, 255, 255, 0.4);
}

.equipment-tab.active {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.equipment-tab span {
    margin-right: 0.4rem;
}

.equipment-panels {
    min-height: 240px;
}

.equipment-panel {
    animation: fadeInUp 0.4s ease;
}

.equipment-panel[hidden] {
    display: none;
}

.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.equipment-list li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.1rem 1.3rem;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.equipment-list li:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.equipment-list strong {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--accent-color);
}

.equipment-list span {
    color: var(--accent-gray);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
}

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

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Beats Section */
.beats-section {
    background: var(--secondary-color);
}

.beats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

@supports (grid-template-columns: repeat(3, minmax(0, 360px))) {
    .beats-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
        justify-content: center;
    }
}

.beat-card {
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.beat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.35);
}

/* WaveSurfer waveform container */
.beat-waveform {
    padding: 1.5rem 1.5rem 0;
    cursor: pointer;
}

.beat-waveform wave {
    overflow: hidden !important;
}

/* Play/Pause controls row */
.beat-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem 0;
}

.beat-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.15s ease;
}

.beat-play-btn:hover {
    background: #e0e0e0;
    transform: scale(1.08);
}

.beat-play-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.beat-time {
    font-size: 0.78rem;
    color: var(--accent-gray);
    letter-spacing: 0.5px;
    font-family: 'Montserrat', monospace;
}

.beat-info {
    padding: 1rem 1.5rem 1.5rem;
}

.beat-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.beat-meta {
    color: var(--accent-gray);
    font-size: 0.82rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.beat-actions {
    display: flex;
    align-items: center;
}

.beat-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.beat-cart {
    padding: 0.5rem 1.4rem;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    font-size: 0.75rem;
    transition: all 0.25s ease;
}

.beat-cart:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    background: var(--secondary-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.35);
}

.pricing-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.pricing-card__icon {
    font-size: 1.6rem;
    line-height: 1;
}

.pricing-card__header h3 {
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    margin: 0;
}

.pricing-card__by {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent-gray);
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.2rem 0.5rem;
}

.pricing-card__intro {
    color: var(--accent-gray);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.pricing-list {
    list-style: none;
    margin: 0 0 1.75rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.pricing-list li {
    position: relative;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
}

.pricing-list__highlight {
    border-color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
}

.pricing-tier {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.pricing-amount {
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--accent-color);
    white-space: nowrap;
}

.pricing-amount small {
    font-size: 0.7rem;
    color: var(--accent-gray);
    font-weight: 400;
    margin-left: 0.15rem;
}

.pricing-detail {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.78rem;
    color: var(--accent-gray);
    letter-spacing: 0.5px;
}

.pricing-badge {
    position: absolute;
    top: -0.7rem;
    right: 0.85rem;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0.2rem 0.55rem;
    text-transform: uppercase;
}

.pricing-card__cta {
    align-self: flex-start;
    font-size: 0.8rem;
    padding: 0.7rem 1.2rem;
}

.pricing-footnote {
    text-align: center;
    color: var(--accent-gray);
    font-size: 0.8rem;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

/* Shop Section */
.shop-section {
    background: var(--primary-color);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.product-button {
    width: 100%;
    padding: 0.8rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.product-button:hover {
    background: var(--accent-gray);
}

/* Merch Teaser */
.merch-teaser {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.merch-teaser-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.merch-teaser-content > p {
    color: var(--accent-gray);
    font-weight: 300;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1 1 240px;
    padding: 1rem 1.2rem;
    background: var(--secondary-color);
    color: var(--accent-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form .cta-button {
    padding: 0.95rem 2rem;
    cursor: pointer;
}

.newsletter-disclaimer {
    font-size: 0.8rem;
    color: var(--accent-gray);
    font-weight: 300;
}

.newsletter-status {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    min-height: 1.2rem;
}

.newsletter-status.success {
    color: #4CAF50;
}

.newsletter-status.error {
    color: #f44336;
}

.merch-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.merch-placeholder {
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(10,10,10,0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.merch-placeholder:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

.merch-placeholder:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.merch-placeholder-icon {
    font-size: 3rem;
    opacity: 0.85;
}

.merch-placeholder-label {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--accent-gray);
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 768px) {
    .merch-teaser {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .merch-teaser-grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto;
    }
    .merch-placeholder:first-child {
        grid-row: auto;
    }
}

/* Footer */
.footer {
    background: var(--secondary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.footer-brand span {
    color: var(--accent-gray);
    font-weight: 300;
}

.footer-brand p {
    color: var(--accent-gray);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    font-style: italic;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--accent-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: var(--accent-gray);
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    color: var(--accent-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-gray);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-gray);
    font-size: 0.9rem;
}

.footer-legal-links {
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.legal-link {
    background: none;
    border: none;
    color: rgba(255,255,255,0.45);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    letter-spacing: 0.5px;
    padding: 0;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: #ffffff;
}

/* Legal Modals */
.legal-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 1rem;
    overflow-y: auto;
}

.legal-modal.active {
    display: flex;
}

.legal-modal-box {
    background: #111111;
    border: 1px solid rgba(255,255,255,0.12);
    max-width: 760px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    margin: auto;
}

.legal-modal-box h2 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.legal-modal-box p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.legal-modal-box a {
    color: #ffffff;
    text-decoration: underline;
}

.legal-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.legal-modal-close:hover {
    color: #ffffff;
}

/* Datenschutz iFrame content */
.itrk-legaltext {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    line-height: 1.7;
}

.itrk-legaltext * {
    color: rgba(255,255,255,0.75) !important;
    background: transparent !important;
    font-family: 'Montserrat', sans-serif !important;
}

.itrk-legaltext a {
    color: #ffffff !important;
}

.itrk-legaltext h1, .itrk-legaltext h2, .itrk-legaltext h3 {
    color: #ffffff !important;
    margin: 1.2rem 0 0.5rem;
}

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

@keyframes scroll {
    0%, 20% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    80%, 100% {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .recording-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 4rem 1rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu .nav-link {
        font-size: 1.4rem;
        letter-spacing: 3px;
        padding: 0.75rem 1.5rem;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
    }

    .nav-menu .nav-link.nav-cta {
        margin-top: 1rem;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .hamburger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }
    .hamburger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }
    .hamburger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }

    body.nav-open {
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 5px;
    }
    
    .hero-title span {
        letter-spacing: 8px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .artists-grid,
    .channels-grid,
    .beats-grid,
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

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