body {
      font-family: 'Exo 2', sans-serif;
      background-color: #2c2f33;
      color: #e0e0e0;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-bottom: 80px;
    }

    .login-container {
      background-color: #343541;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
      width: 100%;
      max-width: 420px;
    }

    .form-control {
      background-color: #40444b;
      color: white;
      border: 1px solid #343541;
      transition: all 0.3s ease;
    }

    .form-control:focus {
      background-color: #40444b;
      color: white;
      border: 1px solid #343541;
      outline: none;
    }

    .form-control::placeholder {
      color: #aaa;
    }

    .btn-primary {
      width: 100%;
      background-color: #5865f2;
      border: none;
      font-weight: 600;
    }

    .btn-primary:hover {
      background-color: #4752c4;
    }

    #modal-alert-area {
      display: block;
      min-height: 0;
      margin-top: 20px;
    }

    .modal-alert-box {
      display: flex;
      flex-direction: column;
      background-color: #444;
      color: white;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 0 10px #000;
      opacity: 0.95;
      position: relative;
      width: 100%;
    }

    .alert-box {
      background-color: #444;
      color: white;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 0 10px #000;
      margin-top: 20px;
      opacity: 0.95;
      position: relative;
    }

    .progress-bar-timer {
      height: 3px;
      background-color: #00ff99;
      animation: progressAnimation 4s linear forwards;
      margin-top: 10px;
      border-radius: 4px;
    }

    @keyframes progressAnimation {
      from { width: 100%; }
      to { width: 0%; }
    }

    .footer {
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color: #1e2124;
      color: #ccc;
      text-align: center;
      padding: 12px 0;
      font-size: 0.95rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.6);
    }

    .footer img {
      height: 24px;
      vertical-align: middle;
      margin-top: -15px;
    }

    .custom-checkbox {
      display: flex;
      align-items: center;
      gap: 8px;
      user-select: none;
      font-size: 0.85rem;
      color: #ccc;
    }

    .custom-checkbox input[type="checkbox"] {
      appearance: none;
      width: 14px;
      height: 14px;
      border: 2px solid #5865f2;
      border-radius: 4px;
      background-color: transparent;
      transition: background-color 0.2s, border-color 0.2s;
      cursor: pointer;
      position: relative;
    }

    .custom-checkbox input[type="checkbox"]:checked {
      background-color: #5865f2;
      border-color: #4752c4;
    }

    .custom-checkbox input[type="checkbox"]::after {
      content: '';
      position: absolute;
      top: 2px;
      left: 5px;
      width: 4px;
      height: 9px;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
      opacity: 0;
      transition: opacity 0.2s;
    }

    .custom-checkbox input[type="checkbox"]:checked::after {
      opacity: 1;
    }

    .modal-content {
      background: rgba(30, 30, 47, 0.95);
      backdrop-filter: blur(12px);
      border-radius: 15px;
      border: none;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
      color: #e0e0e0;
      font-weight: 600;
      font-size: 1rem;
      transition: transform 0.3s ease;
    }

    .modal-content:hover {
      transform: translateY(-5px);
    }

    .modal-header {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 1.5rem 1.5rem 1rem;
      position: relative;
    }

    .modal-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: #00ff99;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .modal-discord .modal-title {
      color: #5865f2;
    }

    .modal-2fa .modal-title {
      color: #00ff99;
    }

    .btn-close {
      color: #aaa;
      font-size: 24px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 8px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      position: absolute;
      right: 15px;
      top: 15px;
    }

    .btn-close:hover {
      color: #ff6b7a;
      background: rgba(220, 53, 69, 0.15);
      border-color: rgba(220, 53, 69, 0.3);
      transform: scale(1.1) rotate(90deg);
    }

    .modal-body {
      padding: 1.5rem;
    }

    .modal-footer {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 1rem 1.5rem;
    }

    #inputNomeGuerra {
      background-color: #262938;
      border: 2px solid #262938;
      border-radius: 12px;
      color: #e0e0e0;
      padding: 12px 15px;
      font-size: 1rem;
      font-weight: 600;
      box-shadow: inset 0 0 6px #262938;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    #inputNomeGuerra::placeholder {
      color: #aaa;
      font-weight: 400;
    }

    #inputNomeGuerra:focus {
      outline: none;
      border-color: #5865f2;
      box-shadow: inset 0 0 10px #5865f2;
    }

    #btnLocalizarNomeGuerra {
      background: linear-gradient(135deg, #00ff99, #00cc77);
      border: none;
      border-radius: 25px;
      padding: 12px 28px;
      font-weight: 700;
      font-size: 1.1rem;
      color: #121212;
      box-shadow: 0 5px 15px rgba(0, 255, 153, 0.4);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0 !important;
      transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    }

    #btnLocalizarNomeGuerra:hover {
      background: linear-gradient(135deg, #00cc77, #009955);
      box-shadow: 0 8px 20px rgba(0, 255, 153, 0.6);
      transform: translateY(-2px);
    }

    #btnLocalizarNomeGuerra:active {
      transform: translateY(0);
      box-shadow: 0 4px 12px rgba(0, 204, 119, 0.6);
    }

    .modal-discord .modal-content {
      box-shadow: 0 8px 32px rgba(88, 101, 242, 0.3);
      border: 1px solid rgba(88, 101, 242, 0.2);
    }

    .modal-2fa .modal-content {
      box-shadow: 0 8px 32px rgba(0, 255, 153, 0.3);
      border: 1px solid rgba(0, 255, 153, 0.2);
    }

    .form-text {
      color: #aaa !important;
      font-size: 0.8rem;
      margin-top: 15px !important;
      line-height: 1.4;
      padding: 10px 0;
    }

    .modal-alert-box {
      background-color: #444;
      color: white;
      padding: 12px 16px;
      border-radius: 8px;
      box-shadow: 0 0 8px #000;
      margin-top: 15px;
      opacity: 0.95;
      position: relative;
    }

    .modal-progress-bar-timer {
      height: 3px;
      background-color: #00ff99;
      animation: progressAnimation 4s linear forwards;
      margin-top: 8px;
      border-radius: 4px;
    }

    .user-info {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 12px 15px;
      margin-bottom: 20px;
      border-left: 4px solid #5865f2;
    }

    .modal-discord .user-info {
      border-left-color: #5865f2;
    }

    .modal-2fa .user-info {
      border-left-color: #00ff99;
    }

    .user-info p {
      margin: 5px 0;
      font-size: 0.95rem;
    }

    .user-info strong {
      color: #00ff99;
    }

    .modal-discord .user-info strong {
      color: #5865f2;
    }

    .info-text {
      color: #aaa;
      font-size: 0.9rem;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .modal-discord .form-control,
    .modal-2fa .form-control {
      background-color: #262938;
      border: 2px solid #262938;
      border-radius: 10px;
      color: #e0e0e0;
      padding: 12px 15px;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .modal-discord .form-control:focus {
      border-color: #5865f2;
      box-shadow: 0 0 0 0.2rem rgba(88, 101, 242, 0.25);
    }

    .modal-2fa .form-control:focus {
      border-color: #00ff99;
      box-shadow: 0 0 0 0.2rem rgba(0, 255, 153, 0.25);
    }

    .modal-discord .btn-primary {
      background: linear-gradient(135deg, #5865f2, #4752c4);
      border: none;
      border-radius: 25px;
      padding: 12px 28px;
      font-weight: 700;
      box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
    }

    .modal-discord .btn-primary:hover {
      background: linear-gradient(135deg, #4752c4, #3c45a5);
      box-shadow: 0 8px 20px rgba(88, 101, 242, 0.6);
    }

    .modal-2fa .btn-primary {
      background: linear-gradient(135deg, #00ff99, #00cc77);
      border: none;
      border-radius: 25px;
      padding: 12px 28px;
      font-weight: 700;
      color: #121212;
      box-shadow: 0 5px 15px rgba(0, 255, 153, 0.4);
    }

    .modal-2fa .btn-primary:hover {
      background: linear-gradient(135deg, #00cc77, #009955);
      box-shadow: 0 8px 20px rgba(0, 255, 153, 0.6);
    }

    #btnReenviarCodigo {
      background: linear-gradient(135deg, #4752c4, #3c45a5) !important;
      border: 1px solid rgba(255, 255, 255, 0.2) !important;
      color: white !important;
      border-radius: 20px;
      padding: 8px 16px;
      font-size: 0.9rem;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4) !important;
      transition: all 0.3s ease;
    }

    #btnReenviarCodigo:hover {
      background: linear-gradient(135deg, #3c45a5, #343a8f) !important;
      box-shadow: 0 6px 18px rgba(88, 101, 242, 0.6) !important;
      transform: translateY(-2px);
    }

    #btnReenviarCodigo:active {
      transform: translateY(0);
    }

    #btnReenviarCodigo:disabled {
      background: linear-gradient(135deg, #666, #555) !important;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    .time-counter {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 12px 15px;
      margin: 15px 0;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .expiration-text {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 8px;
      text-align: center;
    }

    .progress {
      height: 6px;
      background-color: #40444b;
      border-radius: 3px;
      overflow: hidden;
    }

    .progress-bar {
      border-radius: 3px;
      transition: width 1s linear, background-color 0.3s ease;
    }
