:root {
    --bg-color: #030508;
    --card-bg: #0b101a;
    --text-color: #e0e6ed;
    --accent: #00f0ff;
    --accent-dim: rgba(0, 240, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Syncopate', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

@media (hover: none) {
    * { cursor: auto; }
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
}

.cursor, .cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: block;
}

.cursor {
    width: 6px;
    height: 6px;
    background: var(--accent);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.1s, width 0.3s, height 0.3s;
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    background: var(--accent-dim);
    border-color: var(--accent);
}

@media (hover: none) {
    .cursor, .cursor-follower { display: none; }
}

.loader-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--bg-color);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.loader-bar {
    width: 150px; height: 1px;
    background: #222; overflow: hidden;
}

.loader-progress {
    width: 0%; height: 100%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    transition: width 0.1s;
}

nav {
    position: fixed; top: 0; width: 100%;
    padding: 25px 40px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(3,5,8,0.9), transparent);
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex; list-style: none; gap: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    opacity: 0.7;
    transition: 0.3s;
}

.nav-links a:hover { opacity: 1; color: var(--accent); }

.menu-btn {
    width: 30px; height: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2000;
}

.menu-btn .bar {
    width: 100%; height: 2px;
    background-color: var(--text-color);
    transition: 0.3s;
}

.mobile-menu-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--bg-color);
    z-index: 1500;
    display: flex;
    justify-content: center; align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.open { transform: translateY(0); }

.mobile-links { list-style: none; text-align: center; }
.mobile-links li { margin: 30px 0; overflow: hidden; }
.mobile-link {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-color);
    text-decoration: none;
    transform: translateY(100%);
    transition: transform 0.5s;
}
.mobile-menu-overlay.open .mobile-link { transform: translateY(0); }

.hero {
    height: 100vh; width: 100%;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.orb {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.flux-text {
    font-family: var(--font-display);
    font-size: 5vw;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, var(--accent), #fff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: flux 5s linear infinite;
    margin-bottom: 20px;
}

@keyframes flux {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.subtitle {
    font-size: 1.1rem; color: #8892b0; margin-bottom: 50px;
    letter-spacing: 1px;
}

.cta-btn {
    padding: 18px 45px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-dim);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 120px 0; }

.section-title {
    font-family: var(--font-display);
    font-size: 3rem; margin-bottom: 60px;
    text-transform: uppercase;
}

.outline { -webkit-text-stroke: 1px var(--text-color); color: transparent; }

.artist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.artist-card {
    height: 450px;
    position: relative;
    background: var(--card-bg);
    overflow: hidden;
    transition: transform 0.4s;
}

.card-image {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.6s, opacity 0.4s;
    opacity: 0.6;
}

.artist-card:hover .card-image { transform: scale(1.05); opacity: 1; }

.card-info {
    position: absolute; bottom: 0; left: 0;
    width: 100%; padding: 30px;
    background: linear-gradient(to top, #000, transparent);
}

.card-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem; margin-bottom: 5px;
    color: var(--accent);
}

.release-container {
    display: flex; align-items: center; gap: 80px;
}

.vinyl-display {
    position: relative; width: 400px; height: 400px; flex-shrink: 0;
}

.album-cover {
    width: 100%; height: 100%;
    position: relative; z-index: 2;
    background-size: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.vinyl-record {
    position: absolute; top: 10px; right: 10px;
    width: 95%; height: 95%;
    background: #050505; border-radius: 50%; z-index: 1;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: repeating-radial-gradient(#111 0, #111 2px, #222 3px, #222 4px);
}

.vinyl-display:hover .vinyl-record { transform: translateX(40%) rotate(360deg); }

.flux-text-small {
    font-family: var(--font-display);
    font-size: 2.5rem; text-transform: uppercase;
    color: var(--text-color); margin-bottom: 10px;
}

.platform-links button {
    margin-right: 15px; padding: 12px 30px;
    background: transparent; border: 1px solid #333;
    color: #fff; margin-top: 30px; transition: 0.3s;
    cursor: pointer; font-family: var(--font-main);
    text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px;
}
.platform-links button:hover { border-color: var(--accent); color: var(--accent); }

.marquee {
    background: var(--text-color); color: var(--bg-color);
    padding: 10px 0; margin-bottom: 80px;
    transform: rotate(-1deg); width: 105%; margin-left: -2.5%;
}
.marquee-content {
    white-space: nowrap; animation: scroll 20s linear infinite;
    font-family: var(--font-display); font-weight: 700;
}

@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.scroll-reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .artist-grid { grid-template-columns: repeat(2, 1fr); }
    .release-container { flex-direction: column; text-align: center; gap: 40px; }
    .vinyl-display { width: 300px; height: 300px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .flux-text { font-size: 3rem; }
    .section-title { font-size: 2rem; }
    nav { padding: 20px; }
    .desktop-only { display: none; }
    .menu-btn { display: flex; }
    .hero { height: 90vh; }
    .artist-grid { grid-template-columns: 1fr; }
    .section { padding: 80px 0; }
    .vinyl-record { transform: translateX(20%) rotate(45deg); }
    .artist-card:hover .card-image { transform: none; }
}