/* ===== DESIGN MODERNE 2026 - CRYSTAL CLEAR ===== */
:root {
    --primary: #3a1230;
    --secondary: #5a1f4b;
    --accent: #ff4fa3;
    --accent-alt: #ff8fc5;
    --accent-rgb: 255, 79, 163;
    --accent-alt-rgb: 255, 143, 197;
    --light: #ffffff;
    --border: #8a4b75;
    --text: #fff9fc;
    --text-dark: #f4d7e8;
}

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

html,
body {
    width: 100%;
}

body {
    font-family: 'Rubik', sans-serif;
    background: linear-gradient(135deg, var(--primary), #2a0d18);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.nav-2026 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    background: rgba(32, 8, 24, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.28);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    min-width: 0;
}

.nav-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-logo-text {
    letter-spacing: 0.08em;
    line-height: 1.1;
    font-size: 0.9rem;
    font-family: 'Space Mono', monospace;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 320px;
}

.nav-links-2026 {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(var(--accent-rgb), 0.45);
    background: rgba(var(--accent-rgb), 0.14);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--light);
    border-radius: 99px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links-2026 a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
    position: relative;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links-2026 a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    transition: width 0.3s;
}

.nav-links-2026 a:hover {
    color: var(--accent);
}

.nav-links-2026 a:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-2026 {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    padding: 4rem 0;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary), rgba(42, 13, 24, 0.85));
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-label {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: slideUp 0.8s ease-out;
}

.hero-title {
    font-family: 'Space Mono', monospace;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--light);
    animation: slideUp 0.8s ease-out 0.1s both;
    text-shadow: 0 4px 24px rgba(var(--accent-rgb), 0.35);
}

.hero-title span {
    display: block;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.8;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-hashtag {
    font-family: 'Space Mono', monospace;
    font-size: 1.6rem;
    color: var(--light);
    margin-bottom: 1rem;
    animation: slideUp 0.8s ease-out 0.25s both;
}

.hero-social-links {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.hero-social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(var(--accent-rgb), 0.18);
    color: var(--light);
    text-decoration: none;
    border: 2px solid rgba(var(--accent-rgb), 0.38);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hero-social-links a:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.35);
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.btn-outline, .btn-solid {
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: rgba(var(--accent-rgb), 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.35);
}

.btn-solid {
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: var(--primary);
    border-color: transparent;
    font-weight: 900;
}

.btn-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--accent-rgb), 0.45);
}

.hero-right {
    position: relative;
}

.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease-out, heroFloat 6s ease-in-out infinite 1.2s;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(var(--accent-rgb), 0.3);
    filter: brightness(1.05) contrast(1.1) saturate(1.2);
    transition: transform 0.3s, filter 0.3s;
}

.js-scroll-effects [data-scroll-effect] {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-scroll-effects [data-scroll-effect].in-view {
    opacity: 1;
    transform: translateY(0);
}

.hero-image-container:hover img {
    transform: scale(1.02);
    filter: brightness(1.1) contrast(1.15) saturate(1.3);
}

/* ===== SECTIONS ===== */
section {
    padding: 6rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-head {
    margin-bottom: 3rem;
}

.section-head h2 {
    font-family: 'Space Mono', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.underline {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    border-radius: 3px;
}

/* ===== EVENTS SECTION ===== */
.events-2026 {
    background: linear-gradient(135deg, rgba(103, 42, 87, 0.82), rgba(137, 63, 117, 0.68));
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.events-showcase {
    display: grid;
    grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.event-poster-wrap {
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.event-poster-3d {
    width: min(430px, 92vw);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    border: 2px solid rgba(var(--accent-rgb), 0.5);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    animation: posterFlipShow 1.1s ease-out both, posterBreath 2.8s ease-in-out infinite 1.2s;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-poster-3d:hover {
    transform: rotateY(14deg) rotateX(3deg) scale(1.02);
    box-shadow: 0 24px 55px rgba(var(--accent-rgb), 0.35);
}

.event-poster-image {
    width: 100%;
    height: auto;
    display: block;
}

.event-poster-caption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(var(--accent-rgb), 0.6);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: var(--light);
    text-align: center;
    backdrop-filter: blur(4px);
}

@keyframes posterFlipShow {
    0% {
        opacity: 0;
        transform: rotateY(-95deg) scale(0.94);
    }
    65% {
        opacity: 1;
        transform: rotateY(16deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg) scale(1);
    }
}

@keyframes posterBreath {
    0%, 100% {
        transform: rotateY(0deg) translateY(0);
    }
    50% {
        transform: rotateY(4deg) translateY(-5px);
    }
}

.event-item {
    padding: 2.5rem;
    background: rgba(156, 79, 134, 0.32);
    border-radius: 12px;
    border: 2px solid rgba(var(--accent-rgb), 0.25);
    transition: all 0.3s;
    position: relative;
    animation: slideUp 0.6s ease-out backwards;
}

.event-item:nth-child(1) { animation-delay: 0s; }
.event-item:nth-child(2) { animation-delay: 0.1s; }
.event-item:nth-child(3) { animation-delay: 0.2s; }
.event-item:nth-child(4) { animation-delay: 0.3s; }
.event-item:nth-child(5) { animation-delay: 0.4s; }
.event-item:nth-child(6) { animation-delay: 0.5s; }

.event-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(var(--accent-rgb), 0.25);
}

.event-date {
    font-family: 'Space Mono', monospace;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.event-venue {
    font-weight: 800;
    color: var(--light);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.event-location {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.event-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-link:hover {
    transform: translateX(5px);
}

.loading {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(var(--accent-rgb), 0.2);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== ABOUT SECTION ===== */
.about-2026 {
    background: linear-gradient(135deg, var(--primary), rgba(137, 63, 117, 0.7));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(var(--accent-rgb), 0.24);
    filter: brightness(1.05) contrast(1.1);
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 900;
    color: var(--accent);
    text-transform: uppercase;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(156, 79, 134, 0.3);
    border-radius: 12px;
    border: 2px solid rgba(var(--accent-rgb), 0.25);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(var(--accent-rgb), 0.25);
}

.stat-num {
    font-family: 'Space Mono', monospace;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    font-weight: 700;
}

/* ===== MUSIC SECTION ===== */
.music-2026 {
    background: linear-gradient(135deg, var(--primary), rgba(137, 63, 117, 0.7));
}

.spotify-player-container {
    margin-top: 2.2rem;
    margin-bottom: 3rem;
    filter: brightness(1.05) contrast(1.1);
}

.streaming-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.stream-card {
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 900;
    transition: all 0.3s;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stream-card i {
    font-size: 2.5rem;
    transition: transform 0.3s;
}

.stream-card:hover i {
    transform: scale(1.15);
}

.stream-card h4 {
    font-size: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 900;
}

.stream-card.spotify {
    background: linear-gradient(135deg, #1DB954, #1ed760);
}

.stream-card.youtube {
    background: linear-gradient(135deg, #FF0000, #ff4444);
}

.stream-card.instagram {
    background: linear-gradient(135deg, #E1306C, #C13584);
}

.stream-card.tiktok {
    background: linear-gradient(135deg, #000, #333);
}

.stream-card.facebook {
    background: linear-gradient(135deg, #1877F2, #0a66c2);
}

.stream-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== CONTACT SECTION ===== */
.contact-2026 {
    background: linear-gradient(135deg, rgba(103, 42, 87, 0.82), rgba(137, 63, 117, 0.68));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(74, 26, 60, 0.5);
    border: 2px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 8px;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    color: var(--text);
    transition: all 0.3s;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.2);
    background: rgba(96, 35, 78, 0.85);
}

.btn-submit {
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--accent-rgb), 0.35);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    padding: 2rem;
    background: rgba(77, 27, 62, 0.72);
    border-radius: 12px;
    border: 2px solid rgba(var(--accent-rgb), 0.25);
}

.info-block h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 900;
}

.info-block p {
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid rgba(var(--accent-rgb), 0.35);
    font-weight: 900;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(var(--accent-rgb), 0.35);
}

/* ===== FOOTER ===== */
.footer-2026 {
    background: rgba(34, 10, 26, 0.95);
    border-top: 2px solid rgba(var(--accent-rgb), 0.35);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .streaming-cards {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .hero-title {
        font-size: 3.5rem;
    }

    .section-head h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-hashtag {
        font-size: 1.25rem;
    }

    .hero-social-links {
        gap: 0.55rem;
        margin-bottom: 1.4rem;
    }

    .hero-social-links a {
        width: 38px;
        height: 38px;
    }

    .events-showcase {
        grid-template-columns: 1fr;
    }

    .event-poster-wrap {
        margin-bottom: 1.6rem;
    }

    .event-poster-3d {
        width: min(360px, 94vw);
    }

    .event-poster-caption {
        font-size: 0.84rem;
        padding: 0.5rem 0.65rem;
    }

    .nav-logo {
        gap: 8px;
    }

    .nav-logo-img {
        width: 34px;
        height: 34px;
    }

    .nav-logo-text {
        font-size: 0.65rem;
        max-width: 170px;
    }

    .nav-content {
        position: relative;
    }

    .nav-menu-toggle {
        display: inline-flex;
    }

    .nav-links-2026 {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: min(320px, calc(100vw - 24px));
        padding: 0.7rem;
        border-radius: 12px;
        background: rgba(34, 8, 26, 0.98);
        border: 1px solid rgba(var(--accent-rgb), 0.45);
        box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
        flex-direction: column;
        gap: 0.25rem;
        z-index: 2000;
    }

    .nav-links-2026.active {
        display: flex;
    }

    .nav-links-2026 li {
        width: 100%;
        list-style: none;
    }

    .nav-links-2026 a {
        display: block;
        width: 100%;
        padding: 0.75rem 0.8rem;
        border-radius: 8px;
    }

    .nav-links-2026 a:hover {
        background: rgba(var(--accent-rgb), 0.16);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-head h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

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

    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-logo-img {
        width: 28px;
        height: 28px;
    }

    .nav-logo-text {
        font-size: 0.56rem;
        max-width: 145px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-head h2 {
        font-size: 1.5rem;
    }

    .streaming-cards {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 0;
    }

    .nav-links-2026 {
        width: calc(100vw - 18px);
        right: -6px;
    }
}

/* ===== VIDEOS SECTION ===== */
.videos-2026 {
    background: linear-gradient(135deg, rgba(103, 42, 87, 0.82), rgba(137, 63, 117, 0.68));
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.videos-more-wrap {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.videos-more-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: linear-gradient(135deg, #ff2f4f, #d81333);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 28px rgba(216, 19, 51, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    animation: youtubePulse 2.2s ease-in-out infinite;
}

.videos-more-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-20deg);
    animation: youtubeShine 2.8s ease-in-out infinite;
}

.videos-more-btn i {
    font-size: 1.1rem;
    animation: youtubeIconBeat 1.4s ease-in-out infinite;
}

.videos-more-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 16px 36px rgba(216, 19, 51, 0.45);
}

@keyframes youtubePulse {
    0%,
    100% {
        box-shadow: 0 12px 28px rgba(216, 19, 51, 0.32);
    }
    50% {
        box-shadow: 0 16px 38px rgba(216, 19, 51, 0.55);
    }
}

@keyframes youtubeShine {
    0% {
        left: -120%;
    }
    60%,
    100% {
        left: 130%;
    }
}

@keyframes youtubeIconBeat {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
}

.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16/9;
    border: 2px solid rgba(var(--accent-rgb), 0.25);
    transition: all 0.3s;
    animation: slideUp 0.6s ease-out backwards;
    cursor: pointer;
}

.video-item:nth-child(1) { animation-delay: 0s; }
.video-item:nth-child(2) { animation-delay: 0.1s; }
.video-item:nth-child(3) { animation-delay: 0.2s; }
.video-item:nth-child(4) { animation-delay: 0.3s; }
.video-item:nth-child(5) { animation-delay: 0.4s; }
.video-item:nth-child(6) { animation-delay: 0.5s; }

.video-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(var(--accent-rgb), 0.25);
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 27, 62, 0.72);
    border-radius: 12px;
}

.video-placeholder i {
    font-size: 3rem;
    color: var(--accent);
}

@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== DISCOGRAPHY SECTION ===== */
.discography-2026 {
    background: linear-gradient(135deg, #66315a, #8a4a76);
}

.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 3rem 2rem;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 2rem;
}

.album-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    border: 2px solid rgba(var(--accent-rgb), 0.35);
    transition: all 0.3s;
    animation: slideUp 0.6s ease-out backwards;
    text-align: center;
    position: relative;
}

.album-item:nth-child(1) { animation-delay: 0s; }
.album-item:nth-child(2) { animation-delay: 0.1s; }
.album-item:nth-child(3) { animation-delay: 0.2s; }
.album-item:nth-child(4) { animation-delay: 0.3s; }
.album-item:nth-child(5) { animation-delay: 0.4s; }
.album-item:nth-child(6) { animation-delay: 0.5s; }

.album-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(var(--accent-rgb), 0.25);
}

.album-cover {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.2rem;
    filter: brightness(1.05) contrast(1.1);
    transition: transform 0.3s;
}

.album-item:hover .album-cover {
    transform: scale(1.03);
}

.album-title {
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.album-artist {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.album-year {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.album-info {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.album-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.album-spotify-embed {
    margin-top: 1rem;
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.album-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.6rem 1rem;
    background: rgba(var(--accent-rgb), 0.18);
    color: var(--accent);
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(var(--accent-rgb), 0.35);
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.album-link:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--accent-rgb), 0.3);
}

.album-link i {
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .discography-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .discography-grid {
        grid-template-columns: 1fr;
    }

    .album-spotify-embed {
        height: 190px;
    }
}
