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

body {
    background-color: #000;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Compacta Pro', Impact, sans-serif;
}

.carousel-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.carousel-slide {
    min-width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-slide img {
    max-height: 80vh;
    max-width: 100vw;
    object-fit: contain;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.1);
}

.movie-title {
    font-family: 'Compacta Pro', Impact, sans-serif;
    font-size: 2.5vw;
    color: #fff;
    letter-spacing: 0.2em;
    margin-top: 1rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    color: #fff;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
}

.logo-overlay {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    pointer-events: none;
}

.logo-overlay h1 {
    font-family: 'Compacta Pro', Impact, sans-serif;
    font-size: 5vw;
    color: #fff;
    letter-spacing: 0.15em;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .logo-overlay h1 {
        font-size: 8vw;
    }
    
    .movie-title {
        font-size: 5vw;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}