body {
    margin: 0;
    font-family: 'Times New Roman', serif;
    background: linear-gradient(to bottom, #f5e1c5, #d2a679);
    text-align: center;
    overflow-x: hidden;
    position: relative;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

body::-webkit-scrollbar { /* Chrome, Safari and Opera */
    display: none;
}

.floating-events-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(20, 20, 20, 0.7);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 0 80px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(12px);
    z-index: 1001;
    width: 450px !important;
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    perspective: 2000px;
}

.floating-events-window::-webkit-scrollbar {
    display: none;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/world-pattern.html') repeat;
    opacity: 0.1;
    transform: translate3d(0, 0, 0);
    animation: backgroundScroll 30s linear infinite;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

@keyframes backgroundScroll {
    from { background-position: 0 0; }
    to { background-position: 100% 100%; }
}

.navbar {
    position: fixed;
    top: 20px;
    left: calc(50% - 6cm);
    transform: translate3d(-50%, 0, 0);
    background: rgba(255, 0, 0, 0.8);
    padding: 15px 40px;
    border-radius: 8px;
    display: flex;
    gap: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    will-change: transform;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #5900ff;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate3d(6px, 6px, 0);
    background-color: #d4af37;
    will-change: transform;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: #d4af37;
}

@media (max-width: 768px) {
    .navbar {
        top: 0;
        left: 0;
        width: 100%;
        transform: none;
        border-radius: 0;
        padding: 15px;
        justify-content: space-between;
        background: rgba(33, 25, 15, 0.85);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.4);
        z-index: 1000;
        position: fixed;
    }

    .menu-toggle {
        display: flex;
        margin-right: 15px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(33, 25, 15, 0.9), rgba(66, 50, 30, 0.95));
        flex-direction: column;
        padding: 80px 20px;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        display: flex;
        align-items: center;
        box-shadow: -5px 0 15px rgba(212, 175, 55, 0.2);
        backdrop-filter: blur(8px);
        border-left: 1px solid rgba(212, 175, 55, 0.4);
        z-index: 1001;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(212, 175, 55, 0.2);
        backdrop-filter: blur(8px);
        border-left: 1px solid rgba(212, 175, 55, 0.4);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
        transform: translateX(0) rotateY(0);
    }
    
    .nav-links:not(.active) {
        transform: translateX(20px) rotateY(10deg);
    }

    .navbar a {
        padding: 15px;
        font-size: 18px;
        color: #3516d5;
        transition: all 0.3s ease;
        position: relative;
        background: linear-gradient(45deg, #b8860b, #ffd700, #ffdf00, #b8860b);
        background-size: 300% 300%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
    }
    
    .navbar a:hover {
        color: #2600ff;
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
        transform: scale(1.05);
    }
    
    .navbar a.active, .navbar a:active {
        animation: goldShine 1.5s ease infinite;
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9));
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 85%;
    }
}

.navbar a {
    text-decoration: none;
    color: #654321;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 12px;
}

.navbar a:hover {
    color: #432d1b;
}

.main {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/malenza.jpeg') no-repeat center center;
    background-size: cover;
    position: relative;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    transition: opacity 0.5s ease-out;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@media screen and (min-width: 769px) {
    .main {
        background-attachment: fixed;
    }
}

@media screen and (max-width: 768px) {
    .main {
        background-attachment: scroll;
        min-height: 100vh;
        height: 100vh;
        background-position: center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
}

.main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0.8;
    transform: translateY(0);
    transition: transform 0.5s ease-out;
}

.main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.title {
    font-family: "Tagesschrift", system-ui;
    font-size: 8rem;
    color: #fbff00;
    font-weight: bold;
    transform: perspective(1000px) rotateX(15deg) translateZ(50px) translateY(100px);
    margin-top: 50px;
    text-shadow: 
        1px 1px 1px #919191,
        1px 2px 1px #919191,
        1px 3px 1px #919191,
        1px 4px 1px #919191,
        1px 5px 1px #919191,
        1px 6px 1px #919191,
        1px 7px 1px #919191,
        1px 8px 1px #919191,
        1px 9px 1px #919191,
        1px 10px 1px #919191,
        1px 18px 6px rgba(16,16,16,0.4),
        1px 22px 10px rgba(16,16,16,0.2),
        1px 25px 35px rgba(16,16,16,0.2),
        1px 30px 60px rgba(16,16,16,0.4);
    background: linear-gradient(45deg, #ffffff, #f8f8f8, #ffffff, #f8f8f8, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
    animation: entryAnimation 1.8s cubic-bezier(0.25, 0.1, 0.25, 1.4) forwards;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.7));
    opacity: 0;
    transform-origin: center center;
}

.subtitle {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 3rem;
    color: #ffffff;
    transform: perspective(1000px) rotateX(12deg) translateZ(20px);
    text-shadow: 
        0 1px 0 #0026ff,
        0 2px 0 #0026ff,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(255,255,255,0.5),
        0 1px 3px rgba(255, 0, 0, 0.6),
        0 3px 5px rgba(255,255,255,0.3),
        0 5px 10px rgba(255,255,255,0.5),
        0 10px 10px rgba(255,255,255,0.3),
        0 20px 20px rgba(255,255,255,0.3);
    background: linear-gradient(45deg, #ffffff, #f8f8f8, #ffffff, #f0f0f0, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
    animation: entryAnimation 1.8s cubic-bezier(0.25, 0.1, 0.25, 1.4) forwards 0.6s, whiteShine 3s ease infinite 2.4s;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
    opacity: 0;
    transform-origin: center center;
}

.tagline {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 2rem;
    color: #ffffff;
    transform: perspective(1000px) rotateX(12deg) translateZ(20px);
    text-shadow: 
        0 1px 0 #cccccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(255,255,255,0.5),
        0 1px 3px rgba(255,255,255,0.6),
        0 3px 5px rgba(255,255,255,0.3),
        0 5px 10px rgba(255,255,255,0.5),
        0 10px 10px rgba(255,255,255,0.3),
        0 20px 20px rgba(255,255,255,0.3);
    background: linear-gradient(45deg, #ffffff, #f8f8f8, #ffffff, #f0f0f0, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
    animation: entryAnimation 1.8s cubic-bezier(0.25, 0.1, 0.25, 1.4) forwards 0.6s, whiteShine 3s ease infinite 2.4s;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
    opacity: 0;
    transform-origin: center center;
}

@keyframes whiteShine {
    0% { background-position: 0% 50%; filter: drop-shadow(0 0 15px rgba(255,255,255,0.6)) drop-shadow(0 0 5px rgba(255,255,255,0.3)); transform: scale(1); }
    50% { background-position: 100% 50%; filter: drop-shadow(0 0 30px rgba(255,255,255,1)) drop-shadow(0 0 10px rgba(255,255,255,0.5)); transform: scale(1.02); }
    100% { background-position: 0% 50%; filter: drop-shadow(0 0 15px rgba(255,255,255,0.6)) drop-shadow(0 0 5px rgba(255,255,255,0.3)); transform: scale(1); }
}

.tagline:hover {
    transform: perspective(1200px) rotateX(14deg) translateY(-5px) translateZ(25px);
    text-shadow: 
        0 1px 0 rgba(255, 0, 0, 0.7),
        0 2px 0 rgba(255, 170, 0, 0.6),
        0 3px 0 rgba(0, 0, 0, 0.5),
        0 4px 0 rgba(42, 29, 0, 0.4),
        0 5px 0 rgba(26, 19, 0, 0.3),
        0 6px 1px rgba(90, 59, 0, 0.2),
        0 0 5px rgba(255, 215, 0, 0.5),
        0 1px 3px rgba(255, 215, 0, 0.6),
        0 3px 5px rgba(90, 59, 0, 0.3),
        0 5px 10px rgba(255, 215, 0, 0.5),
        0 10px 10px rgba(90, 59, 0, 0.3),
        0 20px 20px rgba(255, 215, 0, 0.3),
        0 25px 25px rgba(90, 59, 0, 0.1);
    background: linear-gradient(45deg, #b8860b, #ffd700, #fff8e1, #ffdf00, #b8860b);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9));
    animation: goldShine 1.5s ease infinite;
}

@media (max-width: 768px) {
    .tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 1.2rem;
    }
}

.subtitle {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 3rem;
    color: #d4af37;
    transform: perspective(1000px) rotateX(12deg) translateZ(20px);
    text-shadow: 
        0 1px 0 rgba(90, 59, 0, 0.7),
        0 2px 0 rgba(74, 49, 0, 0.6),
        0 3px 0 rgba(58, 39, 0, 0.5),
        0 4px 0 rgba(42, 29, 0, 0.4),
        0 5px 0 rgba(26, 19, 0, 0.3),
        0 6px 1px rgba(90, 59, 0, 0.2),
        0 0 5px rgba(255, 215, 0, 0.5),
        0 1px 3px rgba(255, 215, 0, 0.6),
        0 3px 5px rgba(90, 59, 0, 0.3),
        0 5px 10px rgba(255, 215, 0, 0.5),
        0 10px 10px rgba(90, 59, 0, 0.3),
        0 20px 20px rgba(255, 215, 0, 0.3);
    background: linear-gradient(45deg, #b8860b, #ffd700, #ffdf00, #f8d568, #b8860b);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
    animation: entryAnimation 1.8s cubic-bezier(0.25, 0.1, 0.25, 1.4) forwards 0.6s, goldShine 3s ease infinite 2.4s;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7));
    opacity: 0;
    transform-origin: center center;
}

.subtitle:hover {
    transform: perspective(1200px) rotateX(16deg) translateY(-5px) translateZ(30px);
    text-shadow: 
        0 1px 0 rgb(255, 0, 0),
        0 2px 0 rgb(255, 0, 0),
        0 3px 0 rgba(255, 0, 0),
        0 4px 0 rgba(255, 0, 0),
        0 5px 0 rgba(255, 0, 0),
        0 6px 1px rgba(255, 0, 0),
        0 0 5px rgba(255, 0, 0),
        0 1px 3px rgba(255, 0, 0),
        0 3px 5px rgba(255, 0, 0),
        0 5px 10px rgba(255, 0, 0),
        0 10px 10px rgba(255, 0, 0),
        0 20px 20px rgba(255, 0, 0),
        0 25px 25px rgba(255, 0, 0);
    background: linear-gradient(45deg, #ff0000, #ff0000, #ff0000, #ff0000, #ff0000);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9));
    animation: goldShine 1.5s ease infinite;
}


@media (max-width: 768px) {
    .title {
        font-size: 4rem;
    }
    .subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1.5rem;
    }
}

.title-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}

.title-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
}

.title, .subtitle {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(89, 0, 255, 0.4);
}

.text-container {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
}

.text-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
}

.text-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.scroll-section {
    height: 100vh;
    background: rgba(219, 155, 66, 0.634);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.scrolled .main {
    opacity: 0.3;
}

.scrolled .main::before {
    transform: translateY(-20px);
}

.iconic-buildings img {
    width: 100px;
    height: auto;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.floating-events-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(20, 20, 20, 0.7);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 0 80px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(12px);
    z-index: 1001;
    width: 450px;
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    &::-webkit-scrollbar { /* Chrome, Safari and Opera */
        display: none;
    }
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    perspective: 2000px;
}

.floating-events-window.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1) rotateX(0);
}

.floating-events-window:not(.visible) {
    transform: translate(-50%, -60%) scale(0.8) rotateX(-20deg);
}

.events-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.events-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.close-events {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #d4af37;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close-events:hover {
    color: #fff;
    background: rgba(212, 175, 55, 0.3);
    transform: rotate(90deg);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
    margin-top: 20px;
}

.event-item:last-child {
    grid-column: 2;
    grid-row: 3;
}

.event-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    position: relative;
    overflow: hidden;
}

.event-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
    transition: all 0.6s ease;
}

.event-item:hover {
    transform: translateY(-10px) rotateX(10deg) rotateY(10deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.event-item:hover::before {
    transform: rotate(90deg);
}

.event-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: inline-block;
    animation: floatIcon 4s ease-in-out infinite;
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.event-name {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-status {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #f1c40f 100%);
    color: #333;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(241, 196, 15, 0.3);
    transition: all 0.3s ease;
}

.event-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
    color: #333;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.event-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f1c40f 0%, #d4af37 100%);
}

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

@keyframes goldShine {
    0% { background-position: 0% 50%; filter: drop-shadow(0 0 15px rgba(255,215,0,0.6)) drop-shadow(0 0 5px rgba(255,255,255,0.3)); transform: scale(1); }
    20% { background-position: 30% 80%; filter: drop-shadow(0 0 20px rgba(255,215,0,0.7)) drop-shadow(0 0 8px rgba(255,255,255,0.4)); transform: scale(1.01); }
    40% { background-position: 70% 30%; filter: drop-shadow(0 0 25px rgba(255,215,0,0.8)) drop-shadow(0 0 10px rgba(255,255,255,0.5)); transform: scale(1.02); }
    50% { background-position: 100% 50%; filter: drop-shadow(0 0 30px rgba(255,215,0,1)) drop-shadow(0 0 15px rgba(255,255,255,0.6)); transform: scale(1.03); }
    60% { background-position: 70% 70%; filter: drop-shadow(0 0 25px rgba(255,215,0,0.8)) drop-shadow(0 0 10px rgba(255,255,255,0.5)); transform: scale(1.02); }
    80% { background-position: 30% 20%; filter: drop-shadow(0 0 20px rgba(255,215,0,0.7)) drop-shadow(0 0 8px rgba(255,255,255,0.4)); transform: scale(1.01); }
    100% { background-position: 0% 50%; filter: drop-shadow(0 0 15px rgba(255,215,0,0.6)) drop-shadow(0 0 5px rgba(255,255,255,0.3)); transform: scale(1); }
}

@keyframes blackShine {
    0% { background-position: 0% 50%; filter: drop-shadow(0 0 15px rgba(255,255,255,0.6)); }
    50% { background-position: 100% 50%; filter: drop-shadow(0 0 30px rgba(255,255,255,1)); }
    100% { background-position: 0% 50%; filter: drop-shadow(0 0 15px rgba(255,255,255,0.6)); }
}

@keyframes entryAnimation {
    0% { 
        opacity: 0; 
        transform: translate3d(0, 50px, -100px) perspective(1000px) rotateX(30deg) scale(0.3) rotate(-5deg); 
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
    }
    20% { 
        opacity: 0.3; 
        transform: translate3d(0, 30px, -50px) perspective(1000px) rotateX(25deg) scale(0.5) rotate(-3deg); 
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
    }
    40% { 
        opacity: 0.6; 
        transform: translate3d(0, 15px, 0) perspective(1000px) rotateX(20deg) scale(0.7) rotate(-1deg); 
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    }
    70% { 
        opacity: 0.8; 
        transform: translate3d(0, 5px, 20px) perspective(1000px) rotateX(18deg) scale(0.9) rotate(0deg); 
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
    100% { 
        opacity: 1; 
        transform: translate3d(0, 0, 30px) perspective(1000px) rotateX(15deg) scale(1); 
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.7));
    }
}

.timeline-section {
    padding: 80px 20px;
    background: url('images/981.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    min-height: 100vh;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/981.jpg') repeat;
    opacity: 0.3;
    animation: flowingBackground 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes flowingBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

.timeline-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.timeline-item {
    width: 45%;
    padding: 20px;
    position: relative;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    will-change: transform, box-shadow;
    transform: translate3d(0, 0, 0);
}

.timeline-event {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
    position: relative;
    transform: translateZ(20px);
    transition: transform 0.3s ease;
}

.timeline-venue {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    position: relative;
    transform: translateZ(10px);
    transition: all 0.3s ease;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    background: rgba(212, 175, 55, 0.1);
}

.register-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b38f1d);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateZ(30px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.timeline-content:hover .timeline-event {
    transform: translateZ(40px);
}

.timeline-content:hover .timeline-venue {
    background: rgba(212, 175, 55, 0.2);
    transform: translateZ(30px);
    color: #333;
}

.register-btn:hover {
    transform: translateZ(50px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.timeline-content:hover {
    transform: translateY(-10px) rotateX(10deg) rotateY(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.timeline-item {
    width: 45%;
    padding: 20px;
    position: relative;
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    margin: 0;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    transform: translateX(200px);
}

.timeline-item:nth-child(even).visible {
    transform: translateX(0);
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #d4af37;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    z-index: 2;
}

.timeline-item:nth-child(odd)::before {
    right: -60px;
}

.timeline-item:nth-child(even)::before {
    left: -60px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37 0%, rgba(212, 175, 55, 0.3) 100%);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s ease;
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -60px;
}

.timeline-item:nth-child(even)::after {
    left: -60px;
    background: linear-gradient(-90deg, #d4af37 0%, rgba(212, 175, 55, 0.3) 100%);
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    align-self: flex-end;
}

.timeline-item:nth-child(4n+1) .timeline-content {
    background: rgba(20, 20, 20, 0.9);
    color: #fff;
}

.timeline-item:nth-child(4n+2) .timeline-content {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(15px);
}

.timeline-item:nth-child(4n+3) .timeline-content {
    background: rgba(255, 255, 255, 0.95);
}

.timeline-item:nth-child(4n+4) .timeline-content {
    background: rgba(36, 59, 85, 0.9);
    color: #fff;
}

.timeline-time {
    font-family: 'Cinzel Decorative', cursive;
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

@keyframes flowBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes titleGlow {
    from { text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }
    to { text-shadow: 0 0 25px rgba(212, 175, 55, 0.8); }
}

.event-status {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    .timeline-container {
        padding: 30px 15px;
        gap: 30px;
    }

    .timeline-item {
        width: 80%;
        margin: 0 auto !important;
    }

    .timeline-item::before,
    .timeline-item::after {
        display: none;
    }

    .timeline-content {
        transform: none !important;
    }
}

@media screen and (max-width: 768px) {
    .timeline-container {
        padding: 20px 10px;
        gap: 20px;
    }

    .timeline-item {
        width: 95%;
        padding: 10px;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-event {
        font-size: 1.1rem;
    }

    .timeline-venue {
        font-size: 0.8rem;
    }
}

    .timeline-content::before {
        left: -40px !important;
        right: auto !important;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }

    .timeline-content {
        display: block;
    }

    .timeline-item {
        opacity: 1;
    }


@media screen and (max-width: 480px) {
    .timeline-title {
        font-size: 2rem;
    }

    .timeline-event {
        font-size: 1.1rem;
    }

    .timeline-time {
        font-size: 1rem;
    }

    .timeline-venue {
        font-size: 0.85rem;
    }

    .timeline-item {
        padding: 10px 10px 10px 50px;
        margin-left: 40px !important;
    }
}

.highlights-gallery {
    width: 100%;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.event-poster {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    aspect-ratio: 16/9;
}

.event-poster:hover {
    transform: scale(1.05);
    z-index: 1;
}

.event-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.event-poster:hover .poster-info {
    transform: translateY(0);
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* From Uiverse.io by MuhammadHasann */ 
.card {
    --bg-card: #27272a;
    --primary: #6d28d9;
    --primary-800: #4c1d95;
    --primary-shadow: #2e1065;
    --light: #d9d9d9;
    --zinc-800: #18181b;
    --bg-linear: linear-gradient(0deg, var(--primary) 50%, var(--light) 125%);
  
    position: relative;
  
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  
    padding: 1rem;
    width: 14rem;
    background-color: var(--bg-card);
  
    border-radius: 1rem;
  }
  
  .image_container {
    overflow: hidden;
    cursor: pointer;
  
    position: relative;
    z-index: 5;
  
    width: 100%;
    height: 8rem;
    background-color: var(--primary-800);
  
    border-radius: 0.5rem;
  }
  
  .image_container .image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  
    width: 3rem;
    fill: var(--light);
  }
  
  .title {
    overflow: clip;
  
    width: 100%;
  
    font-size: 1rem;
    font-weight: 600;
    color: var(--light);
    text-transform: capitalize;
    text-wrap: nowrap;
    text-overflow: ellipsis;
  }
  
  .size {
    font-size: 0.75rem;
    color: var(--light);
  }
  
  .list-size {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  
    margin-top: 0.25rem;
  }
  
  .list-size .item-list {
    list-style: none;
  }
  
  .list-size .item-list-button {
    cursor: pointer;
  
    padding: 0.5rem;
    background-color: var(--zinc-800);
  
    font-size: 0.75rem;
    color: var(--light);
  
    border: 2px solid var(--zinc-800);
    border-radius: 0.25rem;
  
    transition: all 0.3s ease-in-out;
  }
  
  .item-list-button:hover {
    border: 2px solid var(--light);
  }
  .item-list-button:focus {
    background-color: var(--primary);
  
    border: 2px solid var(--primary-shadow);
  
    box-shadow: inset 0px 1px 4px var(--primary-shadow);
  }
  
  .action {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
  }
  
  .cart-button {
    cursor: pointer;
  
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
  
    padding: 0.5rem;
    width: 100%;
    background-image: var(--bg-linear);
  
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--light);
    text-wrap: nowrap;
  
    border: 2px solid hsla(262, 83%, 58%, 0.5);
    border-radius: 0.5rem;
    box-shadow: inset 0 0 0.25rem 1px var(--light);
  }
  
  .cart-button .cart-icon {
    width: 1rem;
  }
  

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(0, 140, 255, 0.4);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    background: rgba(255, 0, 0, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
} 0 0 5px;
}

.poster-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.poster-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.countdown-title {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    background: rgba(33, 25, 15, 0.85);
    min-width: 120px;
}

.countdown-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .countdown-section {
        gap: 10px;
        padding: 10px;
    }

    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 30px;
    }
}
