@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');


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


body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    background: url('background.png') no-repeat center center/cover;
    color: #ffffff;
    position: relative;
}


.overlay {
}


.header {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px 0;
}


.logo {
    max-width: 450px;
}


.container {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 160px);
    /* header + footer space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}


.coming-text {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
}


.launch-text {
    font-size: 16px;
    margin-bottom: 40px;
    color: #f5f5f5;
}


.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}


.time-box {
    background: #111;
    border-radius: 8px;
    padding: 15px 20px;
    min-width: 110px;
}


.time-box span {
font-size: 36px;
font-weight: 700;
display: block;
}


.time-box small {
font-size: 12px;
color: #ccc;
}


.download-btn {
display: inline-block;
background: linear-gradient(135deg, #c62828, #e53935);
color: #fff;
padding: 14px 30px;
border-radius: 6px;
font-weight: 600;
text-decoration: none;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.download-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}


.footer {
position: relative;
z-index: 2;
text-align: center;
padding: 20px;
font-size: 12px;
color: #aaa;
}


@media (max-width: 768px) {
.coming-text {
font-size: 42px;
}


.time-box {
min-width: 90px;
}
}