:root {
    --bg-dark: #0f0518;
    --bg-purple: #1a0b2e;
    --accent-pink: #d90429;
    --accent-purple: #7b2cbf;
    --text-white: #ffffff;
    --text-grey: #b8b8b8;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(123, 44, 191, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(217, 4, 41, 0.2) 0%, transparent 40%),
        linear-gradient(135deg, #090212 0%, #1a0b2e 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    overflow: hidden;
    position: relative;
}

/* Speed lines effect */
.lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 49px,
            rgba(255, 255, 255, 0.03) 50px,
            transparent 51px);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.logo-container {
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.logo-image {
    max-width: 280px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.intro-text {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text-grey);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 300;
}

.main-title {
    font-size: 5rem;
    font-weight: 900;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff5bb8 0%, #aa2eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(170, 46, 255, 0.4));
    animation: pulse 3s infinite alternate;
}

.description {
    font-size: 1.1rem;
    color: #d1d1d1;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(90deg, #c72bfb, #ff0073);
    color: white;
    box-shadow: 0 5px 20px rgba(199, 43, 251, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(199, 43, 251, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.footer-credits {
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

.glow-1 {
    top: -50px;
    left: -50px;
    background: #62149c;
}

.glow-2 {
    bottom: -50px;
    right: -50px;
    background: #9d0232;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .logo-image {
        max-width: 160px;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        filter: drop-shadow(0 0 15px rgba(170, 46, 255, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 30px rgba(170, 46, 255, 0.6));
    }
}