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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    min-height: 100vh;
    overflow: hidden;
    color: white;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 5;
}

.content {
    text-align: center;
    z-index: 10;
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px #00ffe7;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.login-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-checkbox {
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 5px rgba(0, 255, 234, 0.3);
}

.custom-checkbox:checked {
    background: rgba(0, 255, 234, 0.2);
    border-color: rgba(0, 255, 234, 0.8);
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.6);
}

.custom-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    cursor: pointer;
    user-select: none;
}

.discord-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(145deg, #7289da, #99aab5);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(114, 137, 218, 0.4);
}

.discord-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.discord-login-btn:hover::before {
    left: 100%;
}

.discord-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(114, 137, 218, 0.7);
    background: linear-gradient(145deg, #7289da, #a3b5ff);
}

.discord-login-btn:active {
    transform: translateY(0);
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 255, 234, 0.05), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(8px);
}

.floating-element:nth-child(1) {
    top: 5%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.floating-element:nth-child(3) {
    bottom: 15%;
    left: 40%;
    animation-delay: 4s;
    animation-duration: 14s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .discord-login-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}