* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: rgb(32, 23, 32);  
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 16px;
}


.thank-you-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.icon-circle {
    background-color: hsl(33, 100%, 60%);
    border-radius: 50%;
    padding: 16px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.main-section {
    text-align: center;
    margin-bottom: 32px;
}

.main-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: bold;
    color: hsl(0, 0%, 100%);
    margin-bottom: 16px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    font-size: 18px;
    color: hsl(0, 0%, 80%);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: hsl(33, 100%, 60%);
    color: white;
    font-weight: bold;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: hsl(33, 100%, 55%);
}


.email-section {
    text-align: center;
    margin-bottom: 64px;
    margin-top: 80px;
}

.email-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: bold;
    color: hsl(0, 0%, 100%);
    margin-bottom: 24px;
}

.email-description {
    color: hsl(0, 0%, 80%);
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}


.journey-section {
    text-align: center;
    margin-bottom: 48px;
}

.journey-header {
    margin-bottom: 32px;
}

.journey-label {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: bold;
    color: hsl(0, 0%, 100%);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.journey-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: bold;
    color: hsl(0, 0%, 100%);
}


.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-number {
    background-color: hsl(33, 100%, 60%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}

.time-label {
    color: hsl(0, 0%, 60%);
    font-size: 12px;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-title {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: bold;
    color: hsl(0, 0%, 100%);
    margin-bottom: 64px;
}


.footer {
    text-align: center;
    color: hsl(0, 0%, 60%);
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-link {
    color: hsl(0, 0%, 60%);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: hsl(0, 0%, 80%);
}

.footer-brand {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.made-with {
    font-size: 12px;
}

.klickpages-logo {
    height: 16px;
    opacity: 0.7;
}


@media (max-width: 768px) {
    .container {
        padding: 32px 16px;
    }
    
    .countdown-timer {
        gap: 12px;
    }
    
    .time-number {
        font-size: 20px;
        padding: 6px 12px;
        min-width: 50px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-brand {
        justify-content: center;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .time-number {
        font-size: 18px;
        padding: 4px 8px;
        min-width: 45px;
    }
}
