/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

/* Lidl Brand Colors */
:root {
    --lidl-yellow: #FFD700;
    --lidl-red: #E31E24;
    --lidl-blue: #0066CC;
    --lidl-dark-blue: #004499;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #333333;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 20px 0;
    text-align: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.lidl-logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--lidl-blue);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px var(--shadow);
}

.gift-card-badge {
    background: linear-gradient(45deg, var(--lidl-yellow), #FFA500);
    color: var(--dark-gray);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px var(--shadow);
    animation: pulse 2s infinite;
}

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

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.hero {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

/* Headlines */
.headline {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--lidl-red);
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px var(--shadow);
    line-height: 1.2;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-weight: 500;
}

/* Countdown Timer */
.countdown-container {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 8px 25px var(--shadow);
    border: 3px solid var(--lidl-yellow);
}

.countdown-label {
    font-size: 1.1rem;
    color: var(--lidl-red);
    font-weight: bold;
    margin-bottom: 15px;
}

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

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--lidl-blue);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 15px;
    min-width: 80px;
    box-shadow: 0 4px 15px var(--shadow);
}

.time-value {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.time-label {
    font-size: 0.8rem;
    margin-top: 5px;
    opacity: 0.9;
}

.time-separator {
    font-size: 2rem;
    font-weight: bold;
    color: var(--lidl-red);
    margin: 0 5px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.badge {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--dark-gray);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(45deg, var(--lidl-red), #FF4444);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px auto;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(227, 30, 36, 0.4);
    background: linear-gradient(45deg, #FF4444, var(--lidl-red));
}

.cta-button:active {
    transform: translateY(-1px);
}

.button-text {
    font-size: 1.3rem;
}

.button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Additional Info */
.additional-info {
    margin-top: 25px;
}

.additional-info p {
    color: var(--lidl-blue);
    font-weight: 500;
    margin: 8px 0;
    font-size: 1rem;
}

/* Footer */
.footer {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: 40px;
}

.disclaimer {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .lidl-logo {
        font-size: 2rem;
    }
    
    .gift-card-badge {
        font-size: 0.9rem;
        padding: 6px 16px;
    }
    
    .headline {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .subheadline {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .countdown-container {
        padding: 20px 15px;
        margin: 25px 0;
    }
    
    .time-unit {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .time-value {
        font-size: 1.6rem;
    }
    
    .time-separator {
        font-size: 1.6rem;
        margin: 0 2px;
    }
    
    .trust-badges {
        gap: 15px;
        margin: 25px 0;
    }
    
    .badge {
        padding: 12px 15px;
        min-width: 85px;
    }
    
    .badge-icon {
        font-size: 1.3rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 1.2rem;
        margin: 25px auto;
        min-width: 180px;
    }
    
    .button-text {
        font-size: 1.2rem;
    }
    
    .additional-info p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.6rem;
    }
    
    .subheadline {
        font-size: 1rem;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .time-unit {
        padding: 10px 12px;
        min-width: 60px;
    }
    
    .time-value {
        font-size: 1.4rem;
    }
    
    .time-separator {
        font-size: 1.4rem;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .badge {
        padding: 10px 12px;
        min-width: 75px;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 1.1rem;
        min-width: 160px;
    }
    
    .button-text {
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero > * {
    animation: fadeInUp 0.6s ease forwards;
}

.hero > *:nth-child(1) { animation-delay: 0.1s; }
.hero > *:nth-child(2) { animation-delay: 0.2s; }
.hero > *:nth-child(3) { animation-delay: 0.3s; }
.hero > *:nth-child(4) { animation-delay: 0.4s; }
.hero > *:nth-child(5) { animation-delay: 0.5s; }
.hero > *:nth-child(6) { animation-delay: 0.6s; }

