/* ============================================
   PEREYLOK — Стили сайта
   Яркий неоновый дизайн для рэп-артиста
   ============================================ */

/* === CSS Variables === */
:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #06060a;
    --bg-card: #111118;
    --bg-card-hover: #1a1a24;

    --neon-purple: #b945ff;
    --neon-blue: #00d4ff;
    --neon-pink: #ff2d7c;
    --neon-green: #39ff14;

    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #5a5a72;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;

    --glow-purple: 0 0 20px rgba(185, 69, 255, 0.5), 0 0 60px rgba(185, 69, 255, 0.2);
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 60px rgba(0, 212, 255, 0.2);
    --glow-pink: 0 0 20px rgba(255, 45, 124, 0.5), 0 0 60px rgba(255, 45, 124, 0.2);
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--neon-purple);
}

img {
    max-width: 100%;
    display: block;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(185, 69, 255, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    letter-spacing: 4px;
    text-shadow: var(--glow-purple);
    transition: text-shadow var(--transition-normal);
}

.nav-logo:hover {
    color: var(--text-primary);
    text-shadow: var(--glow-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    transition: width var(--transition-normal);
    box-shadow: var(--glow-purple);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 50%, rgba(185, 69, 255, 0.08) 0%, transparent 60%),
                var(--bg-darker);
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 8s infinite ease-in-out;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-blue);
    bottom: -10%;
    right: -10%;
    animation-delay: 3s;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: var(--neon-pink);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 5s;
    opacity: 0.2;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.glow-3 {
    animation-name: floatCenter;
}

@keyframes floatCenter {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    25% { transform: translate(-45%, -55%) scale(1.1); }
    50% { transform: translate(-55%, -45%) scale(0.9); }
    75% { transform: translate(-48%, -52%) scale(1.05); }
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--neon-purple);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s infinite ease-in-out;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0); }
    30% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-200px) translateX(50px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--neon-blue);
    margin-bottom: 16px;
    text-shadow: var(--glow-blue);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    letter-spacing: 12px;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--neon-purple) 50%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    position: relative;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    letter-spacing: 12px;
    line-height: 1;
    background: linear-gradient(135deg, var(--text-primary), var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
}

.glitch:hover::before {
    animation: glitchBefore 0.3s infinite;
    opacity: 0.8;
}

.glitch:hover::after {
    animation: glitchAfter 0.3s infinite;
    opacity: 0.8;
}

@keyframes glitchBefore {
    0% { clip-path: inset(40% 0 61% 0); transform: translate(-3px, 2px); }
    20% { clip-path: inset(92% 0 1% 0); transform: translate(2px, -1px); }
    40% { clip-path: inset(43% 0 1% 0); transform: translate(-1px, 3px); }
    60% { clip-path: inset(25% 0 58% 0); transform: translate(3px, 1px); }
    80% { clip-path: inset(54% 0 7% 0); transform: translate(-2px, -3px); }
    100% { clip-path: inset(58% 0 43% 0); transform: translate(1px, 2px); }
}

@keyframes glitchAfter {
    0% { clip-path: inset(65% 0 13% 0); transform: translate(3px, -2px); }
    20% { clip-path: inset(18% 0 65% 0); transform: translate(-1px, 3px); }
    40% { clip-path: inset(80% 0 5% 0); transform: translate(2px, 1px); }
    60% { clip-path: inset(5% 0 80% 0); transform: translate(-3px, -1px); }
    80% { clip-path: inset(35% 0 45% 0); transform: translate(1px, 2px); }
    100% { clip-path: inset(72% 0 18% 0); transform: translate(-2px, -2px); }
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--neon-purple);
    border-bottom: 2px solid var(--neon-purple);
    transform: rotate(45deg);
    opacity: 0.6;
    box-shadow: 3px 3px 6px rgba(185, 69, 255, 0.3);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 1; }
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(185, 69, 255, 0.3);
}

.btn-primary:hover {
    color: var(--text-primary);
    box-shadow: 0 4px 30px rgba(185, 69, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(185, 69, 255, 0.5);
}

.btn-outline:hover {
    color: var(--text-primary);
    background: rgba(185, 69, 255, 0.1);
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === Sections === */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-darker);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    letter-spacing: 6px;
    margin-bottom: 8px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 60px;
}

/* === Tracks Grid === */
.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.track-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.track-card:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 69, 255, 0.3);
    box-shadow: 0 8px 32px rgba(185, 69, 255, 0.15);
}

.track-cover {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(185, 69, 255, 0.15), rgba(0, 212, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-cover-placeholder {
    width: 60px;
    height: 60px;
    color: var(--text-muted);
}

.play-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--neon-purple);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px rgba(185, 69, 255, 0.4);
}

.play-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

.track-card:hover .play-btn {
    opacity: 1;
    transform: translateY(0);
}

.play-btn:hover {
    transform: scale(1.1) !important;
    background: var(--neon-blue);
}

.track-info {
    padding: 16px;
}

.track-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.track-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* === Platforms === */
.platforms {
    text-align: center;
}

.platforms-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.platforms-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.platform-link:hover {
    color: var(--text-primary);
    border-color: var(--neon-purple);
    background: rgba(185, 69, 255, 0.08);
    box-shadow: 0 4px 16px rgba(185, 69, 255, 0.15);
    transform: translateY(-2px);
}

.platform-icon {
    font-size: 1.2rem;
}

/* === About Section === */
.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(185, 69, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
}

.about-image-placeholder svg {
    width: 80px;
    height: 80px;
}

.about-image-placeholder span {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.about-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 8px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-location {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 48px;
    margin-top: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Gallery === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(185, 69, 255, 0.2);
}

.gallery-item-lg {
    grid-column: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, rgba(185, 69, 255, 0.1), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-placeholder {
    border-color: rgba(185, 69, 255, 0.3);
    background: linear-gradient(135deg, rgba(185, 69, 255, 0.15), rgba(0, 212, 255, 0.1));
}

.gallery-placeholder svg {
    width: 48px;
    height: 48px;
}

.gallery-placeholder span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* === Contact Section === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    padding: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    border-color: rgba(185, 69, 255, 0.2);
    background: var(--bg-card-hover);
}

.contact-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-card a {
    font-size: 1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: fill var(--transition-normal);
}

.social-link:hover {
    border-color: var(--neon-purple);
    background: rgba(185, 69, 255, 0.15);
    box-shadow: var(--glow-purple);
    transform: translateY(-3px);
}

.social-link:hover svg {
    fill: var(--neon-purple);
}

/* === Contact Form === */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    outline: none;
    transition: all var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    color: var(--text-muted);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235a5a72' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--neon-purple);
    box-shadow: 0 0 0 3px rgba(185, 69, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* === Footer === */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-darker);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 4px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* === Scroll Animations === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* === Mobile Responsive === */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: right var(--transition-normal);
        border-left: 1px solid rgba(185, 69, 255, 0.15);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image-placeholder {
        max-width: 300px;
        margin: 0 auto;
    }

    .stats {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item-lg {
        grid-column: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .tracks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 4px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .tracks-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .platforms-grid {
        flex-direction: column;
        align-items: center;
    }

    .platform-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* === News Feed === */
.news-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.news-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    padding: 40px;
    font-size: 0.95rem;
}

.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    padding: 60px 20px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(185, 69, 255, 0.2);
    box-shadow: 0 8px 32px rgba(185, 69, 255, 0.1);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card-pinned {
    border-color: rgba(185, 69, 255, 0.2);
}

.news-card-pinned::before {
    opacity: 1;
}

.news-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.news-type-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-type-badge.announcement {
    background: rgba(0, 212, 255, 0.12);
    color: var(--neon-blue);
}

.news-type-badge.news {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
}

.news-type-badge.promo {
    background: rgba(255, 45, 124, 0.1);
    color: var(--neon-pink);
}

.news-pin-badge {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.news-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.news-card-content {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.news-card-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
    max-height: 200px;
    object-fit: cover;
}

.news-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .news-feed {
        grid-template-columns: 1fr;
    }
}

/* === Site Toast === */
.site-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17, 17, 24, 0.95);
    border: 1px solid var(--neon-purple);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(185, 69, 255, 0.25);
    z-index: 2000;
    backdrop-filter: blur(10px);
    animation: siteToastIn 0.3s ease;
}

@keyframes siteToastIn {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

