/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    padding: 40px 0 20px;
    text-align: center;
}

.logo {
    position: relative;
    display: inline-block;
}

.logo h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hand-icon {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    font-size: clamp(2rem, 6vw, 3rem);
    opacity: 0.9;
}

/* Main content styles */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.coming-soon {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.coming-soon h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
    font-weight: 300;
}

.description {
    margin-bottom: 40px;
}

.description p {
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 1rem;
}

.disclaimer {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    text-align: left;
}

.disclaimer h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
}

.disclaimer p {
    margin-bottom: 12px;
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.disclaimer .warning {
    color: #ffcc99;
    font-weight: 500;
    background: rgba(255, 204, 153, 0.1);
    padding: 10px;
    border-radius: 6px;
    border-left: 3px solid #ffcc99;
}

.disclaimer .free-advice {
    color: #ccffcc;
    font-weight: 500;
    background: rgba(204, 255, 204, 0.1);
    padding: 10px;
    border-radius: 6px;
    border-left: 3px solid #ccffcc;
}

.disclaimer a {
    color: inherit;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.disclaimer a:hover {
    opacity: 0.8;
}

.contact-info {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-info p {
    margin-bottom: 8px;
    color: #cccccc;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #cccccc;
    text-decoration: underline;
}

.launch-notification {
    font-style: italic;
    color: #aaaaaa;
    font-size: 0.95rem;
}

/* Footer styles */
.footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    color: #888888;
    font-size: 0.9rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.separator {
    margin: 0 15px;
    opacity: 0.5;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hand-icon {
        position: static;
        display: block;
        margin-top: 10px;
        transform: none;
    }

    .coming-soon {
        padding: 30px 20px;
        margin: 20px 0;
    }

    .contact-info {
        padding: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .separator {
        display: none;
    }
}