:root {
    --color-primary: #2b4c7e;
    --color-secondary: #00bcd4;
    --color-accent: #00e5ff;
    --color-bg-dark: #060b1a;
    --color-bg-card: #0f193799;
    --color-text: #e0e8f0;
    --color-text-muted: #8a9bb5;
    --color-text-heading: #fff;
    --color-border: #00bcd426;
    --color-glow: #00bcd44d;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    -webkit-font-smoothing: antialiased;
    padding: 2rem 0;
}

/* Fondo dinámico y premium estilo Maule Labs */
#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, var(--color-glow) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(43,76,126,0.2) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
    animation: float 8s ease-in-out infinite alternate;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 90%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.2s ease-out;
    transition: all 0.3s ease;
}

.container:hover {
    box-shadow: 0 0 30px var(--color-border);
    border-color: var(--color-glow);
    transform: translateY(-4px);
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* Marca Abdias */
.brand {
    margin-bottom: 3rem;
}

.logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px var(--color-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.logo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--color-secondary);
}

.abdias-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: var(--color-text-heading);
}

.subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

/* Contenido Principal */
.content {
    margin-bottom: 4rem;
}

.coming-soon {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-heading);
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    margin: 2rem auto;
    border-radius: 2px;
}

.stay-tuned {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Footer MauleLabs */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer:hover {
    opacity: 1;
}

.footer p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.developer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.developer-link:hover {
    transform: translateY(-2px);
    color: var(--color-text-heading);
}

.maulelabs-logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.maulelabs-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.developer-link:hover .maulelabs-text {
    color: var(--color-secondary);
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 2rem 1.2rem;
        width: 92%;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .logo-container {
        width: 90px;
        height: 90px;
        margin-bottom: 1rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
}
