:root {
    --bg-color: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-main: #ffffff;
    --text-sec: #888888;
    --accent: #1DB954;
    --border: #333333;
    --font-stack: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-stack);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, background 0.2s;
    background: var(--card-bg);
    color: var(--text-main);
}

.btn:hover {
    transform: scale(1.02);
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

/* Grid for Releases */
.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

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

.release-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.release-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.release-info {
    padding: 16px;
}

.release-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.release-meta {
    color: var(--text-sec);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}

/* Landing Page Styles */
.landing-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    max-width: 520px;
    margin: 0 auto;
    z-index: 1;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
}

.back-link {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--text-sec);
    font-size: 0.9rem;
}

.album-cover-lg {
    width: 280px;
    height: 280px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-cover-lg:hover {
    transform: scale(1.02);
}

/* Song Title - Dynamic Size Based on Length */
.song-title-lg {
    font-size: clamp(1rem, 5vw, 2rem);
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.2;
    max-width: 100%;
    padding: 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist-name-lg {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.platform-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.platform-btn {
    background: rgba(30, 30, 35, 0.95);
    padding: 18px 20px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: none;
}

.platform-btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Modern Platform Button Styles */
.platform-btn-modern {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.platform-btn-modern:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Play Button Text - White with glow */
.play-text {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.platform-btn:hover {
    background: rgba(40, 40, 45, 0.98);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* YouTube Embed */
.youtube-embed {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 25px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.youtube-embed iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

/* Admin Styles */
.login-screen {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-dashboard {
    padding: 40px 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

input,
select {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: white;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 12px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-sec);
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */

/* Mobile - Small phones */
@media (max-width: 380px) {
    .landing-page {
        padding: 20px 15px;
    }

    .album-cover-lg {
        width: 220px;
        height: 220px;
    }

    .song-title-lg {
        font-size: 1.4rem;
    }

    .platform-btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile - Standard phones */
@media (min-width: 381px) and (max-width: 576px) {
    .landing-page {
        max-width: 100%;
        padding: 30px 20px;
    }

    .album-cover-lg {
        width: 260px;
        height: 260px;
    }

    .song-title-lg {
        font-size: 1.6rem;
    }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 992px) {
    .landing-page {
        max-width: 560px;
        padding: 40px 30px;
    }

    .album-cover-lg {
        width: 320px;
        height: 320px;
    }

    .song-title-lg {
        font-size: 2rem;
    }

    .platform-btn {
        padding: 20px 24px;
    }

    .release-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

/* Desktop */
@media (min-width: 993px) and (max-width: 1600px) {
    .landing-page {
        max-width: 520px;
        padding: 50px 30px;
    }

    .album-cover-lg {
        width: 300px;
        height: 300px;
    }

    .song-title-lg {
        font-size: 2.2rem;
    }
}

/* TV / Large Screens */
@media (min-width: 1601px) {
    .landing-page {
        max-width: 700px;
        padding: 60px 40px;
    }

    .album-cover-lg {
        width: 400px;
        height: 400px;
        border-radius: 32px;
    }

    .song-title-lg {
        font-size: 3rem;
    }

    .artist-name-lg {
        font-size: 1.4rem;
    }

    .platform-btn {
        padding: 24px 30px;
        font-size: 1.2rem;
        border-radius: 18px;
    }

    .platform-icon {
        width: 32px;
        height: 32px;
    }

    .youtube-embed {
        border-radius: 24px;
    }

    .release-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 32px;
    }
}