/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE
========================= */
body {
  background: #0b0f1a;
  color: #e6e6eb;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}


/* =========================
   PAGE WRAPPER
========================= */
.page {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

/* =========================
   HEADER
========================= */
.site-header {
  text-align: center;
  margin-bottom: 40px;
}

.site-header h1 {
  font-size: 2.6rem;
  letter-spacing: 2px;
  color: #7df9ff;
  text-shadow: 0 0 8px rgba(125, 249, 255, 0.6);
}

.subtitle {
  color: #ff7ad9;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* =========================
   LAYOUT
========================= */
.layout {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 20px;
}

/* =========================
   SIDEBARS
========================= */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =========================
   BOXES
========================= */
.box {
  background: rgba(20, 25, 45, 0.85);
  border: 1px solid rgba(125, 249, 255, 0.3);
  padding: 15px;
  box-shadow:
    0 0 10px rgba(125, 249, 255, 0.15);
}

/* =========================
   HEADINGS
========================= */
h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #7df9ff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-size: 0.95rem;
  margin-top: 15px;
  margin-bottom: 6px;
  color: #ff7ad9;
}

/* =========================
   LISTS
========================= */
ul {
  list-style: none;
}

.favorites-list li {
  padding-left: 12px;
  position: relative;
  margin-bottom: 6px;
}

.favorites-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #7df9ff;
}

/* =========================
   LINKS
========================= */
a {
  color: #7df9ff;
  text-decoration: none;
}

a:hover {
  color: #ff7ad9;
  text-shadow: 0 0 5px rgba(255, 122, 217, 0.8);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}
