 @import url('https://fonts.googleapis.com/css2?family=Aptos:wght@300;400;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Aptos', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    filter: blur(1px);
    animation: float 20s infinite ease-in-out;
}

.orb:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.orb:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.main-content {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
    animation: glow 3s ease-in-out infinite alternate;
    filter: brightness(1);
}

@keyframes glow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.tagline {
    font-size: 1.1rem;
    color: #888888;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.coming-soon {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 400;
}

.launch-message {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.notify-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 4rem;
}

.email-input {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
}

input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
}

input::placeholder {
    color: #666666;
}

.notify-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #444444 0%, #2a2a2a 100%);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    border-color: rgba(255,255,255,0.4);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #444444;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 768px) {
    .logo {
        max-width: 250px;
    }
    
    .email-input {
        flex-direction: column;
    }
    
    .notify-btn {
        width: 100%;
    }
    
    .social-links {
        gap: 1rem;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}