:root {
  --bg-gradient: linear-gradient(180deg, #0a0a0a, #121212, #1a1a1a, #0f0f0f);
  --text: #eaeaea;
  --accent: #9aa0a6;
  --header-bg: rgba(20,20,20,0.75);
  --panel-bg: rgba(255,255,255,0.04);
  --dropdown-bg: rgba(25,25,25,0.95);
}

/* LIGHT */
[data-theme="light"] {
  --bg-gradient: linear-gradient(180deg, #f8f9fb, #eef1f5, #e6ebf0, #ffffff);
  --text: #1f1f1f;
  --accent: #4a90e2;
  --header-bg: rgba(255,255,255,0.8);
  --panel-bg: rgba(0,0,0,0.04);
  --dropdown-bg: rgba(255,255,255,0.97);
}

/* CRIMSON */
[data-theme="crimson"] {
  --bg-gradient: linear-gradient(180deg, #1a0005, #3a000f, #5e0019, #2b000a);
  --text: #ffffff;
  --accent: #ff1744;
  --header-bg: rgba(40,0,10,0.75);
  --panel-bg: rgba(255,255,255,0.05);
  --dropdown-bg: rgba(30,0,10,0.95);
}

/* BLOSSOM */
[data-theme="blossom"] {
  --bg-gradient: linear-gradient(180deg, #fff5f8, #ffd6e0, #ffc2cf, #ffe3ea);
  --text: #3a2a2f;
  --accent: #ff5c8a;
  --header-bg: rgba(255,214,224,0.8);
  --panel-bg: rgba(255,255,255,0.65);
  --dropdown-bg: rgba(255,255,255,0.97);
}

/* MIDNIGHT */
[data-theme="midnight"] {
  --bg-gradient: linear-gradient(180deg, #0a0f1f, #111a33, #1a2747, #000814);
  --text: #e0e6ff;
  --accent: #4dabff;
  --header-bg: rgba(10,15,30,0.75);
  --panel-bg: rgba(255,255,255,0.05);
  --dropdown-bg: rgba(10,15,30,0.95);
}

/* SHADOW */
[data-theme="shadow"] {
  --bg-gradient: linear-gradient(180deg, #0d0614, #140a1f, #1c0f2b, #0a0412);
  --text: #cfc7d6;
  --accent: #6f42c1;
  --header-bg: rgba(15,8,25,0.8);
  --panel-bg: rgba(255,255,255,0.04);
  --dropdown-bg: rgba(12,6,20,0.95);
}

/* AURORA */
[data-theme="aurora"] {
  --bg-gradient: linear-gradient(180deg, #0f2c3c, #14455c, #1a6080, #0b1a26);
  --text: #e0f7fa;
  --accent: #00e5ff;
  --header-bg: rgba(15,44,60,0.75);
  --panel-bg: rgba(255,255,255,0.05);
  --dropdown-bg: rgba(10,30,45,0.95);
}

/* SOLAR */
[data-theme="solar"] {
  --bg-gradient: linear-gradient(180deg, #fff1cc, #ffe199, #ffcf66, #ffd633);
  --text: #3a2c1f;
  --accent: #ff9800;
  --header-bg: rgba(255,209,102,0.8);
  --panel-bg: rgba(0,0,0,0.05);
  --dropdown-bg: rgba(255,220,102,0.95);
}

/* FOREST */
[data-theme="forest"] {
  --bg-gradient: linear-gradient(180deg, #0b1d13, #123524, #1b4332, #081c15);
  --text: #d8f3dc;
  --accent: #52b788;
  --header-bg: rgba(10,30,20,0.75);
  --panel-bg: rgba(255,255,255,0.05);
  --dropdown-bg: rgba(10,25,18,0.95);
}

/* NEON */
[data-theme="neon"] {
  --bg-gradient: linear-gradient(180deg, #050505, #0a0a0a, #111111, #000000);
  --text: #eaffff;
  --accent: #00ffcc;
  --header-bg: rgba(10,10,10,0.8);
  --panel-bg: rgba(0,255,200,0.05);
  --dropdown-bg: rgba(10,10,10,0.95);
}

/* SUNSET */
[data-theme="sunset"] {
  --bg-gradient: linear-gradient(180deg, #2b0f1c, #5a1e3a, #a53860, #ff7b54);
  --text: #ffe5ec;
  --accent: #ff9e00;
  --header-bg: rgba(60,20,40,0.75);
  --panel-bg: rgba(255,255,255,0.06);
  --dropdown-bg: rgba(40,15,30,0.95);
}

/* FROST */
[data-theme="frost"] {
  --bg-gradient: linear-gradient(180deg, #e6f7ff, #cceeff, #b3e5ff, #f0fbff);
  --text: #1b2a33;
  --accent: #00aaff;
  --header-bg: rgba(255,255,255,0.75);
  --panel-bg: rgba(0,0,0,0.05);
  --dropdown-bg: rgba(255,255,255,0.95);
}

/* AMETHYST */
[data-theme="amethyst"] {
  --bg-gradient: linear-gradient(180deg, #1a0f2e, #2a1a4a, #3c2a6a, #140a24);
  --text: #f3e8ff;
  --accent: #c77dff;
  --header-bg: rgba(30,15,50,0.75);
  --panel-bg: rgba(255,255,255,0.05);
  --dropdown-bg: rgba(25,10,40,0.95);
}

/* PRISM */
[data-theme="prism"] {
  --bg-gradient: linear-gradient(180deg, #1a1a2e, #16213e, #0f3460, #533483);
  --text: #eaeaff;
  --accent: #ff4d6d;
  --header-bg: rgba(20,20,40,0.75);
  --panel-bg: rgba(255,255,255,0.05);
  --dropdown-bg: rgba(15,15,35,0.95);
}

/* EMBER */
[data-theme="ember"] {
  --bg-gradient: linear-gradient(180deg, #1a0d00, #3d1f00, #662e00, #1f0a00);
  --text: #ffe8d6;
  --accent: #ff6d00;
  --header-bg: rgba(40,15,0,0.75);
  --panel-bg: rgba(255,255,255,0.05);
  --dropdown-bg: rgba(30,10,0,0.95);
}

/* =========================
   GLOBAL BACKGROUND FIX
========================= */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background: var(--bg-gradient);
  background-attachment: fixed;

  will-change: transform;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: var(--text);
  background: none; /* IMPORTANT */
  padding-top: 70px;
  transition: color 0.3s ease;
}

/* =========================
   GLASS HEADER
========================= */

header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
  transition: transform 0.4s ease;
}

header.hidden {
  transform: translateY(-100%);
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

/* =========================
   PAGE INDICATOR
========================= */

.nav-left {
  flex: 1;
  display: flex;
  align-items: center;
}

#page-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}

#page-indicator img {
  width: 24px;
  height: 24px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

#page-indicator span {
  font-weight: bold;
  font-size: 18px;
}

/* =========================
   PAGE HEADER
========================= */

#page-header {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 30px 40px 10px 40px;
}

#page-header-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

#page-header-text {
  display: flex;
  flex-direction: column;
}

#page-header-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

#page-header-desc {
  margin-top: 6px;
  opacity: 0.75;
  max-width: 600px;
  line-height: 1.4;
}

/* =========================
   NAV BUTTONS
========================= */

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-center button {
  background: none;
  border: none;
  color: var(--text, #fff);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding: 6px 12px;
  transition: color 0.3s ease;
}

.nav-center button::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent, #00c6ff);
  transition: width 0.3s ease;
}

.nav-center button:hover {
  color: var(--accent, #00c6ff);
}

.nav-center button:hover::after {
  width: 100%;
}

/* =========================
   RIGHT NAV CONTROLS
========================= */

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

#settings-button,
#github-button,
#toggle-header-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#settings-button img,
#github-button img,
#toggle-header-btn img {
  width: 28px;
  height: 28px;
}

#github-button:hover,
#settings-button:hover {
  transform: scale(1.15);
  opacity: 0.85;
}

/* =========================
   DROPDOWN MENUS
========================= */

#settings-menu,
#games-submenu,
#aspect-submenu {
  display: none;
  position: absolute;
  background: rgba(30,30,30,0.95);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  z-index: 100;
  animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

#settings-menu button,
#games-submenu button,
#aspect-submenu button {
  background: none;
  border: none;
  color: var(--text, #fff);
  padding: 8px 14px;
  cursor: pointer;
  width: 100%;
  text-align: right;
  border-radius: 6px;
  transition: background 0.2s ease;
}

#settings-menu button:hover,
#games-submenu button:hover,
#aspect-submenu button:hover {
  background: rgba(255,255,255,0.1);
}

/* =========================
   GAMES TOP BAR
========================= */

.games-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.category-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.category-filters button {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-filters button:hover {
  background: rgba(255,255,255,0.1);
}

.category-filters button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* SEARCH */

#game-search {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  width: 220px;
  outline: none;
  transition: all 0.2s ease;
}

#game-search:focus {
  border-color: var(--accent);
}

/* =========================
   GAME GRID
========================= */

.game-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 40px 20px;
}

/* =========================
   GAME CARD
========================= */

.game-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  width: 220px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: cardFade 0.6s ease forwards;
  position: relative;
}

.new-badge {
  position: absolute;
  top: 8px;
  left: 8px;

  background: #ff3b3b;
  color: white;

  font-size: 11px;
  font-weight: bold;

  padding: 4px 8px;
  border-radius: 6px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  animation: pulse 1.5s infinite;

  letter-spacing: 0.5px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes cardFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.game-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 200, 255, 0.3);
  border-color: var(--accent, #00c6ff);
}

/* Game icon */

.game-icon {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

.game-name {
  font-size: 18px;
  margin-bottom: 10px;
}

/* similar */
.similar-section {
  padding: 20px 40px 40px;
}

.similar-section h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

/* =========================
   GAME TOP BAR 
========================= */

.game-topbar {
  display: flex;
  align-items: center;
  padding: 0 40px 10px 40px;
}

/* Back Button */
#back-button {
  background: var(--panel-bg);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);

  padding: 8px 16px;
  border-radius: 10px;

  font-weight: 600;
  cursor: pointer;

  backdrop-filter: blur(8px);

  transition: all 0.2s ease;
}

#back-button:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  transform: translateY(-2px);
}

#back-button:active {
  transform: scale(0.96);
}

/* =========================
   PLAY BUTTON
========================= */

.play-btn {
  background: linear-gradient(45deg, #007bff, #00c6ff);
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  width: 100%;
  font-weight: bold;
  color: white;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,123,255,0.4);
  transition: all 0.2s ease;
}

.play-btn:hover {
  transform: scale(1.05);
}

.play-btn:active {
  transform: scale(0.97);
}

/* =========================
   GAME VIEW (IFRAME)
========================= */

.game-container {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.game-container iframe {
  width: 90vw;
  aspect-ratio: 16 / 9;

  max-width: 1400px;
  max-height: 85vh;

  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* =========================
   CHANGELOG PANEL
========================= */

.changelog-page {
  display: flex;
  gap: 20px;
  padding: 30px;
}

/* LEFT SIDE */
.changelog-sidebar {
  width: 220px;
  position: sticky;
  top: 90px;
  height: fit-content;

  background: var(--panel-bg);
  border-radius: 12px;
  padding: 15px;
}

.changelog-block {
  background: var(--panel-bg);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;

  padding: 18px;
  margin-bottom: 20px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);

  transition: all 0.25s ease;
}

.label-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 8px;
  margin-bottom: 6px;
  border: none;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
}

.label-btn:hover {
  background: rgba(255,255,255,0.1);
}

.changelog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.changelog-header div {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.changelog-date {
  opacity: 0.6;
  font-size: 14px;
}

.changelog-note {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--accent);
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.toggle-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);

  width: 32px;
  height: 32px;

  border-radius: 8px;
  cursor: pointer;

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

  font-size: 14px;

  transition: all 0.2s ease;
}

.toggle-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
  transform: scale(1.05);
}

.toggle-btn:active {
  transform: scale(0.95);
}

/* =========================
   CHANGELOG RELEASE BUTTONS
========================= */

#release-list button {
  width: 100%;
  text-align: left;

  padding: 8px 10px;
  margin-bottom: 6px;

  background: rgba(255,255,255,0.05);
  border: none;
  border-radius: 8px;

  color: var(--text);
  cursor: pointer;

  transition: all 0.2s ease;
}

#release-list button:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}

#release-list button.active {
  background: var(--accent);
  color: #fff;
}

/* MAIN */
.changelog-main {
  flex: 1;
}

.changelog-body {
  margin-top: 10px;
  line-height: 1.6;
}

.changelog-body ul {
  margin: 8px 0 16px 20px;
}

.label {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
}

.label.Feature { background: #4dabff; }
.label.Content { background: #20c997; }
.label.Improvement { background: #ffd43b; color: #000; }
.label.Fix { background: #ff6b6b; }

/* =========================
   HEADER COLLAPSE BUTTON
========================= */

#toggle-header-btn {
  position: fixed;
  top: 75px;
  right: 20px;
  z-index: 50;
  transition: transform 0.3s ease;
}

#arrow-icon.rotated {
  transform: rotate(180deg);
}

/* =========================
   CONTENT FADE
========================= */

#content {
  transition: opacity 0.3s ease;
}

.fade-out {
  opacity: 0;
}

/* SETTINGS OVERLAY */
#settings-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

/* SETTINGS PANEL */
#settings-panel {
  background: var(--panel-bg);
  backdrop-filter: blur(12px);
  width: 700px;
  max-width: 95%;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.options-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
}

/* HEADER */
#settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

#settings-header h2 {
  margin: 0;
}

#settings-header button {
  background: none;
  border: none;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}

/* BODY LAYOUT */
#settings-body {
  display: flex;
  min-height: 300px;
}

#settings-categories {
  width: 150px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
}

#settings-categories button {
  background: none;
  border: none;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s ease;
}

#settings-categories button.active,
#settings-categories button:hover {
  background: rgba(255,255,255,0.1);
}

#settings-options {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* OPTION BUTTONS */
.setting-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.setting-option button {
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  background: none;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.setting-option button.selected {
  background: var(--accent);
  color: #fff;
}

/* home stuffs */
.home-hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.home-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.home-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.home-buttons button {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: white;
  cursor: pointer;
}

/* NAV CARDS */
.home-nav-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  flex-wrap: wrap;
}

/* HOME INFO GRID */
.home-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 20px 40px 60px;
}

.info-card {
  background: var(--panel-bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;

  backdrop-filter: blur(10px);

  transition: all 0.25s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.info-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.info-card p {
  opacity: 0.8;
  line-height: 1.6;
}

.nav-card {
  background: var(--panel-bg);
  padding: 20px;
  border-radius: 14px;
  width: 160px;
  text-align: center;
  cursor: pointer;
  transition: 0.25s;
}

.nav-card:hover {
  transform: translateY(-6px);
}

.home-section {
  padding: 20px 40px;
}

/* LINK DROPDOWN */
.link-dropdown {
  position: relative;
}

#link-dropdown-btn {
  background: var(--panel-bg);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 8px;

  font-weight: 600;
}

#link-dropdown-btn:hover {
  background: rgba(255,255,255,0.08);
}

#link-dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;

  background: var(--dropdown-bg);
  backdrop-filter: blur(10px);

  border-radius: 10px;
  padding: 6px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  min-width: 180px;
  z-index: 1000;
}

#link-dropdown-menu button {
  width: 100%;
  text-align: left;

  background: none;
  border: none;
  color: var(--text);

  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

#link-dropdown-menu button:hover {
  background: rgba(255,255,255,0.1);
}

/* contact stuffs */

.contact-page {
  display: flex;
  gap: 20px;
  padding: 30px;
}

.contact-sidebar {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background: var(--panel-bg);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}

.contact-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(0,200,255,0.3);
}

.contact-main {
  flex: 1;
  background: var(--panel-bg);
  border-radius: 12px;
  padding: 20px;
}

#contact-placeholder {
  text-align: center;
  opacity: 0.6;
  margin-top: 50px;
}

/* GAME ACTION BUTTONS */
.game-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.game-actions button {
  background: var(--panel-bg);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);

  padding: 10px 18px;
  border-radius: 10px;

  font-weight: 600;
  cursor: pointer;

  backdrop-filter: blur(8px);

  transition: all 0.2s ease;
}

.game-actions button:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.game-actions button:active {
  transform: scale(0.96);
}
