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

body {
    font-family: Arial, Tahoma, sans-serif;
    min-height: 100vh;
    overflow: hidden;
    color: white;
}

.background {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 0, 200, 0.35), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(0, 120, 255, 0.45), transparent 30%),
        linear-gradient(135deg, #2b1055, #3b1d8f, #0077ff, #ff3cac);
    background-size: 200% 200%;
    animation: gradientMove 12s ease infinite;
    z-index: -1;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 40px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.avatar-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.bot-avatar {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 35px rgba(255, 0, 200, 0.45);
}

.fallback-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5865f2, #8b5cf6, #ff3cac);
    font-weight: bold;
    font-size: 28px;
}

.bot-name {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
}

.welcome-text {
    font-size: 19px;
    opacity: 0.95;
    margin-bottom: 24px;
}

.status-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 999px;
    font-size: 14px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot.online {
    background: #3cff8f;
    box-shadow: 0 0 12px #3cff8f;
}

.status-dot.offline {
    background: #ff4b4b;
    box-shadow: 0 0 12px #ff4b4b;
}

.guild-count {
    margin-bottom: 24px;
    opacity: 0.85;
    font-size: 14px;
}

.discord-login-button {
    width: 100%;
    border: none;
    outline: none;
    padding: 15px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #5865f2, #8b5cf6, #ff3cac);
    color: white;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.discord-login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(88, 101, 242, 0.45);
}

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