* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;

  background: radial-gradient(circle at top, #1e2b55, #090909 35%);

  color: white;
  min-height: 100vh;
}

/* TOP */

.topbar {
  position: sticky;
  top: 0;
  z-index: 999;

  padding: 20px 35px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(15, 15, 15, 0.92);

  backdrop-filter: blur(20px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-size: 26px;
  font-weight: 800;

  background: linear-gradient(90deg, #4c7dff, #8d68ff);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu a {
  text-decoration: none;

  color: #bbb;

  padding: 10px 14px;

  border-radius: 10px;

  transition: 0.2s;

  margin-left: 8px;
}

.menu a:hover {
  background: #1a1a1a;

  color: #fff;
}

.container {
  width: 96%;
  max-width: 1800px;

  margin: auto;

  padding: 30px;
}

/* HEADER */

.header-actions {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 25px;

  background: linear-gradient(180deg, #181818, #111);

  padding: 25px;

  border-radius: 24px;

  border: 1px solid #222;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.title {
  font-size: 26px;

  font-weight: 700;
}

/* BUTTONS */

.btn {
  padding: 12px 18px;

  border: none;

  border-radius: 12px;

  cursor: pointer;

  font-weight: bold;

  transition: 0.2s;

  text-decoration: none;

  display: inline-block;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, #4c7dff, #6d62ff);

  color: white;
}

.btn-delete {
  background: linear-gradient(90deg, #ff4747, #d53c3c);

  color: white;
}

/* TABLE */

.table-box {
  background: linear-gradient(180deg, #171717, #101010);

  border-radius: 24px;

  overflow: hidden;

  border: 1px solid #222;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: #1e1e1e;

  padding: 18px;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 1px;

  color: #888;
}

td {
  padding: 16px;

  font-size: 13px;

  text-align: center;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

tr {
  transition: 0.2s;
}

tr:hover {
  background: #1a1a1a;
}

/* TAGS */

.tag {
  padding: 6px 10px;

  border-radius: 30px;

  font-size: 11px;

  display: inline-block;

  margin: 3px;

  font-weight: bold;
}

.pokemon {
  background: #28b463;
}

.item {
  background: #f1c40f;
  color: #000;
}

.outfit {
  background: #9b59b6;
}

.infinite {
  background: #2980b9;
}

.limited {
  background: #e67e22;
}

.expired {
  background: #d63031;
}

.btn-secondary {
  background: linear-gradient(90deg, #2a2a2a, #3a3a3a);
}

.btn-secondary:hover {
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}

.recover-link {
  display: block;

  text-align: center;

  margin-top: 18px;

  color: #8faeff;

  text-decoration: none;

  font-size: 13px;

  transition: 0.25s;
}

.recover-link:hover {
  color: #ffffff;

  text-shadow: 0 0 15px rgba(76, 125, 255, 0.6);
}
