@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;700&display=swap');

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

:root {
    --bg-black: #000000;
    --bg-zinc-950: #09090b;
    --bg-zinc-900: #18181b;
    --bg-zinc-800: #27272a;
    --text-white: #ffffff;
    --text-zinc-100: #f4f4f5;
    --text-zinc-400: #a1a1aa;
    --text-zinc-500: #71717a;
    --accent-orange: #ea580c;
    --accent-orange-hover: #f97316;
    --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-black);
    color: var(--text-zinc-100);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bg-zinc-800);
    z-index: 100;
}

.navbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.025em;
    color: var(--text-white);
}

.navbar-brand span {
    color: var(--accent-orange);
}

.navbar-links {
    display: none;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .navbar-links {
        display: flex;
    }
}

.navbar-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-zinc-400);
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: var(--text-white);
}

.navbar-search {
    display: none;
    flex: 1;
    max-width: 320px;
    margin: 0 2rem;
    position: relative;
}

@media (min-width: 1024px) {
    .navbar-search {
        display: block;
    }
}

.navbar-search input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    background: var(--bg-zinc-900);
    border: 1px solid var(--bg-zinc-800);
    border-radius: 9999px;
    color: var(--text-white);
    font-size: 0.875rem;
}

.navbar-search input::placeholder {
    color: var(--text-zinc-500);
}

.navbar-search input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.navbar-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-zinc-500);
    width: 18px;
    height: 18px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-actions a,
.navbar-actions button {
    padding: 0.5rem;
    color: var(--text-zinc-400);
    transition: color 0.2s;
}

.navbar-actions a:hover,
.navbar-actions button:hover {
    color: var(--text-white);
}

.btn-admin {
    display: none;
    background: var(--text-white);
    color: var(--bg-black);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    transition: background 0.2s;
}

@media (min-width: 768px) {
    .btn-admin {
        display: block;
    }
}

.btn-admin:hover {
    background: var(--bg-zinc-200);
}

.btn-menu {
    display: block;
    color: var(--text-white);
}

@media (min-width: 768px) {
    .btn-menu {
        display: none;
    }
}

/* Main Content */
main {
    padding-top: 64px;
    min-height: 100vh;
    padding-bottom: 100px;
}

/* Slideshow */
.slideshow {
    position: relative;
    height: 60vh;
    overflow: hidden;
    background: var(--bg-black);
}

@media (min-width: 768px) {
    .slideshow {
        height: 75vh;
    }
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-black), rgba(0, 0, 0, 0.4));
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.slide-title {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .slide-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .slide-title {
        font-size: 6rem;
    }
}

.slide-subtitle {
    font-size: 1.25rem;
    color: var(--text-zinc-300);
    margin-bottom: 2rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .slide-subtitle {
        font-size: 1.5rem;
    }
}

.btn-cta {
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.5);
}

.btn-cta:hover {
    background: var(--accent-orange-hover);
    transform: scale(1.05);
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: background 0.2s;
}

.slide-nav:hover {
    background: rgba(255, 255, 255, 0.1);
}

.slide-prev {
    left: 1rem;
}

.slide-next {
    right: 1rem;
}

.slide-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
}

.slide-dot {
    width: 0.5rem;
    height: 0.375rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.slide-dot.active {
    width: 2rem;
    background: var(--accent-orange);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: var(--text-white);
}

.section-subtitle {
    color: var(--text-zinc-500);
}

.section-link {
    color: var(--accent-orange);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

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

/* Stats Section */
.stats-section {
    border-top: 1px solid var(--bg-zinc-900);
    border-bottom: 1px solid var(--bg-zinc-900);
    background: var(--bg-zinc-950);
}

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

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

.stats-item {
    display: flex;
    gap: 1rem;
}

.stats-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(234, 88, 12, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.stats-title {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.stats-desc {
    color: var(--text-zinc-500);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: var(--accent-orange);
    padding: 6rem 0;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: var(--bg-black);
    margin-bottom: 2rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 4.5rem;
    }
}

.cta-btn {
    background: var(--bg-black);
    color: var(--text-white);
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    font-weight: 700;
    transition: transform 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* Beat Card Grid */
.beats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .beats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Beat Card */
.beat-card {
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--bg-zinc-800);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
}

.beat-card:hover {
    border-color: rgba(234, 88, 12, 0.5);
}

.beat-card:hover .beat-artwork img {
    transform: scale(1.1);
}

.beat-card:hover .beat-play-btn {
    transform: translateY(0);
    opacity: 1;
}

.beat-artwork {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.beat-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.beat-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beat-card:hover .beat-play-overlay {
    opacity: 1;
}

.beat-play-btn {
    width: 4rem;
    height: 4rem;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.beat-favorite-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: var(--text-white);
    transition: color 0.2s;
}

.beat-favorite-btn:hover {
    color: var(--accent-orange);
}

.beat-info {
    padding: 1rem;
}

.beat-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.25rem;
}

.beat-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-white);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.beat-title.playing {
    color: var(--accent-orange);
}

.beat-price {
    color: var(--accent-orange);
    font-family: var(--font-mono);
    font-weight: 700;
    margin-left: 0.5rem;
}

.beat-producer {
    color: var(--text-zinc-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.beat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.beat-tag {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--bg-zinc-800);
    color: var(--text-zinc-400);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.beat-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-zinc-800);
}

.beat-meta-info {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-zinc-500);
}

.beat-buy-btn {
    color: var(--text-zinc-400);
    transition: color 0.2s;
}

.beat-buy-btn:hover {
    color: var(--text-white);
}

/* Page Header */
.page-header {
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--text-zinc-500);
}

/* Search and Filter */
.search-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .search-filter-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 20rem;
}

@media (min-width: 768px) {
    .search-box {
        width: 20rem;
    }
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: var(--bg-zinc-900);
    border: 1px solid var(--bg-zinc-800);
    border-radius: 0.75rem;
    color: var(--text-white);
    font-size: 0.875rem;
}

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

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-zinc-500);
    width: 18px;
    height: 18px;
}

.filter-btn {
    padding: 0.75rem;
    background: var(--bg-zinc-900);
    border: 1px solid var(--bg-zinc-800);
    border-radius: 0.75rem;
    color: var(--text-zinc-400);
    transition: color 0.2s;
}

.filter-btn:hover {
    color: var(--text-white);
}

/* Producers Grid */
.producers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .producers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.producer-card {
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--bg-zinc-800);
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.producer-card:hover {
    border-color: rgba(234, 88, 12, 0.5);
}

.producer-avatar {
    position: relative;
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
}

.producer-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-zinc-800);
    transition: border-color 0.3s;
}

.producer-card:hover .producer-avatar img {
    border-color: var(--accent-orange);
}

.producer-badge {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 0.375rem;
    border-radius: 50%;
}

.producer-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.producer-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-zinc-500);
    margin-bottom: 1.5rem;
}

.producer-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-zinc-800);
    color: var(--text-white);
    font-weight: 700;
    border-radius: 0.75rem;
    transition: background 0.2s;
}

.producer-btn:hover {
    background: var(--accent-orange);
}

/* Charts */
.charts-container {
    background: rgba(24, 24, 27, 0.3);
    border: 1px solid var(--bg-zinc-800);
    border-radius: 1.5rem;
    overflow: hidden;
}

.chart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--bg-zinc-800);
    transition: background 0.2s;
}

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

.chart-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.chart-rank {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--bg-zinc-700);
    width: 2rem;
}

.chart-artwork {
    position: relative;
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
}

.chart-artwork img {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    object-fit: cover;
}

.chart-play-btn {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    border-radius: 0.5rem;
}

.chart-item:hover .chart-play-btn {
    opacity: 1;
}

.chart-info {
    flex: 1;
    min-width: 0;
}

.chart-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chart-producer {
    color: var(--text-zinc-500);
    font-size: 0.875rem;
}

.chart-meta {
    display: none;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    font-family: var(--font-mono);
    color: var(--text-zinc-500);
}

@media (min-width: 768px) {
    .chart-meta {
        display: flex;
    }
}

.chart-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.chart-price {
    color: var(--accent-orange);
    font-weight: 900;
    font-size: 1.125rem;
}

.chart-buy-btn {
    padding: 0.75rem;
    background: var(--bg-zinc-800);
    border-radius: 0.75rem;
    color: var(--text-white);
    transition: background 0.2s;
}

.chart-buy-btn:hover {
    background: var(--accent-orange);
}

/* Player */
.player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-zinc-900);
    border-top: 1px solid var(--bg-zinc-800);
    padding: 1rem;
    z-index: 200;
    display: none;
}

.player.active {
    display: block;
}

.player-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 25%;
}

.player-artwork {
    width: 3rem;
    height: 3rem;
    border-radius: 0.25rem;
    object-fit: cover;
}

.player-details {
    overflow: hidden;
}

.player-title {
    color: var(--text-white);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-producer {
    color: var(--text-zinc-400);
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.player-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.player-btn {
    color: var(--text-zinc-400);
    transition: color 0.2s;
}

.player-btn:hover {
    color: var(--text-white);
}

.player-btn-main {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-black);
    transition: transform 0.2s;
}

.player-btn-main:hover {
    transform: scale(1.05);
}

.player-progress {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-zinc-500);
}

.progress-bar {
    flex: 1;
    height: 0.25rem;
    background: var(--bg-zinc-800);
    border-radius: 9999px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--accent-orange);
    border-radius: 9999px;
    position: relative;
}

.progress-thumb {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 0.75rem;
    background: var(--text-white);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

.progress-bar:hover .progress-thumb {
    opacity: 1;
}

.player-actions {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-zinc-400);
}

.volume-bar {
    width: 5rem;
    height: 0.25rem;
    background: var(--bg-zinc-800);
    border-radius: 9999px;
}

.volume-fill {
    width: 66%;
    height: 100%;
    background: var(--text-zinc-400);
    border-radius: 9999px;
}

.player-buy-btn {
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.player-buy-btn:hover {
    background: var(--accent-orange-hover);
}

/* Dashboard */
.dashboard-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .dashboard-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.dashboard-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), #f43f5e);
    padding: 2px;
}

.dashboard-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 900;
    font-style: italic;
    color: var(--text-white);
}

.dashboard-welcome h1 {
    font-size: 2.25rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: var(--text-white);
}

.dashboard-welcome p {
    color: var(--text-zinc-500);
}

.dashboard-actions {
    display: flex;
    gap: 0.75rem;
}

.dashboard-settings-btn {
    padding: 0.75rem;
    background: var(--bg-zinc-900);
    border: 1px solid var(--bg-zinc-800);
    border-radius: 50%;
    color: var(--text-zinc-400);
    transition: color 0.2s;
}

.dashboard-settings-btn:hover {
    color: var(--text-white);
}

.dashboard-edit-btn {
    background: var(--text-white);
    color: var(--bg-black);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: background 0.2s;
}

.dashboard-edit-btn:hover {
    background: var(--bg-zinc-200);
}

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

@media (min-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.dashboard-section {
    margin-bottom: 2rem;
}

.dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-section-title {
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-section-link {
    color: var(--text-zinc-500);
    font-size: 0.875rem;
    font-weight: 700;
}

.dashboard-section-link:hover {
    color: var(--text-white);
}

.purchase-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--bg-zinc-800);
    padding: 1rem;
    border-radius: 1rem;
    transition: border-color 0.2s;
}

.purchase-item:hover {
    border-color: rgba(234, 88, 12, 0.3);
}

.purchase-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.purchase-artwork {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
}

.purchase-artwork img {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    object-fit: cover;
}

.purchase-play-btn {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    border-radius: 0.5rem;
}

.purchase-item:hover .purchase-play-btn {
    opacity: 1;
}

.purchase-title {
    font-weight: 700;
    color: var(--text-white);
}

.purchase-meta {
    color: var(--text-zinc-500);
    font-size: 0.875rem;
}

.purchase-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.purchase-download-btn {
    padding: 0.5rem;
    color: var(--text-zinc-500);
    transition: all 0.2s;
}

.purchase-download-btn:hover {
    color: var(--text-white);
    background: var(--bg-zinc-800);
    border-radius: 0.5rem;
}

.purchase-trackouts-btn {
    background: var(--bg-zinc-800);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    transition: background 0.2s;
}

.purchase-trackouts-btn:hover {
    background: var(--bg-zinc-700);
}

/* Favorites Grid */
.favorites-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .favorites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.favorite-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(24, 24, 27, 0.3);
    border: 1px solid rgba(39, 39, 42, 0.5);
    padding: 1rem;
    border-radius: 1rem;
}

.favorite-artwork {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

.favorite-info {
    flex: 1;
    min-width: 0;
}

.favorite-title {
    font-weight: 700;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.favorite-producer {
    color: var(--text-zinc-500);
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.favorite-btn {
    color: #f43f5e;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.summary-card {
    background: var(--accent-orange);
    border-radius: 1.5rem;
    padding: 1.5rem;
    color: var(--bg-black);
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.summary-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.summary-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.7;
}

.summary-value {
    font-size: 1.5rem;
    font-weight: 900;
}

.summary-btn {
    width: 100%;
    margin-top: 2rem;
    background: var(--bg-black);
    color: var(--text-white);
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: transform 0.2s;
}

.summary-btn:hover {
    transform: scale(1.05);
}

.activity-card {
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--bg-zinc-800);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.activity-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
}

.activity-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent-orange);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.activity-text {
    font-size: 0.875rem;
    color: var(--text-white);
    font-weight: 500;
}

.activity-time {
    font-size: 0.75rem;
    color: var(--text-zinc-500);
}

/* Admin Dashboard */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.admin-add-btn {
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
    box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.4);
}

.admin-add-btn:hover {
    background: var(--accent-orange-hover);
}

.admin-header-actions {
    display: flex;
    gap: 1rem;
}

.admin-logout-btn {
    background: var(--bg-zinc-800);
    color: var(--text-zinc-400);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.admin-logout-btn:hover {
    background: var(--bg-zinc-700);
    color: var(--text-white);
}

/* Admin Stats Grid */
.admin-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .admin-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.admin-stat-card {
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--bg-zinc-800);
    padding: 1.5rem;
    border-radius: 1rem;
}

.admin-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.admin-stat-icon {
    padding: 0.75rem;
    background: var(--bg-zinc-800);
    border-radius: 0.75rem;
}

.admin-stat-change {
    font-size: 0.875rem;
    font-weight: 700;
}

.admin-stat-change.positive {
    color: #10b981;
}

.admin-stat-change.negative {
    color: #f43f5e;
}

.admin-stat-label {
    color: var(--text-zinc-500);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.admin-stat-value {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: -0.025em;
}

/* Admin Tables */
.admin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .admin-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.admin-table-card {
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--bg-zinc-800);
    border-radius: 1rem;
    overflow: hidden;
}

.admin-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--bg-zinc-800);
}

.admin-table-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
}

.admin-table {
    width: 100%;
    text-align: left;
}

.admin-table th {
    padding: 1rem 1.5rem;
    color: var(--text-zinc-500);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--bg-zinc-800);
}

.admin-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--bg-zinc-800);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.admin-beat-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-beat-img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.25rem;
    object-fit: cover;
}

.admin-beat-title {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.875rem;
}

.admin-beat-meta {
    color: var(--text-zinc-500);
    font-size: 0.75rem;
}

.admin-status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.admin-price {
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

.admin-sales {
    color: var(--text-zinc-400);
    font-size: 0.875rem;
}

/* Top Producers Card */
.top-producers-card {
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--bg-zinc-800);
    border-radius: 1rem;
    padding: 1.5rem;
}

.top-producers-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.top-producers-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.top-producer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-producer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-producer-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--bg-zinc-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
}

.top-producer-name {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.875rem;
}

.top-producer-sales {
    color: var(--text-zinc-500);
    font-size: 0.75rem;
}

.top-producer-amount {
    color: #10b981;
    font-weight: 700;
    font-size: 0.875rem;
}

.top-producers-btn {
    width: 100%;
    margin-top: 2rem;
    padding: 0.75rem;
    border: 1px solid var(--bg-zinc-800);
    border-radius: 0.75rem;
    color: var(--text-zinc-400);
    font-weight: 700;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.top-producers-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.modal {
    background: var(--bg-zinc-900);
    border: 1px solid var(--bg-zinc-800);
    border-radius: 1.5rem;
    padding: 2rem;
    width: 100%;
    max-width: 32rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-zinc-500);
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-white);
}

.modal-title {
    font-size: 1.875rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: var(--text-white);
    margin-bottom: 2rem;
}

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

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

@media (min-width: 640px) {
    .modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-zinc-500);
}

.form-input {
    padding: 0.75rem;
    background: var(--bg-zinc-800);
    border: 1px solid var(--bg-zinc-700);
    border-radius: 0.75rem;
    color: var(--text-white);
    font-size: 0.875rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.modal-submit {
    padding: 1rem;
    background: var(--accent-orange);
    color: var(--text-white);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.modal-submit:hover {
    background: var(--accent-orange-hover);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-zinc-800);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bg-zinc-700);
}

/* Selection */
::selection {
    background: var(--accent-orange);
    color: var(--text-white);
}

/* Hidden/Visible helpers */
.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }
    
    .md\:hidden {
        display: none;
    }
}

@media (min-width: 1024px) {
    .lg\:block {
        display: block;
    }
    
    .lg\:hidden {
        display: none;
    }
    
    .lg\:flex {
        display: flex;
    }
}