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

:root {
    --bg: #050505;
    --bg2: #0a0a0a;
    --card: #0c0c0c;
    --card-hover: #111;
    --red: #8b0000;
    --red-bright: #cc0000;
    --blood: #6b0000;
    --text: #c8c8c8;
    --text-dim: #555;
    --border: #1a1a1a;
    --glow: rgba(139,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    cursor: default;
}

::selection { background: var(--red); color: #fff; }

/* === SCANLINES === */
.scanlines {
    position: fixed; inset: 0; z-index: 9998; pointer-events: none;
    background: repeating-linear-gradient(
        0deg, transparent, transparent 2px,
        rgba(0,0,0,0.15) 2px, rgba(0,0,0,0.15) 4px
    );
}

/* === NOISE === */
/* === NOISE (subtle grain) === */
.noise {
    position: fixed; inset: -50%; z-index: 9997; pointer-events: none;
    width: 200%; height: 200%;
    opacity: 0.035;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
    animation: grainDrift 0.5s steps(1) infinite;
}
@keyframes grainDrift {
    0% { transform: translate(0,0); }
    25% { transform: translate(-5%,-5%); }
    50% { transform: translate(5%,0); }
    75% { transform: translate(-3%,5%); }
    100% { transform: translate(0,0); }
}

/* === FOG === */
.fog {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background: radial-gradient(ellipse at 50% 100%, rgba(139,0,0,0.04) 0%, transparent 60%);
}

/* === CURSOR GLOW === */
.cursor-glow {
    position: fixed; width: 500px; height: 500px; border-radius: 50%;
    pointer-events: none; z-index: 1;
    background: radial-gradient(circle, rgba(139,0,0,0.07) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    transition: left 0.4s ease, top 0.4s ease;
}

/* === FLOATING MEMES === */
.floating-memes {
    position: fixed; inset: 0; z-index: 0;
    pointer-events: none; overflow: hidden;
}
.float-meme {
    position: absolute;
    width: 80px; height: auto;
    left: var(--x, 50%);
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.3));
    animation: memeFloat var(--dur, 25s) linear var(--delay, 0s) infinite;
    image-rendering: auto;
    will-change: transform, opacity;
}
@keyframes memeFloat {
    0% { transform: translateY(105vh); opacity: 0; }
    3% { opacity: 0.75; }
    50% { opacity: 0.6; }
    97% { opacity: 0.75; }
    100% { transform: translateY(-15vh); opacity: 0; }
}

/* === NAV === */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 40px; height: 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.4s;
}
nav.hidden { transform: translateY(-100%); }

.nav-logo {
    font-family: 'Creepster', cursive;
    font-size: 1.4rem; letter-spacing: 4px;
    color: var(--red-bright);
    text-shadow: 0 0 10px var(--glow), 0 0 30px rgba(139,0,0,0.2);
    position: relative;
}

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
    color: var(--text-dim); text-decoration: none;
    font-family: 'Special Elite', cursive;
    font-size: 0.85rem; letter-spacing: 1px;
    transition: color 0.3s, text-shadow 0.3s;
}
.nav-links a:hover {
    color: var(--red-bright);
    text-shadow: 0 0 8px var(--glow);
}

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.nav-burger span { width: 22px; height: 2px; background: var(--text-dim); transition: all 0.3s; }
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); background: var(--red-bright); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); background: var(--red-bright); }

.mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(5,5,5,0.97);
    flex-direction: column; align-items: center; justify-content: center; gap: 30px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    font-family: 'Creepster', cursive;
    color: var(--text); text-decoration: none;
    font-size: 2rem; letter-spacing: 4px;
    transition: color 0.3s, text-shadow 0.3s;
}
.mobile-menu a:hover { color: var(--red-bright); text-shadow: 0 0 15px var(--glow); }

/* === HERO === */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative; padding: 100px 20px 60px; text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(139,0,0,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(139,0,0,0.04) 0%, transparent 50%);
    overflow: hidden;
}

/* TV FRAME */
.hero::before {
    content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
    border-radius: 8px;
    box-shadow:
        inset 0 0 120px 40px rgba(0,0,0,0.6),
        inset 0 0 300px 80px rgba(0,0,0,0.3);
}

/* VHS LINES */
.hero::after {
    content: ''; position: absolute; inset: 0; z-index: 4; pointer-events: none;
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 3px,
            rgba(0,0,0,0.08) 3px,
            rgba(0,0,0,0.08) 4px
        );
    animation: vhsScroll 8s linear infinite;
}
@keyframes vhsScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* VHS DISTORTION BAR */
.hero-flicker {
    position: absolute; left: 0; right: 0; z-index: 5;
    height: 3px; pointer-events: none;
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 20px 8px rgba(139,0,0,0.08);
    animation: vhsBar 6s linear infinite;
}
@keyframes vhsBar {
    0% { top: -5px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 105%; opacity: 0; }
}

/* SCREEN FLICKER */
@keyframes flicker {
    0%,100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.85; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

.hero-content { position: relative; z-index: 2; }

.hero-avatar {
    width: 140px; height: 140px; margin: 0 auto 30px; position: relative;
    opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-avatar img {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--red);
    box-shadow: 0 0 30px var(--glow), 0 0 60px rgba(139,0,0,0.1);
    filter: grayscale(0.3) contrast(1.1);
    transition: filter 0.4s, box-shadow 0.4s;
}
.hero-avatar:hover img {
    filter: grayscale(0) contrast(1.2);
    box-shadow: 0 0 50px var(--glow), 0 0 100px rgba(139,0,0,0.15);
}
.avatar-ring {
    position: absolute; inset: -8px; border-radius: 50%;
    border: 1px solid rgba(139,0,0,0.2);
    animation: ringPulse 3s ease infinite;
}
@keyframes ringPulse {
    0%,100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 0; }
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 18px; margin-bottom: 30px;
    border: 1px solid rgba(139,0,0,0.3); border-radius: 4px;
    font-family: 'Special Elite', cursive;
    font-size: 0.8rem; color: var(--red-bright);
    letter-spacing: 2px; text-transform: uppercase;
    background: rgba(139,0,0,0.05);
    opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-badge .dot {
    width: 6px; height: 6px; background: var(--red-bright); border-radius: 50%;
    animation: pulse 2s ease infinite;
    box-shadow: 0 0 6px var(--red-bright);
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.2; } }

.hero-title {
    margin-bottom: 24px;
    opacity: 0; animation: glitchIn 1.2s ease 0.6s forwards;
    position: relative;
}
.hero-logo-img {
    max-width: clamp(320px, 65vw, 700px); height: auto;
    filter: invert(1) drop-shadow(0 0 15px var(--glow)) drop-shadow(0 0 40px rgba(139,0,0,0.15));
    transition: filter 0.4s, transform 0.2s;
    mix-blend-mode: screen;
    background: transparent;
}

.hero-sub {
    font-family: 'Special Elite', cursive;
    font-size: 1rem; color: var(--text-dim);
    max-width: 460px; margin: 0 auto 36px;
    line-height: 1.8; min-height: 3.6em;
    opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-buttons {
    display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
    opacity: 0; animation: fadeUp 0.8s ease 1s forwards;
}

.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 30px; border-radius: 4px;
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem; text-decoration: none;
    transition: all 0.3s; cursor: pointer; border: none; letter-spacing: 1px;
}
.btn-blood {
    background: linear-gradient(135deg, var(--red), var(--blood));
    color: #ddd;
    box-shadow: 0 4px 25px rgba(139,0,0,0.3);
    border: 1px solid rgba(139,0,0,0.5);
}
.btn-blood:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(139,0,0,0.5);
    color: #fff;
}
.btn-ghost {
    background: transparent; color: var(--text-dim);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--red);
    color: var(--red-bright);
    text-shadow: 0 0 8px var(--glow);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    opacity: 0; animation: fadeUp 0.8s ease 1.2s forwards;
}
.hero-scroll span {
    font-size: 1.2rem; color: var(--text-dim);
    animation: scrollBounce 2s ease infinite;
    display: block;
}
@keyframes scrollBounce {
    0%,100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(8px); opacity: 1; }
}

@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes glitchIn {
    0% { opacity:0; transform:translateY(30px) skewX(-8deg); filter:blur(8px); }
    50% { opacity:1; transform:translateY(-3px) skewX(2deg); filter:blur(0); }
    65% { transform:translateX(3px) skewX(-1deg); }
    75% { transform:translateX(-2px) skewX(0); }
    100% { opacity:1; transform:translate(0) skewX(0); }
}

/* === SECTIONS === */
.creepy-section {
    position: relative; z-index: 2;
    padding: 90px 20px;
    border-top: 1px solid var(--border);
}
.creepy-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to bottom, rgba(139,0,0,0.02), transparent);
    pointer-events: none;
}

.container { max-width: 880px; margin: 0 auto; }

.section-label {
    font-family: 'Special Elite', cursive;
    font-size: 0.75rem; letter-spacing: 3px;
    color: var(--red); margin-bottom: 12px;
}
.section-title.creepy-title {
    font-family: 'Creepster', cursive;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--text);
    letter-spacing: 3px; margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(139,0,0,0.15);
}

.reveal { opacity: 0; transform: translateY(35px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.about-text p {
    font-family: 'Special Elite', cursive;
    color: var(--text-dim); line-height: 2; font-size: 0.95rem; margin-bottom: 16px;
}
.about-text strong { color: var(--text); }
.about-text .highlight { color: var(--red-bright); text-shadow: 0 0 6px var(--glow); }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 4px;
    padding: 24px; transition: all 0.4s; position: relative; overflow: hidden;
}
.stat-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.stat-card:hover { border-color: rgba(139,0,0,0.3); transform: translateY(-3px); }
.stat-card:hover::after { opacity: 1; }
.stat-icon { font-size: 1.4rem; margin-bottom: 10px; }
.stat-label { font-family: 'Special Elite', cursive; font-size: 0.7rem; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; }
.stat-value { font-family: 'Creepster', cursive; font-size: 1.1rem; margin-top: 4px; color: var(--text); letter-spacing: 1px; }

.about-contact-line {
    margin-top: 24px; padding: 18px 20px;
    background: var(--card); border: 1px solid var(--border); border-radius: 4px;
    font-family: 'Special Elite', cursive;
    font-size: 0.85rem; color: var(--text-dim); line-height: 1.8;
    border-left: 3px solid var(--red);
}
.about-contact-line a { color: var(--red-bright); text-decoration: none; }
.about-contact-line a:hover { text-decoration: underline; text-shadow: 0 0 6px var(--glow); }

/* === LINKS === */
.links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }

.link-card {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px; background: var(--card); border: 1px solid var(--border);
    border-radius: 4px; text-decoration: none; color: var(--text);
    transition: all 0.4s; position: relative; overflow: hidden;
}
.link-card::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
    background: var(--red); opacity: 0; transition: opacity 0.3s;
}
.link-card:hover {
    border-color: rgba(139,0,0,0.3);
    background: var(--card-hover);
    transform: translateX(4px);
}
.link-card:hover::before { opacity: 1; }

.link-icon {
    width: 42px; height: 42px; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700; flex-shrink: 0; color: #fff;
    transition: transform 0.3s;
}
.link-card:hover .link-icon { transform: scale(1.1); }

.link-info { flex: 1; min-width: 0; }
.link-name { font-family: 'Special Elite', cursive; font-size: 0.95rem; margin-bottom: 2px; }
.link-desc { font-size: 0.72rem; color: var(--text-dim); }
.link-arrow { color: var(--text-dim); transition: all 0.3s; }
.link-card:hover .link-arrow { color: var(--red-bright); transform: translateX(4px); }

.icon-youtube { background: linear-gradient(135deg, #8b0000, #5a0000); }
.icon-rutube { background: linear-gradient(135deg, #1a4a7a, #0d2e4d); }
.icon-tiktok { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.icon-twitch { background: linear-gradient(135deg, #4a1a6b, #2d1040); }
.icon-kick { background: linear-gradient(135deg, #1a3a10, #0d2008); }
.icon-boosty { background: linear-gradient(135deg, #6b2a10, #401808); }
.icon-discord { background: linear-gradient(135deg, #2a2d6b, #1a1d40); }
.icon-soundcloud { background: linear-gradient(135deg, #6b3000, #401c00); }
.icon-tg { background: linear-gradient(135deg, #1a4a6b, #0d2e40); }
.icon-vk { background: linear-gradient(135deg, #2a3a5a, #1a2a40); }
.icon-steam { background: linear-gradient(135deg, #0d1520, #060b10); }
.icon-donate { background: linear-gradient(135deg, #6b4a00, #402c00); }
.icon-song { background: linear-gradient(135deg, #5a1a40, #3a0d2a); }

/* === CHANNELS === */
.channels-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.channel-group-title {
    font-family: 'Creepster', cursive;
    font-size: 1.2rem; margin-bottom: 16px;
    color: var(--text); letter-spacing: 2px;
    display: flex; align-items: center; gap: 10px;
}
.channel-group-title::before {
    content: ''; width: 3px; height: 18px;
    background: var(--red); border-radius: 1px;
}
.channel-list { display: flex; flex-direction: column; gap: 10px; }

/* === STICKERS === */
.stickers-row { display: flex; gap: 20px; }
.sticker-card {
    flex: 1; padding: 30px;
    background: var(--card); border: 1px solid var(--border); border-radius: 4px;
    text-decoration: none; color: var(--text);
    position: relative; overflow: hidden;
    transition: all 0.4s; display: flex; flex-direction: column; gap: 12px;
}
.sticker-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 80%, rgba(139,0,0,0.06), transparent 60%);
    transition: opacity 0.4s; opacity: 0;
}
.sticker-card.sticker-alt::before {
    background: radial-gradient(circle at 70% 80%, rgba(139,0,0,0.06), transparent 60%);
}
.sticker-card:hover { border-color: rgba(139,0,0,0.3); transform: translateY(-4px); }
.sticker-card:hover::before { opacity: 1; }
.sticker-eye { font-size: 3rem; line-height: 1; }
.sticker-card h3 {
    font-family: 'Creepster', cursive; font-size: 1.2rem;
    letter-spacing: 2px; position: relative; z-index: 1;
}
.sticker-card p { font-family: 'Special Elite', cursive; font-size: 0.8rem; color: var(--text-dim); position: relative; z-index: 1; }
.sticker-arrow {
    position: absolute; top: 20px; right: 20px;
    font-size: 1.1rem; color: var(--text-dim);
    opacity: 0; transform: translate(-4px, 4px);
    transition: all 0.3s;
}
.sticker-card:hover .sticker-arrow { opacity: 1; transform: translate(0); color: var(--red-bright); }

/* === CONTACT === */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.contact-card {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 28px 16px; background: var(--card); border: 1px solid var(--border);
    border-radius: 4px; text-decoration: none; color: var(--text);
    transition: all 0.4s; text-align: center;
}
.contact-card:hover { border-color: rgba(139,0,0,0.3); transform: translateY(-3px); }
.contact-icon { font-size: 1.8rem; }
.contact-name { font-family: 'Special Elite', cursive; font-size: 0.9rem; }
.contact-desc { font-size: 0.72rem; color: var(--text-dim); }

.contact-email {
    text-align: center; padding: 22px;
    background: var(--card); border: 1px solid var(--border); border-radius: 4px;
}
.contact-email a {
    font-family: 'Creepster', cursive;
    color: var(--red-bright); text-decoration: none;
    font-size: 1.3rem; letter-spacing: 2px;
    text-shadow: 0 0 10px var(--glow);
    transition: text-shadow 0.3s;
}
.contact-email a:hover { text-shadow: 0 0 20px var(--glow), 0 0 40px rgba(139,0,0,0.2); }
.contact-email p { font-family: 'Special Elite', cursive; color: var(--text-dim); font-size: 0.8rem; margin-top: 6px; }

.age-badge {
    display: block; width: fit-content; margin: 24px auto 0;
    padding: 8px 20px;
    border: 1px solid rgba(139,0,0,0.4); border-radius: 4px;
    font-family: 'Creepster', cursive;
    font-size: 1rem; color: var(--red-bright); letter-spacing: 4px;
    text-shadow: 0 0 8px var(--glow);
}

/* === FOOTER === */
footer {
    position: relative; z-index: 2;
    border-top: 1px solid var(--border);
    padding: 40px;
}
.footer-inner {
    max-width: 880px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: flex-end;
}
.footer-logo {
    font-family: 'Creepster', cursive;
    font-size: 1.5rem; letter-spacing: 4px;
    color: var(--red-bright);
    text-shadow: 0 0 10px var(--glow);
    margin-bottom: 6px;
}
.footer-text { font-family: 'Special Elite', cursive; font-size: 0.75rem; color: #333; letter-spacing: 1px; }
.footer-right { text-align: right; }
.footer-links { display: flex; gap: 6px; justify-content: flex-end; margin-bottom: 10px; }
.footer-links a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 4px;
    background: var(--card); border: 1px solid var(--border);
    color: var(--text-dim); text-decoration: none;
    font-family: 'Special Elite', cursive;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 1px;
    transition: all 0.3s;
}
.footer-links a:hover {
    border-color: rgba(139,0,0,0.4);
    color: var(--red-bright); transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139,0,0,0.1);
}
.footer-copy { font-size: 0.65rem; color: #222; font-family: 'Special Elite', cursive; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .channels-split { grid-template-columns: 1fr; gap: 30px; }
    .links-grid { grid-template-columns: 1fr; }
    .stickers-row { flex-direction: column; }
    .contact-cards { grid-template-columns: 1fr; }
    .creepy-section { padding: 60px 16px; }
    .hero { padding: 80px 16px 50px; }
    .footer-inner { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
    .footer-right { text-align: center; }
    .footer-links { justify-content: center; }
    footer { padding: 30px 20px; }
    .music-terminal { right: 8px; bottom: 8px; width: calc(100vw - 16px); max-width: 340px; }
}

/* === MUSIC TERMINAL === */
.music-terminal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    z-index: 9990;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    font-family: 'Special Elite', 'Courier New', monospace;
    box-shadow: 0 0 30px rgba(139,0,0,0.15), 0 4px 20px rgba(0,0,0,0.6);
    overflow: hidden;
    transition: height 0.3s ease;
}
.music-terminal.collapsed .mt-body { display: none; }

.mt-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: #0e0e0e;
    border-bottom: 1px solid #1a1a1a;
    cursor: default;
    user-select: none;
}
.mt-dots { display: flex; gap: 5px; }
.mt-dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    display: block;
}
.mt-dots span:nth-child(1) { background: #8b0000; }
.mt-dots span:nth-child(2) { background: #4a2800; }
.mt-dots span:nth-child(3) { background: #2a2a2a; }
.mt-title {
    flex: 1;
    font-size: 10px;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.mt-toggle {
    background: none; border: none; color: #555;
    font-size: 14px; cursor: pointer; padding: 0 4px;
    font-family: inherit;
    transition: color 0.2s;
}
.mt-toggle:hover { color: var(--red-bright); }

.mt-body { padding: 10px 12px 12px; }

.mt-line {
    font-size: 11px;
    color: #8b0000;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.mt-dim { color: #333; }

.mt-tracklist {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
}
.mt-track {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    font-size: 11px;
    color: #666;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.mt-track:hover { color: #aaa; background: #111; }
.mt-track.active {
    color: var(--red-bright);
    border-color: rgba(139,0,0,0.3);
    background: rgba(139,0,0,0.05);
}
.mt-track-idx {
    color: #333;
    font-size: 10px;
    min-width: 16px;
}
.mt-track.active .mt-track-idx { color: var(--red); }

.mt-now {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.mt-label {
    font-size: 10px;
    color: var(--red);
    letter-spacing: 1px;
}
.mt-track-name {
    font-size: 12px;
    color: #c8c8c8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mt-progress-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.mt-time {
    font-size: 10px;
    color: #444;
    min-width: 28px;
    font-family: 'Courier New', monospace;
}
.mt-progress {
    flex: 1;
    height: 4px;
    background: #1a1a1a;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.mt-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--red), var(--red-bright));
    border-radius: 2px;
    transition: width 0.3s linear;
    box-shadow: 0 0 6px rgba(139,0,0,0.4);
}

.mt-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}
.mt-controls button {
    background: #111;
    border: 1px solid #1a1a1a;
    color: #888;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    letter-spacing: -1px;
}
.mt-controls button:hover {
    background: #1a1a1a;
    color: var(--red-bright);
    border-color: var(--red);
}
.mt-controls button.playing {
    color: var(--red-bright);
    border-color: var(--red);
    box-shadow: 0 0 8px rgba(139,0,0,0.2);
}

.mt-vol {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    font-size: 12px;
    color: #444;
}
.mt-vol input[type="range"] {
    width: 60px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #1a1a1a;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}
.mt-vol input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--red);
    cursor: pointer;
    box-shadow: 0 0 6px rgba(139,0,0,0.5);
}
.mt-vol input[type="range"]::-moz-range-thumb {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--red);
    border: none;
    cursor: pointer;
}
