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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #ffffff;
}

/* Contenedor principal */
.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.content {
    background: rgba(30, 30, 60, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(234, 179, 8, 0.3);
}

/* Logo */
.logo-container {
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Títulos */
.title {
    font-size: 2.5rem;
    color: #eab308;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(234, 179, 8, 0.5);
}

.title-spanish {
    font-size: 0.9rem;
    color: #afafaf;
    margin-bottom: 20px;
    font-weight: 200;
}

.message h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}



/* Texto del mensaje */
.message p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 15px;
}



.message p strong {
    color: #eab308;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(234, 179, 8, 0.3);
}

/* Botón */
.button-container {
    margin: 40px 0 30px 0;
    text-align: center;
}



.button {
    display: inline-block;
    background: linear-gradient(45deg, #eab308, #f59e0b);
    color: #1a1a2e;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button:hover {
    background: linear-gradient(45deg, #f59e0b, #eab308);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(234, 179, 8, 0.6);
}

.button:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(234, 179, 8, 0.2);
}

.footer p {
    font-size: 0.95rem;
    color: #d1d5db;
    font-style: normal;
    margin-bottom: 3px;
}

/* Logo Corvus Belli */
.corvus-belli-logo {
    margin-top: 25px;
    text-align: center;
}

.corvus-logo {
    width: 120px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(0.3);
}

.corvus-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .message h2 {
        font-size: 1.5rem;
    }
    
    .message p {
        font-size: 1rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .corvus-logo {
        width: 100px;
    }
    
    .button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 25px 15px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .message h2 {
        font-size: 1.3rem;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .corvus-logo {
        width: 80px;
    }
    
    .button {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

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

.content {
    animation: fadeIn 0.8s ease-out;
}

/* Efectos de hover mejorados */
.content:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Mejora visual del gradiente de fondo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(234, 179, 8, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}
