:root {
    --bg-color: #0e0e14;
    /* Deep black/gray */
    --card-bg: #111111;
    --text-color: #ffffff;
    --text-muted: #888888;
    --accent-pink: #ff0055;
    /* Vibrant pink from screenshot */
    --grid-gap: 20px;
    --container-width: 1600px;
    --font-primary: 'Oswald', sans-serif;
    --radius-card: 20px;
    --radius-pill: 50px;
    --section-padding: 120px 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
a,
button {
    text-transform: lowercase;
    /* Stylistic choice from screenshots */
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Header */
header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 120px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.nav-links a {
    opacity: 0.6;
    color: transparent;
    font-size: 1.5rem;
    font-weight: 600;
    -webkit-text-stroke: 0.8px #b026ff;
    transition: all 1.5s ease;
    text-shadow: 0 0 5px rgba(176, 38, 255, 0.2);
}

.nav-links a:hover {
    opacity: 1;
    color: transparent;
    -webkit-text-stroke: 0.8px #b026ff;
    text-shadow: 0 0 15px rgba(176, 38, 255, 0.6);
    transition: all 0.3s ease;
    transform: scale(1.1);
}

/* Submit button removed */

/* Layout Grid for Sections (Sidebar Label + Content) */
.section-wrapper {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    /* Left Label | Content | Right Action */
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 20px;
    gap: 20px;
}

.vertical-label {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradient-animate {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.vertical-label h2 {
    font-family: var(--font-primary);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 4rem;
    font-weight: 900;
    white-space: nowrap;
    line-height: 0;

    /* Base Style: Faintly Visible */
    opacity: 0.1;
    /* Very slight visibility */
    /* Maintain layout but keep content faint */
    color: transparent;
    -webkit-text-stroke: 1px #b026ff;

    transition: all 1.5s ease;
    /* Slow fade out */
}

/* Show on hover of the container or the element itself */
.vertical-label:hover h2 {
    opacity: 1;

    /* Neon Outline Effect (Stroke) */
    color: transparent;
    -webkit-text-stroke: 1px #b026ff;
    text-shadow: 0 0 10px rgba(176, 38, 255, 0.4);

    /* Quick fade in */
    transition: all 0.3s ease;

    /* Optional interaction feedback */
    transform: rotate(180deg) scale(1.02);
}

.section-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-view-all {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: transparent;
    border: 2px solid var(--accent-pink);
    color: var(--accent-pink);
    padding: 20px 10px;
    border-radius: var(--radius-pill);
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-view-all:hover {
    background: var(--accent-pink);
    color: white;
}

/* Hero */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 140px;
    /* Align with content grid */
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    line-height: 1.1;
}

.hero-links {
    margin-top: 30px;
}

.hero-links a {
    font-size: 1.5rem;
    text-decoration: underline;
    text-decoration-color: #333;
    margin-right: 20px;
    color: #555;
    font-weight: 600;
}

.hero-links a:hover {
    color: white;
    text-decoration-color: white;
}

/* Card Grid (Releases) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius-card);
    padding: 15px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-artist {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Artists Pills */
/* Artists Pills */
.artist-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.artist-pill {
    /* Refined Size & Layout */
    background: transparent;
    /* Remove solid background */
    padding: 5px 15px;
    /* Smaller padding */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;

    /* Base Style: Faint */
    opacity: 0.2;
    color: transparent;
    -webkit-text-stroke: 0.5px var(--accent-pink);
    /* Subtle neon pink outline */
}

.artist-pill:hover {
    background: transparent;
    /* Ensure no bg on hover */
    opacity: 1;

    /* Neon Pink Glow */
    -webkit-text-stroke: 0.5px var(--accent-pink);
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.4);
    transform: scale(1.05);
}



/* Avatar styles removed */

.artist-name {
    font-weight: 600;
    font-size: 1.5rem;
    /* Increased from 0.9rem to 1.5rem */
    letter-spacing: 0.5px;
}

/* Footer */
footer {
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: 80px;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.neon-glow-text {
    /* Base color fallback, actual glow injected via inline style */
    color: #b026ff;
}

/* Responsive */
@media (max-width: 1024px) {
    header {
        padding: 15px 25px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }

    header {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        padding: 15px !important;
        position: relative !important;
        /* Fixed: Changed from static */
        z-index: 1000 !important;
        background: var(--bg-color);
        width: 100% !important;
    }

    .logo-container {
        justify-content: center !important;
        width: 100% !important;
    }

    .logo-image {
        height: 60px !important;
    }

    .nav-links {
        flex-wrap: wrap !important;
        gap: 10px 15px !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .nav-links a {
        font-size: 1rem !important;
        -webkit-text-stroke: 0.5px #b026ff !important;
        pointer-events: auto !important;
        /* Ensure clickable */
    }

    .hero {
        padding-top: 40px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        text-align: center !important;
        height: auto !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 30px !important;
        width: 100% !important;
    }

    .hero-flex-row {
        flex-direction: column !important;
        gap: 30px !important;
        align-items: center !important;
        width: 100% !important;
        display: flex !important;
    }

    .hero-sub {
        font-size: 1.1rem !important;
        text-align: center !important;
        line-height: 1.4 !important;
        margin-bottom: 0 !important;
    }

    .hero-links {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15px 25px !important;
        margin-top: 25px !important;
        width: 100% !important;
    }

    .hero-links a {
        font-size: 1.1rem !important;
        margin-right: 0 !important;
    }

    #countdown-wrapper {
        flex-direction: column !important;
        padding: 20px !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
    }

    .countdown-image-container img {
        width: 100px !important;
        height: 100px !important;
    }

    .countdown-info {
        text-align: center !important;
        width: 100% !important;
    }

    .timer-grid {
        justify-content: center !important;
        gap: 12px !important;
        width: 100% !important;
        display: flex !important;
    }

    .timer-value {
        font-size: 2rem !important;
    }

    .timer-unit {
        font-size: 0.5rem !important;
    }

    .section-wrapper {
        grid-template-columns: 1fr !important;
        padding: var(--section-padding) !important;
        display: grid !important;
    }

    .vertical-label {
        margin-bottom: 25px !important;
        height: auto !important;
        display: block !important;
        writing-mode: horizontal-tb !important;
        transform: none !important;
        text-align: left !important;
        /* Fixed: Added alignment */
    }

    .vertical-label h2 {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        font-size: 2.5rem !important;
        text-align: left !important;
        /* Fixed: Added alignment */
        line-height: 1.2 !important;
    }

    .card-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        display: grid !important;
    }

    @media (min-width: 480px) {
        .card-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }

    .btn-view-all {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        margin: 15px auto 0 !important;
        display: inline-block !important;
    }

    .section-actions {
        flex-direction: row !important;
        justify-content: center !important;
        margin-top: 25px !important;
        display: flex !important;
    }

    .artists-container {
        padding: 60px 20px !important;
    }

    .artist-pill {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px !important;
        display: flex !important;
    }

    .artist-name {
        font-size: 1.1rem !important;
    }

    footer {
        padding: 30px 20px !important;
        margin-top: 30px !important;
    }

    .footer-text {
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
    }
}