/* ============================================================
   oking.click - Theme stylesheet
   Palette: #CD853F (gold) | #00FF7F (mint) | #7FFF00 (lime)
            #006400 (deep green) | #2C3E50 (dark slate)
   All custom classes use the sc75- prefix.
   ============================================================ */

:root {
  --sc75-bg: #0f1a14;
  --sc75-bg-2: #142019;
  --sc75-surface: #1a2a22;
  --sc75-surface-2: #21342a;
  --sc75-primary: #006400;
  --sc75-accent: #CD853F;
  --sc75-mint: #00FF7F;
  --sc75-lime: #7FFF00;
  --sc75-dark: #2C3E50;
  --sc75-text: #f3f8f4;
  --sc75-text-dim: #b8c7bd;
  --sc75-border: rgba(127, 255, 0, 0.18);
  --sc75-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  --sc75-radius: 14px;
}

* { box-sizing: border-box; }

html { font-size: 62.5%; }

body {
  margin: 0;
  font-family: "Be Vietnam Pro", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #16321f 0%, var(--sc75-bg) 55%, #0a120d 100%);
  color: var(--sc75-text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--sc75-mint); text-decoration: none; }

.sc75-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 14px;
}

/* ============ HEADER ============ */
.sc75-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(15, 26, 20, 0.96), rgba(15, 26, 20, 0.88));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sc75-border);
}
.sc75-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  max-width: 430px;
  margin: 0 auto;
}
.sc75-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.5px;
  color: var(--sc75-text);
}
.sc75-logo .sc75-logo-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sc75-mint), var(--sc75-lime));
  display: flex; align-items: center; justify-content: center;
  color: var(--sc75-primary);
  font-size: 1.8rem;
  box-shadow: 0 0 14px rgba(0, 255, 127, 0.45);
}
.sc75-logo span.sc75-logo-text em {
  font-style: normal;
  color: var(--sc75-accent);
}
.sc75-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc75-btn {
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 1.3rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sc75-btn:active { transform: scale(0.96); }
.sc75-btn-primary {
  background: linear-gradient(135deg, var(--sc75-mint), var(--sc75-lime));
  color: var(--sc75-primary);
  box-shadow: 0 4px 14px rgba(0, 255, 127, 0.4);
}
.sc75-btn-ghost {
  background: transparent;
  color: var(--sc75-text);
  border: 1px solid var(--sc75-border);
}
.sc75-icon-btn {
  background: transparent;
  border: 0;
  color: var(--sc75-text);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 6px;
}

/* ============ HERO ============ */
.sc75-hero {
  padding: 18px 0 8px;
}
.sc75-hero-card {
  background: linear-gradient(135deg, rgba(0, 100, 0, 0.55), rgba(44, 62, 80, 0.55));
  border: 1px solid var(--sc75-border);
  border-radius: var(--sc75-radius);
  padding: 16px;
  box-shadow: var(--sc75-shadow);
  position: relative;
  overflow: hidden;
}
.sc75-hero-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(127, 255, 0, 0.15), transparent 40%);
  pointer-events: none;
}
.sc75-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0, 255, 127, 0.12);
  color: var(--sc75-mint);
  border: 1px solid var(--sc75-border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 1.1rem;
  font-weight: 600;
}
.sc75-hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 10px 0 6px;
}
.sc75-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--sc75-accent), var(--sc75-lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sc75-hero-desc {
  color: var(--sc75-text-dim);
  font-size: 1.35rem;
  margin: 0 0 12px;
}
.sc75-hero-cta {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.sc75-hero-stats {
  display: flex; gap: 14px; margin-top: 14px;
  border-top: 1px dashed var(--sc75-border);
  padding-top: 12px;
}
.sc75-hero-stats div {
  flex: 1; text-align: center;
}
.sc75-hero-stats strong {
  display: block;
  font-size: 1.8rem;
  color: var(--sc75-mint);
  font-weight: 800;
}
.sc75-hero-stats small { font-size: 1.1rem; color: var(--sc75-text-dim); }

/* ============ SLIDER ============ */
.sc75-slider-wrap {
  margin-top: 14px;
}
#sc75-slider {
  position: relative;
  border-radius: var(--sc75-radius);
  overflow: hidden;
  box-shadow: var(--sc75-shadow);
}
.sc75-slide {
  display: none;
  position: relative;
}
.sc75-slide.sc75-active { display: block; animation: sc75fade 0.6s ease; }
@keyframes sc75fade { from { opacity: 0; } to { opacity: 1; } }
.sc75-slide img {
  width: 100%; height: 180px; object-fit: cover;
}
.sc75-slide-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  color: var(--sc75-text);
}
.sc75-slide-cap h3 { margin: 0 0 4px; font-size: 1.6rem; color: var(--sc75-lime); }
.sc75-slide-cap p { margin: 0; font-size: 1.2rem; color: var(--sc75-text-dim); }
.sc75-dots {
  display: flex; justify-content: center; gap: 6px; padding: 8px 0;
}
.sc75-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer;
}
.sc75-dot.sc75-active { background: var(--sc75-mint); width: 22px; border-radius: 6px; }

/* ============ SECTION ============ */
.sc75-section {
  margin: 22px 0;
}
.sc75-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.sc75-section-title {
  font-size: 1.9rem; font-weight: 800;
  display: flex; align-items: center; gap: 8px;
}
.sc75-section-title i { color: var(--sc75-accent); }
.sc75-section-link { font-size: 1.2rem; color: var(--sc75-mint); }

/* ============ CATEGORY TABS ============ */
.sc75-cat-tabs {
  display: flex; gap: 6px; overflow-x: auto;
  padding-bottom: 8px; margin-bottom: 10px;
  scrollbar-width: none;
}
.sc75-cat-tabs::-webkit-scrollbar { display: none; }
.sc75-cat-tab {
  flex: 0 0 auto;
  background: var(--sc75-surface);
  border: 1px solid var(--sc75-border);
  color: var(--sc75-text-dim);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  transition: all 0.18s ease;
}
.sc75-cat-tab.sc75-active {
  background: linear-gradient(135deg, var(--sc75-mint), var(--sc75-lime));
  color: var(--sc75-primary);
  border-color: transparent;
}

/* ============ GAME GRID ============ */
.sc75-cat-panel { display: none; }
.sc75-cat-panel.sc75-active { display: block; animation: sc75fade 0.4s ease; }
.sc75-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sc75-game-card {
  background: var(--sc75-surface);
  border: 1px solid var(--sc75-border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.18s ease;
}
.sc75-game-card:active { transform: scale(0.97); }
.sc75-game-card img {
  width: 100%; height: 92px; object-fit: cover;
}
.sc75-game-card .sc75-game-name {
  font-size: 1.1rem;
  padding: 6px 6px 8px;
  text-align: center;
  color: var(--sc75-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sc75-game-card .sc75-game-tag {
  position: absolute; top: 5px; left: 5px;
  background: rgba(205, 133, 63, 0.92);
  color: #1a1a1a;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
}
.sc75-game-card .sc75-game-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.45);
  opacity: 0; transition: opacity 0.2s ease;
  color: var(--sc75-mint); font-size: 2.2rem;
}
.sc75-game-card:hover .sc75-game-play { opacity: 1; }

/* ============ FEATURED ============ */
.sc75-featured {
  display: grid; grid-template-columns: 1fr; gap: 10px;
}
.sc75-feature-card {
  display: flex; gap: 12px;
  background: var(--sc75-surface);
  border: 1px solid var(--sc75-border);
  border-radius: 12px;
  padding: 12px;
  align-items: center;
}
.sc75-feature-card img {
  width: 84px; height: 84px; border-radius: 10px; object-fit: cover;
  flex: 0 0 auto;
}
.sc75-feature-card h4 {
  margin: 0 0 4px; font-size: 1.5rem; color: var(--sc75-text);
}
.sc75-feature-card p {
  margin: 0 0 8px; font-size: 1.2rem; color: var(--75-text-dim, var(--sc75-text-dim));
}
.sc75-feature-card a.sc75-feature-link {
  font-size: 1.2rem; font-weight: 700; color: var(--sc75-accent);
}

/* ============ PROMO STRIP ============ */
.sc75-promo-strip {
  background: linear-gradient(135deg, var(--sc75-primary), var(--sc75-dark));
  border: 1px solid var(--sc75-border);
  border-radius: var(--sc75-radius);
  padding: 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sc75-shadow);
  margin: 20px 0;
}
.sc75-promo-strip .sc75-promo-icon {
  font-size: 2.6rem; color: var(--sc75-lime);
}
.sc75-promo-strip h3 {
  margin: 0; font-size: 1.5rem; color: var(--sc75-text);
}
.sc75-promo-strip p {
  margin: 2px 0 0; font-size: 1.2rem; color: var(--sc75-text-dim);
}
.sc75-promo-strip .sc75-btn { margin-left: auto; }

/* ============ SEO TEXT ============ */
.sc75-seo-text {
  background: var(--sc75-surface);
  border: 1px solid var(--sc75-border);
  border-radius: var(--sc75-radius);
  padding: 16px;
  margin: 20px 0;
  font-size: 1.35rem;
  color: var(--sc75-text-dim);
}
.sc75-seo-text h2 {
  color: var(--sc75-text); font-size: 1.9rem; margin: 14px 0 8px;
}
.sc75-seo-text h2:first-child { margin-top: 0; }
.sc75-seo-text h3 {
  color: var(--sc75-mint); font-size: 1.55rem; margin: 12px 0 6px;
}
.sc75-seo-text p { margin: 0 0 10px; }
.sc75-seo-text ul { padding-left: 18px; margin: 0 0 10px; }
.sc75-seo-text li { margin-bottom: 4px; }
.sc75-seo-text a { color: var(--sc75-accent); font-weight: 600; text-decoration: underline; }

/* ============ FAQ ============ */
.sc75-faq-item {
  background: var(--sc75-surface);
  border: 1px solid var(--sc75-border);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.sc75-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--sc75-text);
  padding: 12px 14px;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.sc75-faq-q i { color: var(--sc75-mint); transition: transform 0.2s; }
.sc75-faq-item.sc75-open .sc75-faq-q i { transform: rotate(45deg); }
.sc75-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 14px;
  color: var(--sc75-text-dim);
  font-size: 1.25rem;
}
.sc75-faq-item.sc75-open .sc75-faq-a {
  max-height: 320px;
  padding: 0 14px 12px;
}

/* ============ FOOTER ============ */
.sc75-footer {
  background: var(--sc75-bg-2);
  border-top: 1px solid var(--sc75-border);
  padding: 20px 14px 24px;
  margin-top: 24px;
  font-size: 1.25rem;
  color: var(--sc75-text-dim);
}
.sc75-footer-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.sc75-footer h4 {
  color: var(--sc75-mint); font-size: 1.35rem; margin: 0 0 8px;
}
.sc75-footer ul { list-style: none; padding: 0; margin: 0; }
.sc75-footer li { margin-bottom: 5px; }
.sc75-footer a { color: var(--sc75-text-dim); }
.sc75-footer a:hover { color: var(--sc75-mint); }
.sc75-footer-bottom {
  text-align: center; margin-top: 14px; padding-top: 12px;
  border-top: 1px dashed var(--sc75-border);
  font-size: 1.1rem;
}

/* ============ BOTTOM NAV ============ */
.sc75-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(20, 32, 25, 0.98), rgba(10, 18, 13, 0.99));
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--sc75-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  height: 62px;
  padding: 4px 0;
}
.sc75-bottom-nav button, .sc75-bottom-nav a {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--sc75-text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  min-width: 60px;
  min-height: 54px;
  transition: color 0.18s ease, transform 0.18s ease;
}
.sc75-bottom-nav button i, .sc75-bottom-nav a i { font-size: 2.1rem; }
.sc75-bottom-nav button.sc75-nav-active { color: var(--sc75-mint); }
.sc75-bottom-nav .sc75-nav-promo {
  color: var(--sc75-accent);
}
.sc75-bottom-nav button:active, .sc75-bottom-nav a:active { transform: translateY(-2px); }

/* Center FAB-style promo */
.sc75-bottom-nav .sc75-nav-center {
  position: relative;
  top: -14px;
}
.sc75-bottom-nav .sc75-nav-center span {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sc75-mint), var(--sc75-lime));
  color: var(--sc75-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 14px rgba(0, 255, 127, 0.55);
  margin-bottom: 2px;
}
.sc75-bottom-nav .sc75-nav-center span i { font-size: 2.2rem; color: var(--sc75-primary); }

/* ============ MOBILE MENU ============ */
#sc75-mobile-menu {
  position: fixed;
  top: 0; right: -86%;
  width: 86%; height: 100vh;
  background: var(--sc75-bg-2);
  z-index: 9999;
  padding: 18px;
  overflow-y: auto;
  transition: right 0.3s ease;
  border-left: 1px solid var(--sc75-border);
}
#sc75-mobile-menu.sc75-open { right: 0; }
#sc75-menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
#sc75-menu-backdrop.sc75-show { opacity: 1; pointer-events: auto; }
.sc75-menu-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.sc75-menu-head h3 { margin: 0; font-size: 1.7rem; color: var(--sc75-mint); }
.sc75-menu-list { list-style: none; padding: 0; margin: 0; }
.sc75-menu-list li {
  border-bottom: 1px solid var(--sc75-border);
}
.sc75-menu-list a {
  display: block;
  padding: 12px 4px;
  color: var(--sc75-text);
  font-size: 1.4rem;
  display: flex; align-items: center; gap: 10px;
}
.sc75-menu-list a i { color: var(--sc75-accent); }

/* ============ MODAL ============ */
#sc75-search-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9990;
  display: none;
  align-items: center; justify-content: center;
  padding: 16px;
}
#sc75-search-modal.sc75-show { display: flex; }
.sc75-modal-box {
  background: var(--sc75-surface);
  border: 1px solid var(--sc75-border);
  border-radius: var(--sc75-radius);
  padding: 16px;
  width: 100%; max-width: 360px;
}
.sc75-modal-box input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--sc75-border);
  background: var(--sc75-bg);
  color: var(--sc75-text);
  font-size: 1.3rem;
}

/* ============ TO TOP ============ */
#sc75-to-top {
  position: fixed;
  bottom: 76px; right: 14px;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--sc75-accent), var(--sc75-lime));
  color: var(--sc75-primary);
  border: 0; border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 900;
  box-shadow: var(--sc75-shadow);
}
#sc75-to-top.sc75-show { opacity: 1; pointer-events: auto; }

.sc75-no-scroll { overflow: hidden; }

/* ============ HELP PAGE EXTRAS ============ */
.sc75-cat-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.6rem; font-weight: 700;
  color: var(--sc75-lime);
  margin: 16px 0 10px;
}
.sc75-cat-title i { color: var(--sc75-accent); font-size: 1.5rem; }
.sc75-slide { cursor: pointer; }
.sc75-steps { counter-reset: sc75step; list-style: none; padding: 0; margin: 0 0 10px; }
.sc75-steps li {
  counter-increment: sc75step;
  background: var(--sc75-bg-2);
  border: 1px solid var(--sc75-border);
  border-radius: 10px;
  padding: 10px 12px 10px 46px;
  margin-bottom: 8px;
  position: relative;
  font-size: 1.3rem;
}
.sc75-steps li::before {
  content: counter(sc75step);
  position: absolute; left: 10px; top: 12px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sc75-mint), var(--sc75-lime));
  color: var(--sc75-primary);
  font-weight: 800; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.sc75-note {
  background: rgba(205, 133, 63, 0.12);
  border: 1px solid rgba(205, 133, 63, 0.45);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1.25rem;
  color: var(--sc75-text);
  margin: 10px 0;
}
.sc75-note i { color: var(--sc75-accent); margin-right: 6px; }
.sc75-text-link { color: var(--sc75-accent); font-weight: 800; text-decoration: underline; }
.sc75-text-link-mint { color: var(--sc75-mint); font-weight: 800; text-decoration: underline; }
.sc75-inline-note {
  background: rgba(0, 255, 127, 0.08);
  border: 1px solid var(--sc75-border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1.25rem;
  margin: 10px 0;
}

/* ============ RESPONSIVE ============ */
@media (min-width: 769px) {
  .sc75-bottom-nav { display: none; }
  #sc75-to-top { bottom: 24px; }
}
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
  .sc75-game-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 360px) {
  .sc75-game-grid { grid-template-columns: repeat(2, 1fr); }
  .sc75-hero-title { font-size: 2.2rem; }
}
