:root {
    --cyan: #7dd3fc;
    --blue: #38bdf8;
    --pink: #f0abfc;
    --magenta: #e879f9;
    --dark: #0f0f23;
    --darker: #070712;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--darker);
    color: white;
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.background-gradient {
    animation: gradientShift 15s ease infinite;
    background: radial-gradient(circle at 20% 50%, rgba(125, 211, 252, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(232, 121, 249, 0.15) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(56, 189, 248, 0.15) 0%, transparent 50%);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 0;
}

.particles {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-30px) translateX(20px);
    }

    50% {
        transform: translateY(-60px) translateX(-20px);
    }

    75% {
        transform: translateY(-30px) translateX(10px);
    }
}

.particle {
    animation: float 8s ease-in-out infinite;
    background: var(--cyan);
    height: 8px;
    opacity: 0.3;
    position: absolute;
    width: 8px;
}

.particle:nth-child(2n) {
    animation-delay: -2s;
    animation-duration: 10s;
    background: var(--pink);
}

.particle:nth-child(3n) {
    animation-delay: -4s;
    animation-duration: 12s;
}

.container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90vh;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    animation: fadeInDown 1s ease-out;
    margin-bottom: 2rem;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.logo {
    -moz-user-select: none;
    animation: floatLogo 3s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(125, 211, 252, 0.5));
    height: 200px;
    user-select: none;
    width: 200px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.description-section {
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-bottom: 3rem;
    max-width: 700px;
    width: 100%;
}

.description-content {
    backdrop-filter: blur(10px);
    background: rgba(125, 211, 252, 0.05);
    border: 1px solid rgba(125, 211, 252, 0.2);
    padding: 2.5rem;
}

.description-text {
    -moz-user-select: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    user-select: none;
}

.description-text:last-child {
    margin-bottom: 0;
}

.highlight {
    color: var(--cyan);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(125, 211, 252, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(125, 211, 252, 0.3);
    }

    50% {
        box-shadow: 0 0 50px rgba(232, 121, 249, 0.5);
    }
}

.coming-soon {
    -moz-user-select: none;
    animation: fadeInUp 1s ease-out 0.9s both, pulse 2s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.2), rgba(232, 121, 249, 0.2));
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--cyan), var(--pink)) 1;
    box-shadow: 0 0 30px rgba(125, 211, 252, 0.3);
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    user-select: none;
}

.discord-section {
    animation: fadeInUp 1s ease-out 1.2s both;
    margin-top: 3rem;
    max-width: 600px;
    width: 100%;
}

.discord-description {
    -moz-user-select: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    user-select: none;
}

.discord-button {
    -moz-user-select: none;
    align-items: center;
    background: #5865F2;
    border: 2px solid #5865F2;
    color: white;
    cursor: pointer;
    display: flex;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    gap: 0.75rem;
    justify-content: center;
    letter-spacing: 0.1em;
    overflow: hidden;
    padding: 1.2rem 2rem;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    user-select: none;
    width: 100%;
}

.discord-button::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    content: '';
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: left 0.5s ease;
    width: 100%;
}

.discord-button:hover::before {
    left: 100%;
}

.discord-button:hover {
    background: #4752C4;
    border-color: var(--cyan);
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.5);
    transform: translateY(-2px);
}

.discord-button:active {
    transform: translateY(0);
}

.discord-icon {
    height: 28px;
    position: relative;
    width: 28px;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.footer {
    -moz-user-select: none;
    animation: fadeIn 1s ease-out 1.2s both;
    bottom: -4rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    user-select: none;
}

@media (max-width: 768px) {
    .logo {
        height: 150px;
        width: 150px;
    }

    .discord-button {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .discord-icon {
        height: 24px;
        width: 24px;
    }
}
