/* ===== RESET ===== */

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

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: #050505;
    color: #f2f2f2;
    font-family: 'Barlow', sans-serif;
}

a {
    text-decoration: none;
    color: white;
}

/* ===== COUNTDOWN ===== */
.countdown{
    display:flex;
    justify-content:left;
    gap:40px;
    margin-top:40px;
    font-family:'Barlow', sans-serif;
}

.count-item{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.count-item span{
    font-size:6rem;
    font-weight:800;
    color:#cc0000;
    line-height:1;
}

.count-item small{
    margin-top:8px;
    letter-spacing:3px;
    font-size:0.75rem;
    opacity:0.7;
}

/* ===== NAVBAR ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    transition: 0.4s ease;
    gap: 0px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
}

.navbar.scrolled {
    background: #222222;
    padding: 25px 8%;
    border-bottom: 1px solid #444444;
}

.nav-logo {
    opacity: 0;
    transition: 0.4s ease;
}

.nav-logo img {
    width: 150px;
    margin-right: 30px;
    display: block;
}

.navbar.scrolled .nav-logo {
    opacity: 1;
}

.nav-menu {
    display: flex;
    gap: 10px;
    list-style: none;
    margin-right: auto;
}

.nav-menu a {
    padding: 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: #000;
    background: #ffffff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: white;
}

/* ===== HERO ===== */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('HeroIMGdesk/002.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(100%) contrast(120%);
    opacity: 0.6;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 100px 20px 20px 20px;
}

.logo {
    font-size: 7rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -5px;
    text-transform: uppercase;
}

.album {
    margin-top: 25px;
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.release {
    margin-top: 10px;
    font-size: 1.5rem;
    opacity: 0.6;
}

.buttons {
    margin-top: 45px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btnBC, .btnSF, .btnMU, .btnCD {
    border: 1px solid #fff;
    padding: 14px 18px;
    font-size: 1.2rem;
    transition: 0.3s;
    color: #ffffff;
}

.btnCD:hover { background: #ffbc00; border-color: #ffbc00; }
.btnBC:hover { background: #0cacd7; border-color: #0cacd7; }
.btnSF:hover { background: #1ed660; border-color: #1ed660; }
.btnMU:hover { background: #fa233b; border-color: #fa233b; }

/* ===== SECTIONS ===== */

section {
    padding: 120px 10%;
}

.section-title {
    font-size: 7rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* ===== BAND ===== */

.band {
    background: #BBBBBB url('graphix/grungeBG_01.png') center/cover no-repeat;
}

.band .section-title {
    color: #111111;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
}

/* ===== MUSIC ===== */

.music-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 8%;
    isolation: isolate;
    background: #050505;
}

.music-parallax {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.music-parallax-image,
.music-parallax-overlay {
    position: absolute;
    inset: -10%;
}

.music-parallax-image {
    background: url('graphix/parallasseAlbum.jpg') center center / cover no-repeat;
    transform: translate3d(0, 0, 0) scale(1.18);
    will-change: transform;
    filter: grayscale(100%) contrast(118%);
}

.music-parallax-overlay {
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.52));
}

.music-content {
    position: relative;
    z-index: 1;
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 70px;
    align-items: center;
}

.music-copy {
    max-width: 620px;
}

.music-kicker {
    margin-bottom: 18px;
    font-size: 0.95rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

.music-title {
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.9;
    letter-spacing: -4px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.music-platforms {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.music-platforms .btnCD,
.music-platforms .btnBC,
.music-platforms .btnSF,
.music-platforms .btnMU {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 14px 35px rgba(0,0,0,0.22);
}

.music-platforms .btnCD:hover { background: #ffbc00; border-color: #ffbc00; }
.music-platforms .btnBC:hover { background: #0cacd7; border-color: #0cacd7; }
.music-platforms .btnSF:hover { background: #1ed660; border-color: #1ed660; }
.music-platforms .btnMU:hover { background: #fa233b; border-color: #fa233b; }

.music-platforms .btnBC span,
.music-platforms .btnSF span,
.music-platforms .btnMU span,
.music-platforms .btnCD span {
    display: inline-block;
}

.music-artwork-wrap {
    display: flex;
    justify-content: flex-end;
}

.music-artwork {
    width: min(100%, 440px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}

/* ===== NEWS ===== */

.news {
    background: url('graphix/grungeBG_02.png') center/cover no-repeat;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    padding: 2px;
}

.news-card {
    background: #222222;
    padding: 24px;
    cursor: pointer;
    border-left: 5px solid transparent;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
    min-height: 180px;
}

.news-card:hover {
    border-left-color: #CC0000;
    background: #3a3a3a;
}

.news-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    justify-content: space-between;
}

.news-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #f2f2f2;
}

.news-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-top: 4px;
}

.news-excerpt {
    flex: 1;
    font-size: 0.8rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.45);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.news-excerpt.expanded {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

.news-full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.news-full.active {
    max-height: 400px;
    padding-top: 12px;
}

.news-thumb {
    width: 85px;
    height: 85px;
    flex-shrink: 0;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(115%);
    display: block;
    transition: 0.4s ease;
}

.news-thumb::after {
    content: '⤢';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    color: white;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.25s;
}

.news-thumb:hover::after {
    opacity: 1;
    background: rgba(0,0,0,0.45);
}

.news-card:hover .news-thumb img {
    filter: grayscale(0%) contrast(115%);
    transform: scale(1.05);
}

.news-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.news-btn {
    min-width: 85px;
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    padding: 10px 22px;
    color: #ffffff;
    background: none;
    cursor: pointer;
    transition: 0.3s;
}

.news-btn:hover {
    border-color: #CC0000;
    background: #CC0000;
    color: #FFF;
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 55px;
    align-self: flex-start;
}

.news-day {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -4px;
    color: #CC0000;
    text-align: center;
}

.news-month {
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-align: center;
    margin-top: 6px;
}

/* ===== LIGHTBOX ===== */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    transition: background 0.3s ease;
}

.lightbox-overlay.active {
    background: rgba(0,0,0,0.88);
    pointer-events: all;
}

.lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close {
    display: none;
    position: fixed;
    top: 24px;
    right: 30px;
    color: rgba(255,255,255,0.6);
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.lightbox-overlay.active .lightbox-close {
    display: block;
}

.lightbox-close:hover {
    color: #CC0000;
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.7);
    font-size: 1.6rem;
    width: 52px;
    height: 52px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    z-index: 10001;
    line-height: 1;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-overlay.active .lightbox-prev,
.lightbox-overlay.active .lightbox-next {
    display: flex;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    border-color: #CC0000;
    color: #fff;
    background: #CC0000;
}

.lightbox-counter {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
    z-index: 10001;
}

.lightbox-overlay.active .lightbox-counter {
    display: block;
}

/* ===== GALLERY ===== */

.gallery {
    background: #0a0a0a url('graphix/grungeBG_01.png') center/cover no-repeat;
    background-blend-mode: luminosity;
    padding: 120px 6%;
}

.gallery-masonry {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.g-item {
    position: absolute;
    overflow: hidden;
    cursor: zoom-in;
    background: #111;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(115%);
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.45s ease;
    transform: scale(1.04);
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(204, 0, 0, 0);
    transition: background 0.35s ease;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.g-item::after {
    content: '⤢';
    position: absolute;
    bottom: 10px;
    right: 14px;
    font-size: 1.2rem;
    color: rgba(255,255,255,0);
    transition: color 0.3s ease, bottom 0.3s ease;
    pointer-events: none;
    z-index: 2;
    line-height: 1;
}

.g-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #CC0000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}

.g-item:hover img {
    filter: grayscale(0%) contrast(110%);
    transform: scale(1.09);
}

.g-item:hover .g-overlay {
    background: rgba(204, 0, 0, 0.18);
}

.g-item:hover::after {
    color: rgba(255,255,255,0.85);
    bottom: 14px;
}

.g-item:hover::before {
    transform: scaleX(1);
}

/* ===== LIVE ===== */

.shows {
    width: 100%;
    padding: 120px 8%;
    background: #050505;
}

.show-item {
    background: #212121;
    border-top: 1px solid #555;
}

.show-item:last-child {
    border-bottom: 1px solid #555;
}

.show-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 24px 20px;
    justify-content: space-between;
    transition: background 0.2s;
}

.show-row:hover {
    background: #333;
}

.show-date {
    width: 110px;
    flex-shrink: 0;
    text-align: center;
}

.day {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -6px;
    color: #CC0000;
    text-align: center;
}

.month {
    display: block;
    margin-top: 6px;
    letter-spacing: 1px;
    font-size: 1rem;
    text-transform: uppercase;
    opacity: 0.6;
    text-align: center;
}

.show-info {
    flex: 1;
}

.show-info h2 {
    font-size: 2.9rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #f2f2f2;
    margin-bottom: 10px;
}

.show-meta {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.show-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 1.1rem;
    font-variant: small-caps;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
}

.show-meta-item i {
    color: #CC0000;
    font-size: 0.95rem;
}

.show-meta-item a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-variant: small-caps;
    transition: color 0.2s;
}

.show-meta-item a:hover {
    color: #CC0000;
}

.hidden-show {
    display: none;
}

.shows-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.shows-more-btn {
    background: none;
    border: 1px solid #FFFFFF;
    color: white;
    padding: 18px 34px;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.35s ease;
}

.shows-more-btn:hover {
    border-color: #CC0000;
    background: #CC0000;
    color: #FFF;
}

/* ===== FOOTER ===== */

.td-footer {
    background: #0d0d0d;
    border-top: 1px solid #222222;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 28px;
    display: block;
    opacity: 0.9;
}

.footer-socials {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.footer-socials a {
    color: rgba(255,255,255,0.5);
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #CC0000;
}

.footer-members {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-member {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-member-name {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f2f2f2;
}

.footer-member-role {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    padding-left: 17px;
    font-variant: small-caps;
}

.footer-form-title {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-form input,
.footer-form textarea {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    color: #f2f2f2;
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.footer-form input:focus,
.footer-form textarea:focus {
    border-color: rgba(255,255,255,0.35);
}

.footer-form textarea {
    resize: vertical;
    min-height: 100px;
}

.footer-form button {
    align-self: flex-end;
    background: none;
    border: 1px solid rgba(255,255,255,0.5);
    color: #ffffff;
    font-family: 'Barlow', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-form button:hover {
    border-color: #CC0000;
    background: #CC0000;
    color: #FFF;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    display: flex;
    justify-content: space-between;
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {

    .navbar.scrolled {
        background: rgba(0,0,0,0.35);
        padding: 25px 3%;
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #050505;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px;
        transition: 0.4s ease;
        gap: 50px;
    }

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

    .hero::before {
        background-image: url('HeroIMGmob/002.jpg');
        background-position: center top;
        transform: none;
    }

    .logo {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

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

    .music-section {
        min-height: auto;
        padding: 90px 6%;
    }

    .music-content {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .music-copy {
        order: 2;
        max-width: none;
    }

    .music-artwork-wrap {
        order: 1;
        justify-content: center;
    }

    .music-artwork {
        width: min(100%, 360px);
    }

    .music-platforms {
        justify-content: center;
    }

    .music-platforms .btnCD,
    .music-platforms .btnBC,
    .music-platforms .btnSF,
    .music-platforms .btnMU {
        width: 100%;
        justify-content: left;
        height: 70px;
    }

    .music-parallax-image {
        transform: scale(1.08);
    }

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

    .news-title {
        font-size: 1.5rem;
    }

    .news-bottom {
        flex-direction: column-reverse;
    }

    .news-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .gallery {
        padding: 80px 4%;
    }

    .shows {
        padding: 80px 6%;
    }

    .show-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        padding: 10px;
    }

    .show-date {
        width: auto;
    }

    .day {
        font-size: 5rem;
        letter-spacing: -2px;
    }

    .show-info h2 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .show-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 24px 40px;
    }

    .footer-bottom {
        padding: 24px;
        flex-direction: column;
        gap: 8px;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 80px 3%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .music-parallax-image {
        transform: scale(1.08) !important;
        transition: none !important;
    }
}

/* ===== COOKIE BANNER ===== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #111111;
    border-top: 1px solid #333333;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cookie-text {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
}

.cookie-title {
    font-weight: 700;
    letter-spacing: 1px;
    color: #f2f2f2;
    margin-right: 8px;
}

.cookie-text a {
    color: #212121;
    background: #f1f1f1;
    text-decoration: none;
    padding: 2px 4px 2px 4px;
    margin: 0px 1px 0px 1px;
}

.cookie-text a:hover {
    color: #ffffff;
    background: #CC0000;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.6);
    font-family: 'Barlow', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 22px;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-decline:hover {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

.cookie-accept {
    border-color: #CC0000;
    color: #fff;
    background: #CC0000;
}

.cookie-accept:hover {
    background: #aa0000;
    border-color: #aa0000;
}

@media (max-width: 700px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 24px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* ===== LIGHTBOX VIDEO ===== */

.lightbox-video {
    display: none;
    max-width: 90vw;
    max-height: 85vh;
    width: 960px;
    outline: none;
    border: 1px solid rgba(255,255,255,0.1);
    background: #000;
    opacity: 0;
    transform: scale(0.85);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox-overlay.active .lightbox-video.lb-video-active {
    opacity: 1;
    transform: scale(1);
}

@media(max-width:768px){

    .countdown{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .count-item span{
        font-size:2rem;
    }

}

@media (max-width: 900px) {
    .lightbox-video {
        width: 100%;
        max-width: 95vw;
    }
}
