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

:root {
    --primary-bg: #1D1E23;
    --card-bg: #2a2b32;
    --orange: #f27022;
    --green: #69bc52;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: Inter;
    background-color: #12161C;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #0f1012 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    animation: slideUp 0.8s ease-out;
}

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

.preloader-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    filter: drop-shadow(0 0 15px rgba(105, 188, 82, 0.2));
    --fill-progress: 0%;
    clip-path: inset(calc(100% - var(--fill-progress)) 0 0 0);
}

@keyframes logoRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.preloader-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 200px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green) 0%, var(--orange) 50%, var(--green) 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(242, 112, 34, 0.5);
}

.progress-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1px;
    min-width: 50px;
    text-align: center;
}

.preloader-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.hero-logo {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0px 20px 30px 20px;
    z-index: 20;
}

.logo-image {
    width: 150px;
    height: auto;
}

.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(image/orangebonus-hero-bg.jpg);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 480px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(0deg, #12161C 0%, rgba(18, 22, 28, 0.90) 15.39%, rgba(18, 22, 28, 0.80) 30.35%, rgba(18, 22, 28, 0.65) 47.75%, rgba(18, 22, 28, 0.46) 62.71%, rgba(18, 22, 28, 0.35) 72.78%, rgba(18, 22, 28, 0.14) 84.99%, rgba(18, 22, 28, 0.00) 100%);
}

.hero-content {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 600px;
}

.hero-person {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 630px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

img.share-image {
    position: absolute;
    bottom: 0px;
}

.person-image {
    max-width: 560px;
    width: auto;
    height: 100%;
    object-fit: contain;
    z-index: 2;
}

.tree-decoration {
    position: absolute;
    right: 100px;
    bottom: 0;
    width: 630px;
    z-index: 1;
}

.tree-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.santa-hat {
    width: 80px;
    height: 60px;
    background: #c92d2d;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    border-radius: 0 0 40px 40px;
    z-index: 5;
}

.santa-hat::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
}

.floating-items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    margin-left: var(--offset-x, 0);
}

.floating-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-item {
    --offset-x: -400px;
    bottom: 350px;
    width: 212px;
    animation-delay: 0s;
    z-index: 4;
}

.coin-item {
    --offset-x: 130px;
    bottom: 320px;
    width: 135px;
    animation-delay: 1s;
    z-index: 4;
}

.phone-item {
    --offset-x: 340px;
    bottom: 420px;
    width: 180px;
    animation-delay: 2s;
    z-index: 4;
}

a {
    text-decoration: none;
}

.euro-item {
    --offset-x: 430px;
    bottom: 60px;
    width: 115px;
    animation-delay: 3s;
    z-index: 3;
}

.euro-item-pack {
    --offset-x: -530px;
    bottom: 60px;
    width: 160px;
    animation-delay: 3s;
    z-index: 4;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.sparkle {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sparkle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sparkle-1 {
    bottom: 0;
    right: 0;
    width: 1090px;
    z-index: 1;
}

.sparkle-2 {
    bottom: 0;
    left: 0;
    width: 1090px;
    z-index: 1;
}


.hero-text {
    display: flex;
    position: relative;
    z-index: 15;
    flex-direction: column;
    gap: 20px;
}

.hero-text_group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-text h1 {
    display: flex;
    font-weight: 900;
    line-height: 1.2;
    font-family: Inter;
    font-size: 60px;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
}

.hero-text_box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-text .highlight {
    color: #FFF;
    text-align: center;
    font-family: "Mystery Quest";
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}

.highlight {
    width: max-content;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    background: #69BC52;
    justify-content: center;
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-family: Inter;
}

img.hero-decor {
    height: 23px;
}

/* Doors Section */
.doors-section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h2 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 900;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border: none;
    background: var(--card-bg);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid #F5A843;
    background: rgba(245, 168, 67, 0.10);
}

img.arrow_left {
    width: 20px;
    rotate: 180deg;
}

img.arrow_right {
    width: 20px;
}

.nav-btn:hover {
    background: #F5A843;
    transform: scale(1.02);
}

.doors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.door-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
}

.door-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.door-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.door-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.door-date {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.date-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.checkmark {
    width: 20px;
    height: 20px;
}

.door-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.door-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    min-height: 40px;
}

.door-button {
    width: 100%;
    padding: 12px 20px;
    background: #c92d2d;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.door-button:hover {
    background: #a82424;
}

.show-calendar-btn {
    display: block;
    margin: 0 auto;
    padding: 15px 60px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.show-calendar-btn:hover {
    background: var(--card-bg);
    border-color: var(--text-secondary);
}

/* Bonus Section */
.bonus-section {
    padding: 60px 0;
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.bonus-header h2 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 900;
}

.bonus-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 16px;
}

.bonus-info svg {
    flex-shrink: 0;
}

.bonus-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.bonus-card-main {
    display: grid;
    grid-template-columns: 1fr auto 300px;
    gap: 50px;
    align-items: center;
}

.bonus-card-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.bonus-logo {
    flex-shrink: 0;
}

.placeholder-logo {
    width: 220px;
    height: 130px;
    background: linear-gradient(135deg, #3a3b42 0%, #2a2b32 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
}

.bonus-details {
    flex: 1;
}

.bonus-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.bonus-title-wrapper h3 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 400;
}

.bonus-badge {
    background: var(--green);
    padding: 6px 20px;
    border-radius: 12px;
    font-size: 16px;
    white-space: nowrap;
}

.bonus-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: var(--text-secondary);
}

.bonus-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.bonus-divider {
    width: 1px;
    background: white;
    opacity: 0.3;
    background-image: repeating-linear-gradient(
        to bottom,
        white,
        white 6px,
        transparent 6px,
        transparent 12px
    );
}

.bonus-card-action {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.age-restriction {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
}

.cta-button {
    padding: 25px 60px;
    background: var(--orange);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.cta-button:hover {
    background: #58abff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgb(0 127 255 / 30%);
}

.toggle-info {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.toggle-info:hover {
    color: white;
}

.banner_box2 {
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

.banner_box2.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.banner-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}

.banner-cta-background {
    display: flex;
    max-width: 1200px;
    width: fit-content;
    margin: auto;
    height: 130px;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    /*background: linear-gradient(180deg, #45B9FD 0%, #0A91D3 100%);*/
    box-shadow: 0 30px 70px 0 rgba(16, 148, 215, 0.20);
    backdrop-filter: blur(25px);
    border-radius: 12px;
}

.bottom-text2 {
    padding: 50px;
    display: flex;
    width: auto;
    gap: 20px;
    text-align: center;
    z-index: 4;
    flex-direction: row;
    align-items: center;
}

.bottom-text2 h2 {
    display: none;
    width: 300px;
    font-weight: 900;
    line-height: 1.2;
    color: #FFF;
    text-align: left;
    font-family: Outfit;
    font-size: 26px;
    text-transform: uppercase;
}

/* Bottom CTA */
.banner_box {
    display: none;
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 9999;
}

.bottom-cta-background {
    display: flex;
    width: 100%;
    position: relative;
    min-height: 200px;
    overflow: visible;
    background-image: url(image/beckgraund.jpg);
}

.bottom-cta-content {
    max-width: 1200px;
    width: -webkit-fill-available;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: auto;
    flex-direction: row;
}

.bottom-person {
    width: auto;
    height: 250px;
}

img.image_group {
    width: 860px;
    position: absolute;
    z-index: 2;
    bottom: 0;
}

img.share-image {
    position: absolute;
    left: 170px;
    bottom: 0px;
    width: 460px;
}

.bottom-text {
    display: flex;
    width: auto;
    gap: 20px;
    text-align: center;
    z-index: 4;
    flex-direction: column;
    align-items: center;
}

.bottom-text h2 {
    font-weight: 900;
    line-height: 1.2;
    color: #FFF;
    text-align: center;
    font-family: Outfit;
    font-size: 36px;
}

.bottom-text .cta-button {
    padding: 20px 40px;
    font-size: 18px;
}

button.banner_cta {
    display: flex;
    width: 351px;
    padding: 25px 60px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    background: radial-gradient(64.12% 100% at 50.14% 0%, #FFF 0%, #C9C9C9 100%);
    box-shadow: 0 4px 0 0 #9A9A9A;
    border: 0px;
    color: #000;
    text-align: center;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

button.banner_cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    border-radius: 12px;
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

button.banner_cta:hover {
    background: linear-gradient(135deg, #f27022 0%, #e85d0a 100%);
    box-shadow: 0 4px 0 0 #c94607, 0 0 20px rgba(242, 112, 34, 0.6), inset 0 -3px 8px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #FFF;
}

button.banner_cta:hover::before {
    animation: shine 1s infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .bonus-card-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bonus-divider {
        height: 1px;
        width: 100%;
        background-image: repeating-linear-gradient(
            to right,
            white,
            white 6px,
            transparent 6px,
            transparent 12px
        );
    }

    .bonus-card-action {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
    }

    .card-second-header .card-logo {
        width: 100%;
        height: 300px !important;
    }
}

@media (max-width: 768px) {

    .banner-cta-background {
        width: auto;
    }

    .banner_box2 {
        padding: 0px 20px;
    }
    
    .banner_box2.show {
        opacity: 1;
        visibility: visible;
    }

    button.banner_cta {
        width: 100%;
    }

    .bottom-text2 h2 {
        width: auto;
        font-size: 24px;
    }
    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 60px 20px;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    img.highlight {
        width: 180px;
    }

    .floating-item {
        width: 200px;
    }

    .phone-item {
        width: 140px;
    }

    .doors-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .bonus-info {
        font-size: 14px;
    }

    .bonus-card-content {
        flex-direction: column;
        gap: 20px;
    }

    .placeholder-logo {
        width: 100%;
        max-width: 220px;
    }

    .bonus-title-wrapper h3 {
        font-size: 24px;
    }

    .bonus-card-action {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        padding: 20px 40px;
        width: 100%;
    }

.bottom-cta {
    position: fixed;
    bottom: 0;
    padding: 60px 0 0px;
    width: 100%;
    z-index: 999999;
}

    .bottom-person {
        width: 150px;
        height: 200px;
    }
}

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

    .hero-text h1 {
        font-size: 28px;
    }

    .banner-cta-background {
        height: auto;
        margin-bottom: 20px;
    }

    .bottom-text2 {
        padding: 20px;
        display: flex;
        width: auto;
        gap: 20px;
        text-align: center;
        z-index: 4;
        flex-direction: column;
        align-items: center;
    }

    .hero-text_box {
        gap: 10px;
    }

    .highlight {
        width: max-content;
        display: flex;
        padding: 6px 12px;
        align-items: center;
        gap: 10px;
        border-radius: 10px;
        background: #69BC52;
        justify-content: center;
    }

    img.share-image {
        position: absolute;
        left: 0;
        bottom: 0px;
        width: auto;
    }

    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 20px;
        flex-direction: row;
    }

    .bottom-text2 h2 {
        text-align: center;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
    }

    .card-second-header .card-logo {
        width: 100%;
        height: 170px !important;
    }

    .footer_box {
        flex-direction: column !important;
    }

    .floating-item {
        width: 120px;
    }

    .coin-item {
        --offset-x: 100px;
    }

    .nav-buttons {
        width: auto;
        justify-content: center;
    }

    .bonus-features li {
        font-size: 14px;
    }

    .bonus-badge {
        font-size: 14px;
        padding: 4px 16px;
    }

    .show-calendar-btn {
        width: 100%;
        padding: 15px 20px;
    }
}

.bonus-card:not(.expanded) .toggle-info svg {
    transform: rotate(0deg);
}

.bonus-card.expanded .toggle-info svg {
    transform: rotate(45deg);
}

/* Carousel Styles */
.carousel-wrapper {
    overflow: visible;
    position: relative;
}

.doors-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-out;
    padding: 20px 0;
}

.carousel-card {
    flex-shrink: 0;
    width: calc(25% - 15px);
    font-family: Inter;
    min-width: 250px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.carousel-card.inactive {
    opacity: 0.1;
    pointer-events: none;
}

.carousel-card.upcoming {
    border: 1px solid #FADA0C;
    box-shadow: 0 30px 70px 0 rgba(250, 218, 12, 0.20);
}

.carousel-card.community-special {
    border: 1px solid #E22C23;
}

.carousel-card:hover:not(.inactive) {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--orange);
}

.carousel-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-shrink: 0;
}

.carousel-card-date {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-card-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 5px;
}

.Icon_card {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.carousel-card_box {
    display: flex;
    flex-direction: column;
    background: #1D1E23;
    padding: 20px;
    flex: 1;
    gap: 10px;
}

img.arow_left {
    width: 16px;
    rotate: 180deg;
}

img.arow_right {
    width: 16px;
}

.carousel-card-title {
    color: #F27022;
    font-family: Inter;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.carousel-card-description {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.4;
    flex: 1;
}

.carousel-card-timer {
    width: 100%;
    padding: 12px 20px;
    background: #2A2B32;
    border: none;
    color: #FADA0C;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    cursor: default;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    flex-shrink: 0;
}

.carousel-card-timer.upcoming-timer {
    background: #E22C23;
    color: #FADA0C;
}

.carousel-card-timer.past {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.timer-label {
    color: #fff;
    font-weight: 600;
    min-width: max-content;
}

.timer-time {
    font-weight: 700;
}

section.footer {
    padding: 60px 20px;
    background: #121212;
}

.footer_box {
    display: flex;
    max-width: 1200px;
    margin: auto;
    flex-direction: row;
    margin-bottom: 160px;
    align-items: center;
    gap: 50px;
}

img.logo_footer {
    width: 120px;
}

.fotter-text {
    font-size: 16px;
    opacity: 0.6;
}