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

:root {
    --bg-dark: #090a0d;
    --bg-panel: #14171d;
    --primary-yellow: rgb(229, 255, 0);
    --secondary-cyan: #00f0ff;
    --text-main: #f0f0f0;
    --text-muted: #8892b0;
    --border-dim: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

.tech-font { font-family: 'JetBrains Mono', monospace; }

/* ---------------- HERO BANNER ---------------- */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #090a0d 0%, #14171d 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-yellow);
}

.neon-accent {
    position: absolute;
    top: 25%; left: -10%;
    width: 120%; height: 300px;
    background-color: var(--primary-yellow);
    transform: rotate(-4deg);
    z-index: 1;
    mix-blend-mode: color-dodge;
    opacity: 0.12;
    box-shadow: 0 0 100px var(--primary-yellow);
}

.diagonal-stripe {
    position: absolute;
    top: 0; right: 15%;
    width: 20px; height: 100%;
    background-color: var(--secondary-cyan);
    transform: skew(-20deg);
    z-index: 2;
    opacity: 0.6;
    box-shadow: 0 0 15px var(--secondary-cyan);
}

.title-group {
    position: relative;
    z-index: 10;
    text-align: center;
    text-transform: uppercase;
    animation: slightDrift 10s infinite alternate ease-in-out;
}

.title-doobmin {
    font-size: clamp(80px, 20vw, 250px);
    line-height: 0.8;
    font-weight: 700;
    color: var(--primary-yellow);
    text-shadow: 6px 6px 0px #000, -3px -3px 0px rgba(0, 240, 255, 0.8);
    letter-spacing: -2px;
}

.title-subtitle {
    font-size: clamp(20px, 4vw, 50px);
    font-weight: 600;
    letter-spacing: clamp(5px, 2vw, 30px);
    color: #ffffff;
    margin-top: 15px;
    text-shadow: 3px 3px 0px #000;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    color: var(--text-muted);
    font-size: 12px;
    animation: pulse 2s infinite;
    z-index: 20;
}

@keyframes slightDrift {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.02) translate(15px, -8px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(5px); }
}

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

.section-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 40px;
    display: inline-block;
    position: relative;
    letter-spacing: 2px;
    line-height: 1.1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 60%; height: 4px;
    background: var(--secondary-cyan);
}

.section-sys {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

/* ---------------- ALBUM GRID ---------------- */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.album-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-dim);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    overflow: hidden;
}

.album-card:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(229,255,0,0.1);
    transform: translateY(-5px);
}

.album-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: grayscale(80%) sepia(20%);
    transition: filter 0.3s;
}

.album-card:hover img {
    filter: grayscale(0%) contrast(110%);
}

.album-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.album-info h4 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.1;
}

.album-info .year {
    color: var(--secondary-cyan);
    font-size: 0.9rem;
}

/* ---------------- VIDEO ARCHIVES THUMBNAILS ---------------- */
.vid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vid-thumbnail {
    position: relative;
    display: block;
    border: 1px solid var(--border-dim);
    overflow: hidden;
    background: var(--bg-panel);
    transition: all 0.3s;
}

.vid-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.vid-thumbnail:hover {
    border-color: var(--secondary-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.vid-thumbnail:hover img {
    opacity: 1;
}

.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--secondary-cyan);
    color: var(--secondary-cyan);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 50%;
    transition: all 0.3s;
}

.vid-thumbnail:hover .play-btn {
    background: var(--secondary-cyan);
    color: #000;
    transform: translate(-50%, -50%) scale(1.1);
}

.btn-tickets {
    background: transparent;
    border: 1px solid var(--secondary-cyan);
    color: var(--secondary-cyan);
    padding: 12px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-tickets:hover {
    background: var(--secondary-cyan);
    color: #000;
    box-shadow: 0 0 15px var(--secondary-cyan);
}

/* ---------- SOUNDCLOUD PLACEHOLDER ART ---------- */
.sc-art-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #ff5500 0%, #ff8800 40%, #1a1a2e 100%);
    filter: grayscale(80%) sepia(20%);
    transition: filter 0.3s;
}

.sc-placeholder:hover .sc-art-placeholder {
    filter: grayscale(0%) contrast(110%);
}

.sc-placeholder:hover {
    border-color: #ff5500;
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.15);
}

/* ---------------- FOOTER ---------------- */
footer {
    border-top: 1px solid var(--border-dim);
    padding: 80px 20px;
    text-align: center;
    background: var(--bg-panel);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    transition: color 0.2s, text-shadow 0.2s;
}

.social-links a:hover {
    color: var(--primary-yellow);
    text-shadow: 0 0 10px rgba(229, 255, 0, 0.5);
}

@media (max-width: 900px) {
    .album-card[style*="column: span 2"] {
        grid-column: span 1 !important;
        flex-direction: column !important;
    }
    .album-card[style*="column: span 2"] img {
        width: 100% !important;
        height: auto !important;
    }
    .social-links { gap: 20px; flex-wrap: wrap; }
}

/* ---------------- VFX DIGITAL OVERLAYS ---------------- */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 40;
    background: radial-gradient(circle, transparent 40%, rgba(9,10,13,0.85) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 50;
    background-image: 
        repeating-linear-gradient( transparent 0px, transparent 2px, rgba(0,0,0,0.3) 2px, rgba(0,0,0,0.3) 4px ),
        url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.3"/%3E%3C/svg%3E');
    mix-blend-mode: overlay;
}

.glitch-container {
    transition: filter 0.1s;
}

/* ---------------- DYNAMIC RANDOMIZED FX CLASSES ---------------- */
.fx-tear {
    clip-path: polygon(0 20%, 100% 20%, 100% 35%, 0 35%);
    transform: translate(-12px, 4px) scale(1.02);
}

.fx-tear-alt {
    clip-path: polygon(0 55%, 100% 55%, 100% 75%, 0 75%);
    transform: translate(18px, -6px) skewX(8deg);
}

.fx-chromatic {
    filter: drop-shadow(10px 0 red) drop-shadow(-10px 0 cyan) hue-rotate(45deg);
}

.fx-curvature {
    border-radius: 60px;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 1);
    transform: scale(0.99);
}

.fx-flicker {
    opacity: 0.5;
}

.fx-tracking {
    transform: skewY(1deg) scaleY(1.02);
    filter: blur(2px) drop-shadow(5px 0 red);
}
