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

html { scroll-behavior: smooth; }

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Space Mono', monospace;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Syncopate', sans-serif; text-transform: uppercase; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- Theme Colors --- */
:root {
    --accent: #ff003c; /* Neon Red */
    --dark-gray: #1a1a1a;
}

/* --- Navigation --- */
nav {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(10,10,10,1), rgba(10,10,10,0));
}
.logo { font-weight: 700; font-size: 1.5rem; letter-spacing: -2px; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a:hover { color: var(--accent); }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 10px solid var(--accent);
    background: radial-gradient(circle, #1a1a1a 0%, #0a0a0a 100%);
}
.est-text { font-size: 1.2rem; color: #ffffff; letter-spacing: 2px; }
.hero h2 { font-size: 8vw; line-height: 0.8; color: #ffffff; }
.hero h3 { font-size: 4vw; margin-top: -1rem; color: #ff003c; }
.hero-title { color: #ffffff; }
.hero-title-main { font-size: 8vw; line-height: 0.8; color: #ffffff; font-family: 'Syncopate', sans-serif; text-transform: uppercase; font-weight: 700; }
.hero-title-accent { font-size: 4vw; margin-top: -1rem; color: #ff003c; font-family: 'Syncopate', sans-serif; text-transform: uppercase; font-weight: 700;}

/* --- Hero Parallax --- */
.parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 100;
    margin-top: -30vh;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.fist {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: auto;
    z-index: 5;
    transition: transform 0.1s ease-out;
    filter: brightness(0.6);
}

.wall-container {
    position: absolute;
    padding-top: 50px;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, #2a2a2a 0%, rgba(42,42,42,0) 100%);
    z-index: 4;
}

.about h1{
    font-size: 0.7rem; 
    color: #aaa; 
    margin-top: 1rem; 
    text-align: center;
}

.wall-piece {
    position: absolute;
    background: #2a2a2a;
    border: 1px solid #444;
    opacity: 1;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wall-piece.shattered {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) rotate(var(--rotation)) scale(0.5);
}

/* --- Content Sections --- */
section { 
    padding: 5rem 2rem; 
    max-width: 1200px; 
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

#brand {
    text-align: center;
    padding: 4rem 2rem;
    background: #0a0a0a;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#brand h1 {
    font-size: 1rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: #ffffff;
    width: 100%;
}

#brand p {
    width: 100%;
}

.section-title { font-size: 2.5rem; margin-bottom: 3rem; border-left: 5px solid var(--accent); padding-left: 1rem; }

/* --- Releases Grid --- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.card { background: var(--dark-gray); border: 1px solid #333; transition: transform 0.3s; cursor: pointer; }
.card:hover { transform: translateY(-10px); border-color: var(--accent); }
.card img { width: 100%; height: auto; filter: grayscale(100%); transition: 0.5s; }
.card:hover img { filter: grayscale(0%); }
.card-info { padding: 1.5rem; }
.card-info h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.card-info p { color: #888; font-size: 0.8rem; }

/* --- Artists List --- */
.artist-row { 
    display: flex; 
    justify-content: space-between; 
    border-bottom: 1px solid #333; 
    padding: 1.5rem 0;
    font-size: 1.5rem;
    font-family: 'Syncopate', sans-serif;
    cursor: pointer;
}
.artist-row:hover { color: var(--accent); padding-left: 1rem; transition: 0.3s; }

/* --- Artist Page Specific --- */
.artist-hero {
    height: 100vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(10,10,10,0.6) 100%);
    z-index: 1;
}

.artist-hero .hero-content {
    z-index: 2;
}

.artist-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
}

.artist-photo {
    width: 100%;
    height: 400px;
    border: 5px solid #333;
    margin-bottom: 2rem;
    object-fit: cover;
}

.artist-link {
    font-size: 1.5rem;
    font-family: 'Syncopate', sans-serif;
    padding: 1.5rem;
    border: 1px solid #333;
    background: var(--dark-gray);
    transition: all 0.3s;
}

.artist-link:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    padding-left: 2rem;
}

/* --- Footer / Submissions --- */
footer { background: #000; padding: 5rem 2rem; border-top: 1px solid #222; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.demo-box { background: var(--accent); color: #000; padding: 2rem; font-weight: bold; }
.demo-box h2 { color: #000; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 15vw; }
    .footer-content { grid-template-columns: 1fr; }
}

.copyright {
    margin-top: 4rem; 
    text-align: center; 
    color: #444; 
    font-size: 1.1rem;
}

.copyright .webmaster {
    margin-top: 0.5rem;
    font-size: 1rem;
}

.copyright .webmaster a {
    color: #666;
    transition: color 0.3s;
}

.copyright .webmaster a:hover {
    color: var(--accent);
}

.title {
    font-family: 'Syncopate', sans-serif; 
    font-weight: 700;
    text-transform: uppercase;
}

.demo-title {
    font-size: 2rem;
}

.about-description {
    font-size: 1.2rem; 
    max-width: 800px;
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
}

.about-h2{
    font-weight: inherit; 
    font-family: inherit;
    font-size: inherit;
    text-transform: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    display: inline;
    margin: 0;
    padding: 0;
}

.artist-text {
    font-size: 1.2rem; 
    max-width: 800px; 
    line-height: 1.8;
    font-family: 'Space Mono', monospace;
    font-weight: 500;
}

.presentation-links {
    opacity:.85; 
    font-size:0.8rem;
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
}

.hero-content h2{
    font-size: 1rem; 
    font-weight: 500;
}

.biography {
    margin-top: 2rem;
    font-size: 2rem;
}

/**LEGAL NOTICE **/
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    line-height: 1.8;
    opacity: 1 !important;
    transform: none !important;
}
.legal-container h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
}
.legal-container h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-size: 1.1rem;
}
.legal-container p {
    margin-bottom: 1rem;
    color: #cccccc;
    font-size: 0.95rem;
}
.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #cccccc;
}
.legal-container li {
    margin-bottom: 0.5rem;
}
.legal-notice {
    background-color: #1a1a1a;
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 2rem 0;
    font-weight: bold;
}