:root {
    --blue-volt: #3b82f6;
    --blue-dark: #1d4ed8;
    --bg-dark: #0f172a;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 20px;
}

.mascot-container {
    margin-bottom: 30px;
}

.floating-mascot {
    width: 120px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-volt);
    border: 1px solid var(--blue-volt);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 span {
    color: var(--blue-volt);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    background-color: var(--blue-volt);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-discord:hover {
    background-color: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-discord .icon {
    width: 20px;
    margin-right: 12px;
    filter: brightness(0) invert(1);
}

footer {
    margin-top: 60px;
    font-size: 0.8rem;
    color: var(--text-gray);
    opacity: 0.6;
}

@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .floating-mascot { width: 90px; }
}