@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffd012;
    --secondary-color: #ffffff;
    --dark-bg: #121212;
    --light-bg: #1e1e1e;
    --text-color: #ffffff;
    --accent-color: #ffd012;
}

/* Base styles for mobile first approach */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg), var(--light-bg));
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    padding: 20px 0 10px;
    text-align: center;
}

.logo {
    text-align: center;
    margin-bottom: 10px;
}

.logo-svg {
    width: 300px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 10px 0 20px;
}

.coming-soon {
    width: 100%;
    max-width: 800px;
    padding: 40px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.time {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    min-width: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.time h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    min-width: 70px;
    position: relative;
}

.time p {
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ddd;
}

.newsletter {
    margin: 40px 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #fff;
}

form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    flex: 1;
    padding: 15px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px 0 0 5px;
    outline: none;
    font-size: 1rem;
}

button {
    padding: 15px 25px;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

button:hover {
    background: #fff;
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    color: #000;
}

footer {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

footer p {
    margin-bottom: 5px;
}

footer p:last-child {
    font-size: 0.8rem;
    opacity: 0.8;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.launch-date {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 400;
}

/* Fix for iOS Safari viewport height issue */
@supports (-webkit-touch-callout: none) {
    .container {
        min-height: -webkit-fill-available;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .time h3 {
        font-size: 2rem;
        min-width: 60px;
    }
    
    .logo-svg {
        width: 240px;
    }
    
    .coming-soon {
        padding: 25px 20px;
    }
    
    .time {
        min-width: 80px;
        padding: 10px;
    }
    
    form {
        flex-direction: column;
    }
    
    input[type="email"] {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    button {
        border-radius: 5px;
    }
    
    .launch-date {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    header {
        padding: 15px 0 5px;
    }
    
    .logo {
        margin-bottom: 5px;
    }
    
    .logo-svg {
        width: 200px;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .launch-date {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .countdown {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .time {
        padding: 8px 5px;
        min-width: 60px;
    }
    
    .time h3 {
        font-size: 1.3rem;
        min-width: auto;
    }
    
    .time p {
        font-size: 0.7rem;
    }
    
    .coming-soon {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .newsletter h3 {
        font-size: 1.2rem;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    footer {
        padding: 15px 0;
        font-size: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 350px) {
    .logo-svg {
        width: 180px;
    }
    
    .countdown {
        gap: 5px;
    }
    
    .time {
        padding: 5px;
        min-width: 50px;
    }
    
    .time h3 {
        font-size: 1.1rem;
    }
    
    .time p {
        font-size: 0.6rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
} 