* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('../assets/fondo.png');
    background-size: cover;
    background-position: center;
}

.fondo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.login-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 48px 40px;
    width: 400px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.login-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 16px;
    margin-bottom: 20px;
}

.login-titulo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    letter-spacing: 3px;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.login-titulo span {
    color: #A898F0;
}

.login-sub {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.login-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 28px;
}

.btn-discord {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #5865F2;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 20px;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
}

.login-tos {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.login-tos a {
    color: #A898F0;
    text-decoration: none;
}

.login-tos a:hover {
    text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .login-card {
    width: 90%;
    padding: 36px 24px;
    margin: 16px;
  }

  .login-titulo {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .login-logo {
    width: 70px;
    height: 70px;
  }

  .login-sub {
    font-size: 11px;
  }

  .login-desc {
    font-size: 13px;
  }

  .btn-discord {
    font-size: 14px;
    padding: 12px 16px;
  }

  .login-tos {
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .login-card {
    width: 95%;
    padding: 28px 16px;
  }

  .login-titulo {
    font-size: 24px;
  }
}