* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}
.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.logo-container {
    width: 100%;
    max-width: 600px;
}
.logo {
    width: 100%;
    height: auto;
    display: block;
}
.coming-soon {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.coming-soon h1 {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.coming-soon p {
    font-size: 1.5rem;
    color: #a0a0a0;
    font-weight: 300;
}
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
    background: linear-gradient(90deg, #00e5ff 0%, #00aadd 100%);
}
.powered-by {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
}
.powered-by span {
    color: #5a6a7a;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}        
.powered-by img {
    height: 100px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
    
    .powered-by img {
        height: 32px;
    }
}
@media (max-width: 480px) {
    .coming-soon h1 {
        font-size: 2rem;
    }
    
    .coming-soon p {
        font-size: 1rem;
    }
    
    .content {
        gap: 2rem;
    }
    
    .powered-by img {
        height: 28px;
    }
}
