/* ============================================================
   good11.homes - screen stylesheet
   Prefix: g015-
   Palette: #141414 bg | #FFC0CB pink | #FFFFFF text | #C9C9FF lilac
   Notes (English): Mobile-first 320-430px canvas. Top compact
   brand bar, expandable nav, outlined functional bottom bar,
   borderless symbols with text emphasis, color-toggle active
   cue, light press feedback.
   ============================================================ */

:root {
  --g015-bg: #141414;
  --g015-bg-soft: #1d1d22;
  --g015-bg-card: #20202a;
  --g015-pink: #FFC0CB;
  --g015-pink-deep: #e89aa6;
  --g015-lilac: #C9C9FF;
  --g015-lilac-deep: #9b9be0;
  --g015-white: #FFFFFF;
  --g015-mute: #b8b8c8;
  --g015-line: rgba(255, 255, 255, 0.10);
  --g015-line-strong: rgba(255, 255, 255, 0.22);
  --g015-radius: 14px;
  --g015-radius-sm: 10px;
  --g015-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  --g015-header-h: 56px;
  --g015-bottom-h: 62px;
  --g015-touch: 44px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--g015-bg);
  color: var(--g015-white);
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--g015-lilac);
  text-decoration: none;
}

a:hover, a:focus {
  color: var(--g015-pink);
}

:focus-visible {
  outline: 2px solid var(--g015-pink);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Centered phone canvas on wide screens */
.g015-shell {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, #141414 0%, #161620 60%, #141414 100%);
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.g015-page {
  padding-top: var(--g015-header-h);
  padding-bottom: calc(var(--g015-bottom-h) + 22px);
}

/* ---------- Header / Compact brand bar ---------- */
.g015-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--g015-header-h);
  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--g015-line);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  z-index: 100;
}

.g015-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.g015-brand img.g015-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid var(--g015-line-strong);
  flex-shrink: 0;
}

.g015-brand-name {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.4px;
  color: var(--g015-white);
  line-height: 1.1;
}

.g015-brand-name span {
  color: var(--g015-pink);
}

.g015-brand-tag {
  font-size: 10px;
  color: var(--g015-mute);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.g015-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.g015-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  min-height: var(--g015-touch);
  cursor: pointer;
  transition: transform 0.12s ease, background 0.2s ease, color 0.2s ease;
}

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

.g015-btn-login {
  background: transparent;
  color: var(--g015-white);
  border: 1px solid var(--g015-line-strong);
}

.g015-btn-register {
  background: linear-gradient(135deg, var(--g015-pink) 0%, var(--g015-pink-deep) 100%);
  color: #2a1418;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(255, 192, 203, 0.35);
}

.g015-menu-btn {
  width: 38px;
  height: 38px;
  min-height: var(--g015-touch);
  background: transparent;
  border: 1px solid var(--g015-line);
  border-radius: 10px;
  color: var(--g015-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.12s ease, background 0.2s ease;
}

.g015-menu-btn:active {
  transform: scale(0.92);
  background: rgba(255, 192, 203, 0.12);
}

.g015-menu-btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- Expandable nav menu ---------- */
.g015-nav-menu {
  position: fixed;
  top: var(--g015-header-h);
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: var(--g015-bg-soft);
  border-bottom: 1px solid var(--g015-line);
  padding: 10px 12px 14px;
  transform: translateY(-130%);
  transition: transform 0.28s ease;
  z-index: 99;
  max-height: calc(100vh - var(--g015-header-h));
  overflow-y: auto;
}

.g015-nav-menu.g015-nav-open {
  transform: translateY(0);
  box-shadow: var(--g015-shadow);
}

.g015-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.g015-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--g015-radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--g015-white);
  font-size: 13.5px;
  font-weight: 500;
  min-height: var(--g015-touch);
  transition: background 0.2s ease, color 0.2s ease;
}

.g015-nav-item:active {
  background: rgba(255, 192, 203, 0.18);
}

.g015-nav-item.g015-active {
  background: linear-gradient(135deg, rgba(255, 192, 203, 0.18), rgba(201, 201, 255, 0.16));
  color: var(--g015-pink);
}

.g015-nav-item .g015-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g015-lilac);
  flex-shrink: 0;
}

.g015-nav-item.g015-active .g015-nav-dot {
  background: var(--g015-pink);
}

.g015-nav-promo {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.g015-nav-promo .g015-btn {
  flex: 1;
}

/* ---------- Hero / Carousel ---------- */
.g015-hero {
  position: relative;
  margin: 12px 0 4px;
  padding: 0 12px;
}

.g015-slider {
  position: relative;
  border-radius: var(--g015-radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--g015-shadow);
}

.g015-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.g015-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g015-slide.g015-slide-active {
  opacity: 1;
}

.g015-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.0) 30%, rgba(20, 20, 20, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 14px 16px;
}

.g015-slide-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--g015-white);
  margin: 0 0 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.g015-slide-text {
  font-size: 12.5px;
  color: var(--g015-mute);
  margin: 0 0 10px;
}

.g015-slide-cta {
  align-self: flex-start;
  background: var(--g015-pink);
  color: #2a1418;
  font-weight: 700;
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: 999px;
}

.g015-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.g015-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.g015-dot.g015-dot-active {
  background: var(--g015-pink);
  transform: scale(1.25);
}

/* ---------- Quick category chips ---------- */
.g015-chips {
  display: flex;
  gap: 8px;
  padding: 12px 12px 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.g015-chips::-webkit-scrollbar {
  display: none;
}

.g015-chip {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--g015-line);
  color: var(--g015-white);
  font-size: 12.5px;
  font-weight: 600;
  min-height: var(--g015-touch);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.g015-chip:active {
  background: rgba(255, 192, 203, 0.18);
  color: var(--g015-pink);
}

.g015-chip .g015-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g015-lilac);
}

/* ---------- Section / Headings ---------- */
.g015-section {
  padding: 18px 12px 6px;
}

.g015-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.g015-section-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--g015-white);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.g015-section-title::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--g015-pink), var(--g015-lilac));
}

.g015-section-more {
  font-size: 12px;
  color: var(--g015-pink);
  font-weight: 600;
}

.g015-section-sub {
  font-size: 12.5px;
  color: var(--g015-mute);
  margin: 0 0 12px;
}

/* ---------- Game grid ---------- */
.g015-games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (min-width: 360px) {
  .g015-games {
    gap: 10px;
  }
}

.g015-game {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  cursor: pointer;
  transition: transform 0.12s ease;
  background: transparent;
  border: none;
  text-align: left;
  padding: 0;
  font-family: inherit;
  color: inherit;
}

.g015-game:active {
  transform: scale(0.94);
}

.g015-game-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  background: var(--g015-bg-card);
  border: 1px solid var(--g015-line);
}

.g015-game-name {
  font-size: 11px;
  color: var(--g015-mute);
  text-align: center;
  margin-top: 5px;
  line-height: 1.25;
  height: 28px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 500;
}

.g015-tap-flash .g015-game-img {
  border-color: var(--g015-pink);
  box-shadow: 0 0 0 2px rgba(255, 192, 203, 0.35);
}

/* ---------- Content / SEO blocks ---------- */
.g015-card {
  background: var(--g015-bg-card);
  border: 1px solid var(--g015-line);
  border-radius: var(--g015-radius);
  padding: 14px;
  margin: 10px 12px;
}

.g015-card h2 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--g015-white);
}

.g015-card p {
  font-size: 13.5px;
  color: var(--g015-mute);
  margin: 0 0 10px;
}

.g015-card p:last-child {
  margin-bottom: 0;
}

.g015-card a {
  color: var(--g015-pink);
  font-weight: 600;
}

.g015-cta-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 6px 12px 4px;
}

.g015-cta-tile {
  background: linear-gradient(135deg, rgba(255, 192, 203, 0.10), rgba(201, 201, 255, 0.10));
  border: 1px solid var(--g015-line);
  border-radius: var(--g015-radius-sm);
  padding: 12px;
  min-height: var(--g015-touch);
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.2s ease;
}

.g015-cta-tile:active {
  transform: scale(0.97);
  border-color: var(--g015-pink);
}

.g015-cta-tile strong {
  color: var(--g015-white);
  font-size: 14px;
  font-weight: 700;
}

.g015-cta-tile span {
  color: var(--g015-mute);
  font-size: 11.5px;
  margin-top: 2px;
}

/* ---------- Highlights modules ---------- */
.g015-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 4px 12px;
}

.g015-hl {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--g015-line);
  border-radius: var(--g015-radius-sm);
  padding: 12px;
}

.g015-hl .g015-hl-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--g015-pink), var(--g015-lilac));
  color: #14141c;
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.g015-hl h3 {
  font-size: 13.5px;
  color: var(--g015-white);
  margin: 0 0 4px;
}

.g015-hl p {
  font-size: 12px;
  color: var(--g015-mute);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Steps / list ---------- */
.g015-steps {
  padding: 0 12px;
  list-style: none;
  margin: 0;
  counter-reset: step;
}

.g015-steps li {
  position: relative;
  padding: 10px 12px 10px 38px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--g015-line);
  border-radius: var(--g015-radius-sm);
  margin-bottom: 8px;
  counter-increment: step;
  font-size: 13px;
  color: var(--g015-mute);
}

.g015-steps li::before {
  content: counter(step);
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--g015-pink);
  color: #2a1418;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.g015-steps li strong {
  color: var(--g015-white);
  display: block;
  margin-bottom: 2px;
}

/* ---------- Extended footer ---------- */
.g015-extended {
  margin: 16px 12px 6px;
  padding: 16px;
  border-radius: var(--g015-radius);
  background: linear-gradient(135deg, rgba(255, 192, 203, 0.06), rgba(201, 201, 255, 0.06));
  border: 1px solid var(--g015-line);
}

.g015-extended h2 {
  font-size: 16px;
  color: var(--g015-white);
  margin: 0 0 8px;
}

.g015-extended p {
  font-size: 13px;
  color: var(--g015-mute);
  margin: 0 0 12px;
}

.g015-promo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 10px 0 14px;
}

.g015-promo-tile {
  background: rgba(20, 20, 28, 0.7);
  border: 1px solid var(--g015-line-strong);
  border-radius: var(--g015-radius-sm);
  padding: 10px;
  font-size: 12px;
  color: var(--g015-white);
  text-align: center;
  cursor: pointer;
  min-height: var(--g015-touch);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease, border-color 0.2s ease;
  font-weight: 600;
}

.g015-promo-tile:active {
  transform: scale(0.96);
  border-color: var(--g015-pink);
}

.g015-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
  margin: 8px 0 12px;
}

.g015-link-grid a {
  font-size: 12.5px;
  color: var(--g015-lilac);
  padding: 4px 0;
  border-bottom: 1px dashed var(--g015-line);
}

.g015-disclaimer {
  font-size: 11.5px;
  color: var(--g015-mute);
  border-top: 1px solid var(--g015-line);
  padding-top: 10px;
  margin-top: 6px;
  line-height: 1.55;
}

/* ---------- Footer (copyright) ---------- */
.g015-footer {
  text-align: center;
  padding: 14px 16px 18px;
  font-size: 11.5px;
  color: var(--g015-mute);
  border-top: 1px solid var(--g015-line);
  margin: 6px 12px 0;
}

/* ---------- Bottom navigation (outlined functional bar) ---------- */
.g015-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--g015-bottom-h);
  background: rgba(20, 20, 20, 0.98);
  border-top: 1px solid var(--g015-line-strong);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.g015-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--g015-mute);
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  border: none;
  font-family: inherit;
  cursor: pointer;
  padding: 6px 2px;
  transition: color 0.2s ease, transform 0.12s ease;
  position: relative;
}

.g015-bottom-item:active {
  transform: scale(0.92);
}

.g015-bottom-item svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.g015-bottom-item.g015-active {
  color: var(--g015-pink);
}

.g015-bottom-item.g015-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: var(--g015-pink);
}

.g015-bottom-item.g015-promo {
  color: var(--g015-lilac);
}

.g015-bottom-item.g015-promo svg {
  stroke: var(--g015-lilac);
}

/* ---------- Back to top ---------- */
.g015-to-top {
  position: fixed;
  right: 14px;
  bottom: calc(var(--g015-bottom-h) + 14px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--g015-pink);
  color: #2a1418;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 90;
  box-shadow: var(--g015-shadow);
}

.g015-to-top.g015-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.g015-to-top svg {
  width: 18px;
  height: 18px;
  stroke: #2a1418;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Promo CTA banner ---------- */
.g015-banner {
  margin: 12px;
  padding: 14px;
  border-radius: var(--g015-radius);
  background: linear-gradient(135deg, #2a1820 0%, #1a1a26 100%);
  border: 1px solid var(--g015-pink-deep);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.12s ease;
}

.g015-banner:active {
  transform: scale(0.98);
}

.g015-banner-text {
  flex: 1;
}

.g015-banner-text strong {
  color: var(--g015-pink);
  font-size: 15px;
  display: block;
}

.g015-banner-text span {
  color: var(--g015-mute);
  font-size: 12px;
}

.g015-banner-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--g015-pink);
  color: #2a1418;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

/* ---------- Utility ---------- */
.g015-hidden {
  display: none !important;
}

.g015-clearfix::after {
  content: "";
  display: table;
  clear: both;
}
