/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Play', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Canvas para efecto Liquid Glass */
#liquidCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Contenedor principal */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Logo */
.logo-container {
    margin-bottom: 40px;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.6));
    transform: scale(1.05);
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.8));
    }
}

/* Contenido Principal */
.main-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ffff, #0080ff, #8000ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleWave 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.secondary-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b00, #ffff00, #00ff80);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titlePulse 3s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(255, 255, 0, 0.6);
}

.site-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: siteGlow 2s ease-in-out infinite alternate;
}

@keyframes titleWave {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes siteGlow {
    from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
}

/* Panel de vidrio */
.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    animation: panelFloat 6s ease-in-out infinite;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(0, 255, 255, 0.1) 60deg,
        rgba(255, 0, 255, 0.1) 120deg,
        rgba(255, 255, 0, 0.1) 180deg,
        transparent 240deg,
        transparent 360deg
    );
    animation: rotateBorder 10s linear infinite;
    z-index: -1;
}

@keyframes panelFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(2deg); }
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Partículas Liquid Glass */
.liquid-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.liquid-particles::before,
.liquid-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(0, 255, 255, 0.3) 0%,
        rgba(0, 200, 255, 0.2) 40%,
        rgba(0, 100, 255, 0.1) 80%,
        transparent 100%
    );
    backdrop-filter: blur(20px);
    animation: liquidFloat 15s ease-in-out infinite;
}

.liquid-particles::before {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
    animation-delay: -5s;
}

.liquid-particles::after {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes liquidFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        border-radius: 50%;
    }
    25% { 
        transform: translate(50px, -30px) scale(1.1);
        border-radius: 60% 40% 30% 70%;
    }
    50% { 
        transform: translate(20px, 40px) scale(0.9);
        border-radius: 40% 60% 70% 30%;
    }
    75% { 
        transform: translate(-30px, -20px) scale(1.05);
        border-radius: 70% 30% 50% 50%;
    }
}

/* Footer */
.footer {
    margin-top: 60px;
    text-align: center;
    padding: 20px 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-links a:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
}

.social-links a:nth-child(1):hover {
    background: rgba(24, 119, 242, 0.3);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.social-links a:nth-child(2):hover {
    background: rgba(225, 48, 108, 0.3);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

.social-links a:nth-child(3):hover {
    background: rgba(29, 161, 242, 0.3);
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.4);
}

.social-links i {
    font-size: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .secondary-title {
        font-size: 3rem;
    }
    
    .site-title {
        font-size: 1.8rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .glass-panel {
        padding: 20px;
        margin: 20px 10px;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
    }
    
    .social-links i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .secondary-title {
        font-size: 2.5rem;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .container {
        padding: 10px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
    
    .social-links i {
        font-size: 1rem;
    }
}

/* Efectos adicionales de glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Accesibilidad - Clase para lectores de pantalla */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: inherit;
    margin: inherit;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Animación de carga de página */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container > * {
    animation: pageLoad 1s ease-out forwards;
}

.logo-container {
    animation-delay: 0.2s;
}

.main-content {
    animation-delay: 0.4s;
}

.footer {
    animation-delay: 0.6s;
}
