:root {
    --bg-color: #18181b;
    /* Zinc 900 */
    --text-primary: #e2e8f0;
    /* Slate 200 */
    --text-secondary: #a1a1aa;
    /* Zinc 400 */
    --accent-color: #f97316;
    /* Orange 500 */
    --hover-bg: rgba(255, 255, 255, 0.05);
    --font-main: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrolling Grid Animation */
@keyframes bg-scrolling-reverse {
    100% {
        background-position: 50px 50px;
    }
}

/* Background effect (Grid) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAABnSURBVHja7M5RDYAwDEXRDgmvEocnlrQS2SwUFST9uEfBGWs9c97nbGtDcquqiKhOImLs/UpuzVzWEi1atGjRokWLFi1atGjRokWLFi1atGjRokWLFi1af7Ukz8xWp8z8AAAA//8DAJ4LoEAAlL1nAAAAAElFTkSuQmCC");
    background-repeat: repeat;
    animation: bg-scrolling-reverse 2s infinite linear;
    opacity: 0.1;
    z-index: -2;
    pointer-events: none;
}

/* Spotlight effect (Interactive) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(249, 115, 22, 0.1),
            transparent 80%);
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Container */
.container {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Content */
.content {
    text-align: center;
    max-width: 700px;
    width: 100%;
    animation: fadeIn 1.4s ease-out;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    box-shadow:
        0 0 40px rgba(249, 115, 22, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 60px rgba(249, 115, 22, 0.3),
        0 6px 30px rgba(0, 0, 0, 0.5);
}

/* Studio Name */
.studio-name {
    font-family: var(--font-main);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.studio-name .word {
    display: inline-block;
    margin: 0 0.3em;
    animation: wordFadeIn 0.8s ease-out backwards;
}

.studio-name .word:nth-child(1) {
    animation-delay: 0.2s;
}

.studio-name .word:nth-child(2) {
    animation-delay: 0.4s;
}

.studio-name .word:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes wordFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.8s backwards;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-color);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

.status-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Tagline */
.tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 1s backwards;
}

/* Progress Container */
.progress-container {
    margin-top: 3rem;
    animation: fadeIn 1s ease-out 1.2s backwards;
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--accent-color);
    border-radius: 10px;
    animation: progressAnimation 2s ease-out forwards;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

@keyframes progressAnimation {
    from {
        width: 0%;
    }

    to {
        width: 65%;
    }
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 2rem;
}

.footer p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 300;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        width: 120px;
        height: 120px;
    }

    .studio-name .word {
        display: block;
        margin: 0.2em 0;
    }

    .container {
        padding: 1.5rem;
    }

    .footer {
        bottom: 1.5rem;
        padding: 0 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}