/*
 * EarnWay Games — Dark Theme Override
 * Location: templates/crazygames-like/css/earnway-override.css
 * Dark theme only. Loaded after all.css.
 */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Nunito:wght@400;600;700;800;900&display=swap');

/* ── Page ─────────────────────────────────── */
html, body {
  background: #0f0a14 !important;
  color: #f5eeff !important;
  font-family: 'Nunito', sans-serif !important;
}

/* ── Header — swap colors, no extra border ─── */
#header {
  background: #160d1e !important;
  border-bottom-color: #2a1535 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.35) !important;
}
#header .relative   { background: transparent !important; border: none !important; box-shadow: none !important; }
.bg-\[\#1F1F30\]    { background-color: transparent !important; }

/* ── Sidebar ──────────────────────────────── */
#sidebar-menu { background-color: #0f0a14 !important; border-right-color: #2a1535 !important; }

/* ── Search ───────────────────────────────── */
.bg-\[\#373952\]               { background-color: #261630 !important; }
input[name="search_parameter"] { color: #f5eeff !important; background: transparent !important; }
input[name="search_parameter"]::placeholder { color: rgba(245,238,255,.45) !important; }
#search-results-desktop,
#search-results-tablet,
#search-results { background-color: #160d1e !important; border: 1px solid #2a1535 !important; }

/* ── Active accent — violet → EarnWay red ─── */
.border-violet-500 { border-color: #e22861 !important; }
.text-violet-400   { color: #e22861 !important; }
.bg-violet-500     { background-color: #e22861 !important; }

/* ── Scrollbar ────────────────────────────── */
* { scrollbar-color: #e22861 #0f0a14; scrollbar-width: thin; }
::-webkit-scrollbar       { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: #0f0a14; }
::-webkit-scrollbar-thumb { background: #e22861; border-radius: 99px; }

/* ── EarnWay Logo ─────────────────────────── */
.ew-logo { display: flex; align-items: center; gap: 9px; text-decoration: none !important; }
.ew-logo-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, #e22861, #b81e4e);
  box-shadow: 0 3px 14px rgba(226,40,97,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 12px; color: #fff !important;
}
.ew-logo-name { display: flex; flex-direction: column; line-height: 1.2; }
.ew-logo-title { font-family: 'Chakra Petch', sans-serif; font-size: 15px; font-weight: 700; color: #f5eeff; white-space: nowrap; }
.ew-logo-sub   { font-size: 9.5px; font-weight: 800; color: #e22861; text-transform: uppercase; letter-spacing: .13em; }

/* ── Auth buttons ─────────────────────────── */
.ew-auth { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }

.ew-btn-login {
  padding: 6px 15px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  font-family: 'Nunito', sans-serif; text-decoration: none; transition: all .2s;
  white-space: nowrap; display: inline-flex; align-items: center;
  background: rgba(245,238,255,.07); border: 1px solid rgba(245,238,255,.18);
  color: rgba(245,238,255,.85);
}
.ew-btn-login:hover { background: rgba(245,238,255,.14); color: #f5eeff; text-decoration: none; }

.ew-btn-signup {
  padding: 6px 15px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  font-family: 'Nunito', sans-serif; text-decoration: none; transition: all .2s;
  white-space: nowrap; display: inline-flex; align-items: center;
  background: linear-gradient(135deg, #e22861, #b81e4e); border: none;
  color: #fff !important; box-shadow: 0 3px 14px rgba(226,40,97,.35);
}
.ew-btn-signup:hover { box-shadow: 0 5px 20px rgba(226,40,97,.5); transform: translateY(-1px); color: #fff !important; text-decoration: none; }

.ew-avatar {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #e22861, #b81e4e);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 11px;
  color: #fff !important; box-shadow: 0 2px 10px rgba(226,40,97,.35); text-decoration: none !important;
}
.ew-avatar:hover { box-shadow: 0 4px 16px rgba(226,40,97,.5); }

/* ── Responsive ───────────────────────────── */
@media (max-width: 900px) {
  .ew-btn-login, .ew-btn-signup { padding: 5px 11px; font-size: 11.5px; }
  .ew-logo-title { font-size: 13px !important; }
}
@media (max-width: 540px) {
  .ew-btn-login { display: none; }
  .ew-logo-name { display: none; }
  .ew-btn-signup { padding: 5px 10px; font-size: 11px; }
}