/* Reset default spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full screen center layout */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #cc4a00 0%, #ff6a00 100%);
    font-family: 'Segoe UI', Arial, sans-serif;
    text-align: center;
}


/* Container styling */
.container {
    padding: 70px 90px;
    
}

/* Brand name */
.container h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Launch text */
.container h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffe5d6;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Early access line */
.container a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #ffffff;
    text-decoration: none;

    border: 2px solid #ffffff;
    border-radius: 30px;

    transition: all 0.3s ease;
}

.container a:hover {
    background: #ffffff;
    color: #cc4a00;
}
.container h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 0.85;
}
