:root {
    --primary-orange: #FF6A00;
    --dark-orange: #FF4400;
    --light-bg: #FFF8F2;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

.page-wrapper {
    padding: 20px 0;
}

.main-container {
    max-width: 1200px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin: 0 auto;
}

/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 250px;
    height: auto;
}

/* Welcome Section */
.welcome-container {
    text-align: center;
    margin-bottom: 25px;
}

.welcome-container h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.welcome-container p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-orange), var(--dark-orange));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(255, 106, 0, 0.2);
    animation: pulse 2s infinite;
}

/* Countdown Timer */
.countdown-container {
    text-align: center;
    margin-bottom: 25px;
}

.countdown-container h3 {
    font-size: 1.1rem;
    color: var(--primary-orange);
    margin-bottom: 12px;
    font-weight: 700;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.countdown-item {
    background: rgba(255, 106, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 8px 12px;
    min-width: 60px;
}

.countdown-item span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: block;
    line-height: 1;
}

.countdown-item span:last-child {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: 600;
}

/* Banner */
.banner-container {
    margin-bottom: 25px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.banner-img {
    width: 100%;
    height: auto;
    max-height: 783px;
    object-fit: cover;
}

/* Posters */
.posters-container {
    margin-bottom: 25px;
}

.poster-col {
    padding: 10px;
}

.poster-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    aspect-ratio: 1/1;
}

.poster-wrapper:hover {
    transform: translateY(-3px);
}

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

/* CTA Button */
.cta-container {
    text-align: center;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-orange), var(--dark-orange));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.cta-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
}

.footer p:first-child {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.copyright {
    font-size: 0.8rem;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-container {
        padding: 25px;
    }
    
    .welcome-container h1 {
        font-size: 1.8rem;
    }
    
    .countdown-item {
        min-width: 55px;
        padding: 7px 10px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.3rem;
    }
    
    .discount-badge {
        font-size: 1.1rem;
    }
    
    .banner-img {
        max-height: 600px;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 20px;
    }
    
    .welcome-container h1 {
        font-size: 1.6rem;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 6px 8px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.2rem;
    }
    
    .poster-col {
        padding: 8px;
    }
    
    .discount-badge {
        font-size: 1rem;
        padding: 6px 15px;
    }
    
    .banner-img {
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .page-wrapper {
        padding: 15px 0;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .welcome-container h1 {
        font-size: 1.3rem;
    }
    
    .welcome-container p {
        font-size: 0.9rem;
    }
    
    .countdown-container h3 {
        font-size: 1rem;
    }
    
    .countdown-timer {
        gap: 5px;
    }
    
    .countdown-item {
        min-width: 45px;
        padding: 5px 6px;
    }
    
    .countdown-item span:first-child {
        font-size: 1rem;
    }
    
    .countdown-item span:last-child {
        font-size: 0.6rem;
    }
    
    .banner-img {
        max-height: 250px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .discount-badge {
        font-size: 0.9rem;
        padding: 5px 12px;
    }
}
