/* Raw Sessions Blog - Dark Electronic Music Aesthetic */

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent: #ff3366;
    --accent-secondary: #00ccff;
    --accent-gradient: linear-gradient(135deg, #ff3366 0%, #ff6633 100%);
    --border-color: #222222;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --max-width: 1200px;
    --header-height: 70px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

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

a:hover {
    color: var(--accent-secondary);
}

/* ================================
   SKELETON LOADERS
   ================================ */

@keyframes skeleton-pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

.skeleton {
    background: var(--bg-secondary);
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-card {
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.skeleton-image {
    aspect-ratio: 1;
    background: var(--bg-secondary);
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-text {
    height: 1rem;
    background: var(--bg-secondary);
    border-radius: 4px;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-text-sm {
    height: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 4px;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-text-lg {
    height: 1.25rem;
    background: var(--bg-secondary);
    border-radius: 4px;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skeleton-player {
    height: 120px;
    background: var(--bg-secondary);
    border-radius: 8px;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.skeleton-tag {
    width: 60px;
    height: 24px;
    background: var(--bg-secondary);
    border-radius: 4px;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

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

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.logo-image {
    height: 55px;
    width: auto;
}

.logo-raw {
    color: var(--accent);
}

.logo-dj {
    color: var(--accent-secondary);
}

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

/* Live Badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: #e53935;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    animation: pulse-live 1.5s ease-in-out infinite;
    text-decoration: none;
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

.live-badge:hover {
    background: #c62828;
    color: white;
}

@keyframes pulse-live {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(229, 57, 53, 0);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Hamburger menu button - hidden by default */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.nav-dropdown-toggle:hover {
    color: var(--text-primary);
}

.nav-dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.4rem;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 150px;
    padding: 0.5rem 0;
    padding-top: 1rem;
    margin-top: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* Invisible bridge to prevent gap */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: normal;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

/* Search */
.search-box {
    position: relative;
}

.search-box input {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    width: 200px;
    transition: all 0.2s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent);
    width: 250px;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-results {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.search-result {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.search-result:last-child {
    border-bottom: none;
}

.search-result:hover {
    background: var(--bg-hover);
}

/* Main Content */
.main-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - var(--header-height) - 200px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, transparent 100%);
    border-radius: 8px;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Headings */
.featured-posts h2,
.authors-section h2,
.tags-section h2,
.author-posts h2,
.author-bio-full h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.featured-posts h2::after,
.authors-section h2::after,
.tags-section h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.post-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(255, 51, 102, 0.1);
}

.post-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.post-card-link:hover {
    color: inherit;
}

.post-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

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

.post-card-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.post-meta time {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.post-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.post-card h3 a {
    color: var(--text-primary);
}

.post-card h3 a:hover {
    color: var(--accent);
}

.post-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.post-author a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Authors Grid */
.authors-section {
    margin-bottom: 4rem;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.author-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.author-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Tags Cloud */
.tags-section {
    margin-bottom: 4rem;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.tag-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.tag-count {
    font-size: 0.75rem;
    background: var(--bg-secondary);
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    color: var(--text-muted);
}

/* Single Post */
.post-single {
    max-width: 800px;
    margin: 0 auto;
}

.post-hero {
    margin: 0 -2rem 2rem;
}

.post-hero-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-hero figcaption {
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

.post-header {
    margin-bottom: 2rem;
}

.post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.post-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.post-author-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.post-author-box .author-avatar {
    width: 60px;
    height: 60px;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

/* Audio/Video Embeds */
.post-audio,
.post-video {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
}

.post-audio audio,
.post-video video {
    width: 100%;
    display: block;
}

.post-video iframe {
    aspect-ratio: 16/9;
}

/* Post Content */
.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.post-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
}

.post-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content img {
    border-radius: 8px;
    margin: 2rem 0;
}

.post-content blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-primary);
}

.post-content code {
    font-family: var(--font-mono);
    background: var(--bg-card);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
}

.post-content pre {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.post-content pre code {
    background: none;
    padding: 0;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Post Footer */
.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-share span {
    color: var(--text-muted);
}

.post-share a {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.post-share a:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

/* Author Sidebar */
.author-sidebar {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.author-sidebar h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.author-card-full {
    text-align: center;
}

.author-bio-short {
    text-align: left;
}

.author-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.author-card-full h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.author-genres {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.genre-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--bg-secondary);
    border-radius: 20px;
    color: var(--text-secondary);
}

.author-bio-short {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 1rem 0;
}

.author-bio-short p {
    margin-bottom: 0.75rem;
}

.author-bio-short p:last-child {
    margin-bottom: 0;
}

.author-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.author-socials a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn-view-profile {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
}

/* Author Page */
.author-page {
    max-width: 900px;
    margin: 0 auto;
}

.author-header {
    margin-bottom: 3rem;
}

.author-hero {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.author-avatar-hero {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-hero-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
}

.author-hero-info h1 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.author-realname {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.author-role-hero {
    font-size: 1.1rem;
    color: var(--accent);
}

.author-genres-hero {
    margin: 1rem 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.author-socials-hero {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.social-link:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.author-bio-full {
    margin-bottom: 3rem;
}

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

.bio-content p {
    margin-bottom: 1rem;
}

/* Posts List (Author page) */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.post-list-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.post-list-item:hover {
    border-color: var(--accent);
}

.post-list-image {
    flex-shrink: 0;
    width: 200px;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
}

.post-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-list-content {
    flex: 1;
}

.post-list-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.post-list-content h3 a {
    color: var(--text-primary);
}

/* Tag Page */
.tag-page {
    max-width: 1000px;
    margin: 0 auto;
}

.tag-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tag-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.tag-header h1 {
    font-size: 2.5rem;
    color: var(--accent);
}

.tag-count {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Archive Page */
.archive-page {
    max-width: 900px;
    margin: 0 auto;
}

.archive-header {
    text-align: center;
    margin-bottom: 3rem;
}

.archive-header h1 {
    font-size: 2.5rem;
}

.archive-count {
    color: var(--text-muted);
}

.archive-year {
    font-size: 1.5rem;
    color: var(--accent);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.archive-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
}

.archive-item:hover {
    background: var(--bg-card);
    color: inherit;
}

.archive-item time {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.archive-item h3 {
    font-size: 1rem;
    font-weight: 500;
}

.archive-item h3 a {
    color: var(--text-primary);
}

.archive-author {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.archive-tags {
    display: flex;
    gap: 0.5rem;
}

.tag-small {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    background: var(--bg-secondary);
    border-radius: 3px;
    color: var(--text-muted);
}

/* ================================
   TOOLS PAGES
   ================================ */

.tools-page {
    max-width: 900px;
    margin: 0 auto;
}

.tools-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tools-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    display: block;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
}

.tool-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 51, 102, 0.1);
    color: inherit;
}

.tool-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    color: white;
}

.tool-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.tool-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Tool Page (Individual tool) */
.tool-page {
    max-width: 600px;
    margin: 0 auto;
}

.tool-header {
    text-align: center;
    margin-bottom: 2rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.back-link:hover {
    color: var(--accent);
}

.tool-header h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

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

/* DJ Name Form */
.dj-name-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.dj-name-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.char-count {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.form-group input[type="text"],
.form-group textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group input[type="text"]::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

/* Range slider */
.form-group input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    outline: none;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--accent-gradient);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.form-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.form-group input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.energy-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Checkbox */
.form-group-checkbox {
    flex-direction: column;
    gap: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    cursor: pointer;
}

.checkbox-text {
    font-size: 1rem;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Form error */
.form-error {
    padding: 0.75rem 1rem;
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.3);
    border-radius: 8px;
    color: #e53935;
    font-size: 0.9rem;
}

/* Submit button */
.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff3366 0%, #ff6633 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.submit-btn:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn span {
    color: #ffffff;
}

/* Results section */
.results-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.results-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

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

.result-number {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.result-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.result-explanation {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.try-again-btn {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.try-again-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Loading Modal */
.loading-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

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

.loading-modal-content {
    text-align: center;
    padding: 3rem;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
}

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

.loading-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.loading-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Responsive tools */
@media (max-width: 560px) {
    .dj-name-form-container {
        padding: 1.5rem;
    }

    .tool-header h1 {
        font-size: 1.75rem;
    }

    .result-item {
        padding: 0.75rem;
    }

    .result-name {
        font-size: 1rem;
    }
}

/* Footer */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
    padding: 3rem 0 0;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-brand {
    color: var(--text-secondary);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-genres h4,
.footer-legal h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-legal p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-genres a,
.footer-genres span {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: 3rem auto 0;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.copyright-notice {
    font-size: 0.75rem;
    max-width: 600px;
    margin: 0.5rem auto 0;
    line-height: 1.5;
}

.footer-brand .logo-dj {
    color: var(--accent-secondary);
    font-size: 1.5rem;
}

/* ================================
   LIVE/NOW PLAYING SECTION
   ================================ */

.live-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* Live State */
.live-now {
    text-align: center;
}

.live-indicator {
    margin-bottom: 1.5rem;
}

.live-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: #e53935;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 8px;
    animation: pulse-live 1.5s ease-in-out infinite;
}

.live-badge-large::before {
    content: '';
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

.live-player {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.live-player iframe {
    display: block;
    width: 100%;
}

.live-link {
    margin-top: 1rem;
}

/* Offline State */
.offline-state {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.latest-show h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.show-card-featured {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.show-card-featured .show-image {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.show-card-featured .show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-card-featured .show-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.show-card-featured .show-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.show-card-featured .show-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.play-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4);
    color: white;
}

.show-player-embed {
    border-radius: 8px;
    overflow: hidden;
}

.show-player-embed iframe {
    display: block;
}

.latest-show .show-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Next Show Banner */
.next-show-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #ff6633 100%);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    min-width: 220px;
}

.next-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.next-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.next-dj {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.next-datetime {
    display: block;
    margin-top: 0.5rem;
}

.next-date {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

.next-time {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

/* ================================
   SHOWS SECTION
   ================================ */

.shows-section {
    margin-bottom: 4rem;
}

.shows-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shows-section h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.show-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.show-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(255, 51, 102, 0.1);
}

.show-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.show-card-link:hover {
    color: inherit;
}

.show-card .show-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

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

.show-duration {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: white;
}

.show-card-content {
    padding: 1rem;
}

.show-card-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.show-card .show-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.view-all-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

.view-all-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ================================
   BLOG SECTION
   ================================ */

.blog-section {
    margin-bottom: 4rem;
}

.blog-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-section h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.posts-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* ================================
   TOP 10 CHART SECTION
   ================================ */

.chart-section {
    margin-bottom: 4rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.chart-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.chart-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.chart-list {
    display: flex;
    flex-direction: column;
}

.chart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.15s ease;
}

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

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

.chart-desc {
    color: var(--text-muted);
    font-style: italic;
}

.chart-position {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 1.75rem;
    text-align: right;
    font-family: var(--font-mono);
}

/* Top 3 special styling */
.chart-item:nth-child(1) .chart-position {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-item:nth-child(2) .chart-position,
.chart-item:nth-child(3) .chart-position {
    color: var(--accent-secondary);
}

.chart-track-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

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

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

/* Chart label styling */
.chart-label {
    color: var(--text-muted);
}

/* Chart actions container */
.chart-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

/* Buy button styling */
.chart-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.15s ease;
}

.chart-buy-btn:hover {
    background: var(--bg-hover);
    color: var(--accent-secondary);
}

.chart-buy-btn svg {
    width: 16px;
    height: 16px;
}

.chart-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--accent);
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.chart-play-btn:hover {
    background: var(--accent);
    color: white;
}

.chart-play-btn svg {
    width: 14px;
    height: 14px;
    margin-left: 1px;
}

/* Expand/collapse toggle */
.chart-expand-toggle {
    display: none;
}

.chart-item-hidden {
    display: none;
}

.chart-expand-toggle:checked ~ .chart-list .chart-item-hidden {
    display: flex;
}

.chart-expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.15s ease;
    width: 100%;
}

.chart-expand-btn:hover {
    color: var(--accent);
}

.chart-expand-icon {
    transition: transform 0.2s ease;
}

.chart-expand-toggle:checked ~ .chart-expand-btn .chart-expand-icon {
    transform: rotate(180deg);
}

.chart-collapse-text {
    display: none;
}

.chart-expand-toggle:checked ~ .chart-expand-btn .chart-expand-text {
    display: none;
}

.chart-expand-toggle:checked ~ .chart-expand-btn .chart-collapse-text {
    display: inline;
}

.chart-archive-link {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    padding: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.15s ease;
}

.chart-archive-link:hover {
    color: var(--accent);
}

.chart-nav {
    margin-top: 1rem;
    text-align: center;
}

.chart-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.chart-page .chart-section {
    margin-bottom: 2rem;
}

/* Responsive chart styles */
@media (max-width: 560px) {
    .chart-section {
        padding: 1rem;
    }

    .chart-header {
        flex-direction: column;
        gap: 0.15rem;
    }

    .chart-item {
        gap: 0.75rem;
        padding: 0.4rem 0.25rem;
    }

    .chart-track-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .chart-position {
        font-size: 0.9rem;
        min-width: 1.5rem;
    }

    .chart-track-title {
        font-size: 0.85rem;
    }

    .chart-track-artist {
        font-size: 0.75rem;
    }

    .chart-play-btn,
    .chart-buy-btn {
        width: 28px;
        height: 28px;
    }

    .chart-play-btn svg {
        width: 12px;
        height: 12px;
    }

    .chart-buy-btn svg {
        width: 14px;
        height: 14px;
    }

    .chart-actions {
        gap: 0.15rem;
    }
}

/* ================================
   RECENT CONTENT SECTION (Unified Feed)
   ================================ */

.recent-section {
    margin-bottom: 4rem;
}

.recent-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.recent-section h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

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

.content-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(255, 51, 102, 0.1);
}

.content-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.content-card-link:hover {
    color: inherit;
}

.content-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-secondary);
}

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

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

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

.content-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.show-badge {
    background: var(--accent);
    color: white;
}

.post-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    backdrop-filter: blur(4px);
}

.content-duration {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: white;
}

.content-card-body {
    padding: 1rem;
}

.content-card-body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.content-meta .post-author {
    color: var(--text-secondary);
}

.content-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.view-all-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ================================
   PAGINATION
   ================================ */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.pagination-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(.disabled) {
    border-color: var(--accent);
    color: var(--accent);
}

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

.pagination-info {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ================================
   DJS & PRODUCERS SECTION
   ================================ */

.djs-section {
    margin-bottom: 4rem;
}

.djs-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.djs-section h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.djs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.dj-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.dj-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.dj-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.dj-avatar-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.dj-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.dj-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.dj-genres .genre-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
}

/* ================================
   RESPONSIVE - Live & Shows
   ================================ */

@media (max-width: 900px) {
    .offline-state {
        grid-template-columns: 1fr;
    }

    .next-show-banner {
        order: -1;
    }
}

@media (max-width: 768px) {
    .show-card-featured {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .show-card-featured .show-image {
        max-width: 200px;
        margin: 0 auto;
    }

    .show-card-featured .show-meta {
        justify-content: center;
    }

    .show-card-featured .show-tags {
        justify-content: center;
    }

    .show-card-featured .show-actions {
        margin-top: 1rem;
    }

    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

    .live-section {
        padding: 1.5rem;
    }

    .view-all-links {
        flex-direction: column;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .pagination-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

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

/* No Posts Message */
.no-posts,
.no-content {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

/* Responsive - Nav wraps earlier due to many links */
@media (max-width: 1100px) {
    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links {
        gap: 0.75rem;
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .search-box {
        order: 2;
    }
}

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

    .nav-links a {
        font-size: 0.8rem;
    }

    .search-box input {
        width: 150px;
    }

    .hero-logo {
        max-width: 300px;
    }
}

/* Mobile hamburger menu */
@media (max-width: 560px) {
    .nav-toggle {
        display: block;
        order: 2;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
    }

    .nav-links.nav-open {
        display: flex;
    }

    .nav-links a,
    .nav-dropdown-toggle {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1rem;
    }

    .nav-links > a:last-child,
    .nav-dropdown:last-child .nav-dropdown-toggle {
        border-bottom: none;
    }

    /* Mobile dropdown - inline instead of hovering */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        display: block;
        width: 100%;
        text-align: left;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        min-width: auto;
    }

    .nav-dropdown-menu::before,
    .nav-dropdown-menu::after {
        display: none;
    }

    .nav-dropdown-menu a {
        padding: 0.5rem 0 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .search-box {
        order: 3;
        width: 100%;
        margin-top: 0.5rem;
    }

    .search-box input {
        width: 100%;
    }

    .hero-logo {
        max-width: 250px;
    }

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

    .author-hero {
        flex-direction: column;
        text-align: center;
    }

    .author-genres-hero,
    .author-socials-hero {
        justify-content: center;
    }

    .post-list-item {
        flex-direction: column;
    }

    .post-list-image {
        width: 100%;
    }

    .archive-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
