/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent: #00ff88;
    --accent-glow: rgba(0, 255, 136, 0.4);
    --accent-dark: rgba(0, 255, 136, 0.1);
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

/* Background Animations */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #0088ff;
    bottom: -50px;
    right: 10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    animation-duration: 25s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Main Content Container */
.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    perspective: 1000px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Logo Styles */
.logo-container {
    margin-bottom: 2rem;
}

.logo-box {
    width: 100px;
    height: 100px;
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid var(--accent);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px var(--accent-glow), inset 0 0 20px var(--accent-dark);
    animation: pulseGlow 4s infinite alternate;
    position: relative;
    overflow: hidden;
}

.logo-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--accent), transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0.2;
}

.lightning-icon {
    width: 50px;
    height: 50px;
    color: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent));
    z-index: 2;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 20px var(--accent-dark), inset 0 0 10px var(--accent-dark); }
    100% { box-shadow: 0 0 40px var(--accent-glow), inset 0 0 20px var(--accent-glow); }
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* Brand Text */
.brand-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.brand-name {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

.pro-badge {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 0 15px var(--accent-dark), inset 0 0 10px var(--accent-dark);
}

.subtitle {
    font-family: 'Space Mono', monospace;
    color: var(--text-muted);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 4rem;
}

/* Construction Box */
.construction-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.construction-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.5;
}

.loader {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.loader span {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
    box-shadow: 0 0 10px var(--accent);
}

.loader span:nth-child(1) { animation-delay: -0.32s; }
.loader span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.construction-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: #fff;
}

.construction-box p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, transparent, var(--accent));
    border-radius: 10px;
    position: relative;
    animation: load 2s ease-out forwards;
    box-shadow: 0 0 10px var(--accent);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    background-size: 20px 20px;
    animation: stripe 1s linear infinite;
}

@keyframes load {
    0% { width: 0%; }
    100% { width: 65%; }
}

@keyframes stripe {
    0% { background-position: 20px 0; }
    100% { background-position: 0 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 1.5rem; }
    .logo-box { width: 80px; height: 80px; }
    .lightning-icon { width: 40px; height: 40px; }
    .brand-name { font-size: 2.5rem; }
    .pro-badge { font-size: 1rem; padding: 0.3rem 0.8rem; }
    .subtitle { font-size: 0.9rem; margin-bottom: 2rem; }
    .construction-box { padding: 2rem 1.5rem; }
    .orb-1 { width: 250px; height: 250px; }
    .orb-2 { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
    .container { padding: 1rem; margin-top: 2rem; margin-bottom: 2rem; }
    .logo-box { width: 70px; height: 70px; }
    .lightning-icon { width: 35px; height: 35px; }
    .brand-container { gap: 0.5rem; }
    .brand-name { font-size: 2rem; }
    .pro-badge { font-size: 0.8rem; padding: 0.2rem 0.6rem; }
    .subtitle { font-size: 0.8rem; margin-bottom: 1.5rem; }
    .construction-box { padding: 1.5rem 1rem; border-radius: 16px; }
    .construction-box h2 { font-size: 1.2rem; }
    .construction-box p { font-size: 0.85rem; margin-bottom: 1.5rem; }
}
