body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    color: white;
    overflow: hidden;
}

body {
    background: url('./images/hero-background.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.container {
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    width: fit-content;
    height: fit-content;
    max-height: 15%;
    border-radius: 20px;
    margin: 6rem 0;
    box-sizing: border-box;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.buttons {
    margin-bottom: 5rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 2.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    flex-wrap: wrap;
}

.time-section {
    margin: 0 0.3rem;
}

.time {
    font-size: 3rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem;
    border-radius: 10px;
    min-width: 100px;
    margin-bottom: 0.5rem;
}

.label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(135, 80, 49, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

@media (max-width: 600px) {
    .time {
        font-size: 2rem;
        min-width: 70px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .countdown-container {
        gap: 0.5rem;
    }
}
