:root {
  --yellow: #f9c004;
  --black: #0b0b0b;
  --red: #f03a17;
  --dark-gray: #121212;
  --light-gray: #a19a9a;
  --white: #f4eded;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--dark-gray);
}

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

*::selection {
  color: #fff;
  background-color: var(--red);
}

a {
  text-decoration: none;
}

i {
  cursor: pointer;
}

#login-alert {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f85032, #e73827);
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.5s ease forwards;
  transform: translateX(120%);
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

.login-alert-botton {
  color: #fff;
  border: 1px solid #fff;
  padding: 4px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

.login-alert-botton:hover {
  background-color: #fff;
  color: #e73827;
  transform: scale(1.05);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

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