/*
Theme Name: Studiosf
Author: YURA
Description: Modern high-end Under Construction theme
Version: 1.2
*/

:root {
    --bg-color: #050505;
    --text-color: #f0f0f0;
    --accent-color: #00f2ff;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.03) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
}

.container {
    text-align: center;
    z-index: 10;
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 4px;
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; border-color: rgba(0, 242, 255, 0.8); }
    100% { opacity: 0.6; }
}

.headline {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.8;
    max-width: 400px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.loader {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 100%;
    background: var(--accent-color);
    animation: slide 1.5s infinite ease-in-out;
}

@keyframes slide {
    0% { left: -30%; }
    100% { left: 100%; }
}

.footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    letter-spacing: 0.4em;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0.4;
}