:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #ff3b3b;
    /* Reddish accent from "South Zone" branding often associated with strength/boldness, can affect based on actual logo color */
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Background Effect */
body::before {
    content: '';
    position: absolute;
    width: 150vw;
    height: 150vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.logo-container {
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.main-text {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: #888;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.loader-line {
    width: 0;
    height: 2px;
    background: var(--text-color);
    margin: 2rem auto 0;
    animation: expandLine 1.5s ease-in-out 1.5s forwards;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

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

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

@keyframes expandLine {
    from {
        width: 0;
    }

    to {
        width: 60px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .main-text {
        font-size: 2.5rem;
    }

    .logo {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    .main-text {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .sub-text {
        font-size: 1.2rem;
    }

    .logo {
        max-width: 150px;
        margin-bottom: 1.5rem;
    }
}