/* 
    SPORTSTYLES - HIGH-END MAINTENANCE SKIN
    DESIGNED BY GEMINI x SPORTSTYLES
    FIX: PC FOOTER ALIGNMENT & GLOBAL SYMMETRY
*/

:root { 
    --accent: #000000; 
    --text: #050505; 
    --muted: #a0a0a0; 
    --bg: #ffffff; 
    --gold: #A4834D; 
    --gold-light: #c5a87a;
    --transit: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); 
}

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@300;400;500;700;900&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent; 
}

html, body {
    height: 100%;
    width: 100%;
    background-color: var(--bg);
}

body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

/* Contenedor Principal */
.maintenance-container {
    flex: 1 0 auto;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f9f9f9 100%);
    overflow: hidden;
}

/* Marca de Agua con nombre completo */
.bg-overlay-text {
    position: absolute;
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: clamp(4rem, 15vw, 20vw); 
    color: rgba(0, 0, 0, 0.02);
    z-index: 0;
    user-select: none;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: -0.5vw;
    text-align: center;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    animation: floatingText 10s ease-in-out infinite;
}

.maintenance-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Tagline Superior */
.maint-logo-tag {
    font-size: clamp(8px, 1.5vw, 10px);
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}

/* Logo */
.maint-icon {
    width: clamp(110px, 15vw, 160px); 
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.03));
}

/* Título */
h1 {
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: clamp(2.4rem, 10vw, 5.5rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.accent-stroke {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
}

/* Párrafo */
p {
    font-weight: 400;
    font-size: clamp(12px, 2.2vw, 15px);
    color: var(--muted);
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 35px;
    padding: 0 15px;
}

/* Loader */
.loader-wrapper {
    width: 80px;
    height: 2px;
    background: rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    width: 40%;
    height: 100%;
    background: var(--gold);
    animation: loadingSweep 2s infinite ease-in-out;
}

/* Redes Sociales */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 5vw, 40px);
    width: 100%;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: var(--transit);
}

.social-btn img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    filter: grayscale(1);
    transition: var(--transit);
}

.social-btn:hover {
    color: var(--gold);
}

.social-btn:hover img {
    transform: translateY(-3px);
    opacity: 1;
    filter: grayscale(0);
}

/* Footer Corregido para PC y Celular */
.maint-footer {
    flex-shrink: 0;
    padding: 40px 20px;
    background: #000;
    color: #fff;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Asegura que todo esté al centro en PC */
}

.footer-text {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 15px;
    max-width: 300px; /* Evita que el texto se estire a los lados en PC */
    margin-left: auto;
    margin-right: auto;
}

.designer-tag {
    font-size: 8px;
    letter-spacing: 3px;
    font-weight: 400;
    opacity: 0.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.designer-tag b {
    color: #fff;
    font-weight: 800;
}

/* Animaciones */
@keyframes loadingSweep {
    0% { transform: translateX(-150%); }
    100% { transform: translateX(150%); }
}

@keyframes floatingText {
    0%, 100% { transform: translate(-50%, -51%); }
    50% { transform: translate(-50%, -49%); }
}

/* Ajustes Específicos Móvil */
@media (max-width: 480px) {
    .maintenance-container {
        padding: 40px 15px;
    }
    
    h1 {
        font-size: 2.8rem;
    }

    .social-links {
        gap: 25px;
    }

    .designer-tag {
        letter-spacing: 1.5px;
        font-size: 7px;
        gap: 8px;
    }

    .footer-text {
        max-width: 100%;
        font-size: 8px;
    }
}