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

body {
    background: #0b0c10;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */

header {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    width: 160px;
    opacity: 0.95;
}

/* Hero */

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero h2 {
    font-weight: 300;
    color: #b0b3b8;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero p {
    max-width: 600px;
    line-height: 1.6;
    color: #d1d1d1;
}

.coming {
    margin-top: 20px;
    font-weight: 600;
    color: #8e2de2;
}

/* Button */

.btn {
    margin-top: 35px;
    padding: 14px 36px;
    background: linear-gradient(90deg, #8e2de2, #4a00e0);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
}

/* Footer */

footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #666;
}
