/* ==========================================================================
   tk777 Casino — Global Stylesheet
   A production-ready, SEO-friendly, responsive stylesheet.
   ========================================================================== */

:root {
  --color-bg: #0f3308;
  --color-bg-alt: #0f3308;
  --color-panel: #2d6620;
  --color-panel-2: #2d6620;
  --color-primary: #e0f0d0;
  --color-primary-hover: #e0f0d0;
  --color-secondary: #a8d090;
  --color-secondary-hover: #e0f0d0;
  --color-accent: #a8d090;
  --color-text: #f5f9f0;
  --color-text-muted: #e0f0d0;
  --color-border: rgba(245,249,240,0.08);
  --color-success: #5a9940;
  --color-warning: #e0f0d0;
  --color-danger: #e0f0d0;

  --gradient-hero: linear-gradient(135deg, #e0f0d0 0%, #5a9940 50%, #a8d090 100%);
  --gradient-gold: linear-gradient(135deg, #a8d090 0%, #a8d090 100%);
  --gradient-card: linear-gradient(145deg, rgba(224,240,208,0.12) 0%, rgba(168,208,144,0.12) 100%);

  --shadow-sm: 0 2px 8px rgba(15,51,8,0.25);
  --shadow-md: 0 8px 24px rgba(15,51,8,0.35);
  --shadow-lg: 0 20px 60px rgba(15,51,8,0.5);
  --shadow-glow: 0 0 40px rgba(224,240,208,0.45);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1280px;
  --font-sans: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-display: "Montserrat", "Inter", sans-serif;

  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  background-image: radial-gradient(
      1200px 600px at 80% -10%,
      rgba(224,240,208,0.25),
      transparent 60%
    ),
    radial-gradient(900px 500px at -10% 10%, rgba(168,208,144,0.25), transparent 60%),
    radial-gradient(800px 600px at 50% 110%, rgba(90,153,64,0.2), transparent 60%);
  background-attachment: fixed;
}

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

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-secondary-hover);
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
}

p {
  color: var(--color-text-muted);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: clamp(48px, 7vw, 96px) 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  padding: 6px 14px;
  border: 1px solid rgba(168,208,144,0.4);
  border-radius: 999px;
  margin-bottom: 16px;
  background: rgba(168,208,144,0.08);
}

.section-head h2 {
  margin-bottom: 12px;
}

.section-head p {
  font-size: 1.0625rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #0f3308;
  box-shadow: 0 8px 24px rgba(168,208,144,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(168,208,144,0.5);
  color: #0f3308;
}

.btn-secondary {
  background: rgba(245,249,240,0.08);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(245,249,240,0.14);
  color: var(--color-text);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--color-text);
  padding: 10px 18px;
}

.btn-ghost:hover {
  color: var(--color-secondary);
  background: rgba(168,208,144,0.08);
}

.btn-cta {
  background: linear-gradient(135deg, #e0f0d0 0%, #a8d090 100%);
  color: #f5f9f0;
  box-shadow: 0 10px 28px rgba(168,208,144,0.45);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(168,208,144,0.6);
  color: #f5f9f0;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, #e0f0d0 0%, #5a9940 50%, #a8d090 100%);
  color: #f5f9f0;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  text-align: center;
  position: relative;
  z-index: 60;
}

.announce a {
  color: #f5f9f0;
  text-decoration: underline;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,51,8,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-text);
  letter-spacing: 0.5px;
}

.brand:hover {
  color: var(--color-text);
}

.brand img {
  width: auto;
  height: 80px;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(15,51,8,0.35));
}

.brand-name {
  display: none;
}

.footer-about .brand img {
  width: auto;
  height: 30px;
  max-width: 100%;
}

@media (max-width: 720px) {
  .brand img { height: 20px; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: var(--color-text);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-menu > li > a:hover {
  color: var(--color-secondary);
  background: rgba(168,208,144,0.06);
}

.nav-menu .caret {
  font-size: 10px;
  opacity: 0.7;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all var(--transition);
  list-style: none;
}

.nav-menu > li:hover .dropdown,
.nav-menu > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  color: var(--color-text);
  border-radius: 8px;
  font-size: 14px;
}

.dropdown a:hover {
  background: rgba(168,208,144,0.08);
  color: var(--color-secondary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(245,249,240,0.05);
  color: var(--color-text);
  align-items: center;
  justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      600px 400px at 20% 20%,
      rgba(224,240,208,0.35),
      transparent 60%
    ),
    radial-gradient(500px 400px at 80% 80%, rgba(168,208,144,0.35), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(168,208,144,0.1);
  color: var(--color-secondary);
  border: 1px solid rgba(168,208,144,0.3);
}

.badge.hot {
  background: rgba(224,240,208,0.12);
  color: #e0f0d0;
  border-color: rgba(224,240,208,0.4);
}

.badge.new {
  background: rgba(168,208,144,0.12);
  color: var(--color-accent);
  border-color: rgba(168,208,144,0.35);
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 .accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 1.125rem;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 600px;
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.hero-stat .label {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

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

.hero-float {
  position: absolute;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-float.f1 {
  top: 10%;
  left: -10%;
  animation: float 7s ease-in-out infinite;
}

.hero-float.f2 {
  bottom: 14%;
  right: -8%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-float .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 8px var(--color-success);
}

/* ---------- Bonus steps ---------- */
.bonus {
  position: relative;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(224,240,208,0.18), rgba(168,208,144,0.18));
  border: 1px solid rgba(168,208,144,0.25);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.bonus-card::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,208,144,0.2), transparent 70%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.bonus-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}

.bonus-amount small {
  font-size: 0.4em;
  -webkit-text-fill-color: var(--color-text-muted);
  background: none;
  color: var(--color-text-muted);
  display: block;
  margin-top: 8px;
  letter-spacing: 2px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.step {
  background: rgba(15,51,8,0.3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: left;
}

.step-num {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #0f3308;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.step p {
  font-size: 14px;
}

/* ---------- Grid cards ---------- */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.card {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(168,208,144,0.35);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 26px;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  font-size: 14.5px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-secondary);
}

/* ---------- Game category cards ---------- */
.game-card {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168,208,144,0.4);
  box-shadow: var(--shadow-md);
}

.game-card-visual {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(224,240,208,0.2), rgba(168,208,144,0.2));
}

.game-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.game-card:hover .game-card-visual img {
  transform: scale(1.06);
}

/* Emoji/icon tile (replaces images for content tiles) */
.icon-tile {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(48px, 7vw, 88px);
  background: linear-gradient(135deg, rgba(224,240,208,0.25), rgba(168,208,144,0.25));
  position: relative;
  transition: transform 400ms ease;
}

.icon-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(245,249,240,0.18), transparent 55%);
  pointer-events: none;
}

.game-card:hover .icon-tile,
.news:hover .icon-tile {
  transform: scale(1.06);
}

.icon-tile.tile-red    { background: linear-gradient(135deg, #e0f0d0, #5a9940); }
.icon-tile.tile-blue   { background: linear-gradient(135deg, #5a9940, #2d6620); }
.icon-tile.tile-green  { background: linear-gradient(135deg, #2d6620, #5a9940); }
.icon-tile.tile-purple { background: linear-gradient(135deg, #2d6620, #2d6620); }
.icon-tile.tile-orange { background: linear-gradient(135deg, #a8d090, #5a9940); }
.icon-tile.tile-gold   { background: linear-gradient(135deg, #a8d090, #5a9940); }
.icon-tile.tile-cyan   { background: linear-gradient(135deg, #2d6620, #5a9940); }
.icon-tile.tile-pink   { background: linear-gradient(135deg, #5a9940, #2d6620); }

/* Compact icon for app section / hero visual replacement */
.big-icon {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1/1;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(120px, 22vw, 220px);
  background: linear-gradient(135deg, rgba(224,240,208,0.35), rgba(168,208,144,0.35));
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  position: relative;
}

.big-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 25%, rgba(245,249,240,0.18), transparent 55%);
  pointer-events: none;
}

.game-card-body {
  padding: 20px;
}

.game-card h3 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.game-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.rating {
  color: var(--color-secondary);
  font-weight: 700;
}

/* ---------- Promotions ---------- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promo-card {
  background: linear-gradient(145deg, #2d6620 0%, #2d6620 100%);
  border: 1px solid rgba(168,208,144,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.promo-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,208,144,0.18), transparent 70%);
  top: -120px;
  right: -100px;
  transition: all var(--transition);
}

.promo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168,208,144,0.5);
}

.promo-card:hover::before {
  transform: scale(1.2);
}

.promo-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(224,240,208,0.15);
  color: #e0f0d0;
  margin-bottom: 16px;
  position: relative;
}

.promo-card h3 {
  margin-bottom: 12px;
  position: relative;
}

.promo-card p {
  position: relative;
  font-size: 14.5px;
  margin-bottom: 20px;
}

.promo-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  position: relative;
}

/* ---------- Providers ---------- */
.providers {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.provider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: rgba(245,249,240,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 18px;
  font-family: var(--font-display);
  letter-spacing: 1px;
  color: var(--color-text-muted);
  transition: all var(--transition);
  min-width: 140px;
}

.provider:hover {
  border-color: rgba(168,208,144,0.4);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

/* ---------- VIP ---------- */
.vip {
  background: linear-gradient(180deg, transparent, rgba(168,208,144,0.1));
}

.vip-tiers {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.tier {
  padding: 24px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(168,208,144,0.4);
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tier-bonus {
  font-size: 13px;
  color: var(--color-secondary);
  font-weight: 700;
}

.tier.bronze .tier-name { color: #a8d090; }
.tier.silver .tier-name { color: #e0f0d0; }
.tier.gold .tier-name { color: #a8d090; }
.tier.platinum .tier-name { color: #f5f9f0; }
.tier.diamond .tier-name { color: #f5f9f0; }
.tier.royal .tier-name { color: #e0f0d0; }

/* ---------- Feature / security grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature {
  padding: 28px;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.feature:hover {
  border-color: rgba(168,208,144,0.35);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  background: var(--gradient-card);
  border-radius: 12px;
}

.feature h4 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

/* ---------- Payments ---------- */
.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.pay {
  padding: 14px 22px;
  background: rgba(245,249,240,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--color-text);
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ---------- App ---------- */
.app-section {
  background: linear-gradient(135deg, rgba(224,240,208,0.15), rgba(168,208,144,0.15));
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.app-features {
  list-style: none;
  margin: 24px 0 32px;
}

.app-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  font-size: 15px;
}

.app-features li::before {
  content: "✓";
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: var(--gradient-gold);
  color: #0f3308;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  flex-shrink: 0;
}

.app-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.app-visual {
  text-align: center;
  position: relative;
}

.app-visual img {
  max-width: 380px;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.testimonial:hover {
  border-color: rgba(168,208,144,0.35);
  transform: translateY(-3px);
}

.stars {
  color: var(--color-secondary);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial p {
  color: var(--color-text);
  font-size: 15px;
  margin-bottom: 20px;
}

.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #f5f9f0;
  font-family: var(--font-display);
}

.author-name {
  font-weight: 700;
  font-size: 14px;
}

.author-meta {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ---------- News / blog ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.news:hover {
  transform: translateY(-4px);
  border-color: rgba(168,208,144,0.35);
}

.news-cover {
  aspect-ratio: 16/9;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

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

.news-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15,51,8,0.6);
  color: var(--color-secondary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(6px);
}

.news-body {
  padding: 22px;
}

.news-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.news h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news h3 a {
  color: var(--color-text);
}

.news h3 a:hover {
  color: var(--color-secondary);
}

.news p {
  font-size: 14px;
}

/* ---------- FAQ ---------- */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: rgba(168,208,144,0.35);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--color-secondary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .answer {
  padding: 0 24px 22px;
  color: var(--color-text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.faq-item .answer ul,
.faq-item .answer ol {
  margin-left: 20px;
  margin-top: 10px;
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(135deg, rgba(224,240,208,0.15), rgba(168,208,144,0.15));
  border: 1px solid rgba(168,208,144,0.25);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 24px auto 0;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(15,51,8,0.3);
  color: var(--color-text);
  font-size: 14.5px;
  font-family: inherit;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-secondary);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0f3308;
  border-top: 1px solid var(--color-border);
  padding-top: 64px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-about p {
  font-size: 14px;
  max-width: 320px;
  margin-top: 14px;
  margin-bottom: 20px;
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 38px;
  height: 38px;
  background: rgba(245,249,240,0.05);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: 14px;
  transition: all var(--transition);
}

.social a:hover {
  background: rgba(168,208,144,0.1);
  color: var(--color-secondary);
  border-color: rgba(168,208,144,0.35);
}

.footer-col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--color-text);
  font-family: var(--font-display);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--color-text-muted);
}

.footer-col a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-bottom .legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  justify-content: center;
  font-size: 12px;
  color: var(--color-text-muted);
}

.compliance .badge-18 {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f9f0;
  color: #0f3308;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 24px 0;
  font-size: 13px;
  color: var(--color-text-muted);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-secondary);
}

/* ---------- Sub page hero ---------- */
.page-hero {
  padding: 48px 0 24px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.0625rem;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Article content ---------- */
.prose {
  max-width: 780px;
  margin: 0 auto;
  color: var(--color-text);
}

.prose h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.prose h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.prose p {
  margin-bottom: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.prose ul,
.prose ol {
  margin-left: 22px;
  margin-bottom: 20px;
}

.prose li {
  margin-bottom: 8px;
  color: var(--color-text-muted);
}

.prose strong {
  color: var(--color-text);
  font-weight: 700;
}

/* ---------- Mobile menu overlay ---------- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(15,51,8,0.96);
  backdrop-filter: blur(16px);
  z-index: 100;
  padding: 80px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 300ms ease;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245,249,240,0.1);
  color: #f5f9f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.mobile-menu {
  list-style: none;
}

.mobile-menu > li {
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu > li > a,
.mobile-menu > li > details > summary {
  display: block;
  padding: 16px 0;
  color: var(--color-text);
  font-weight: 700;
  font-size: 16px;
}

.mobile-menu details ul {
  list-style: none;
  padding-bottom: 10px;
}

.mobile-menu details ul li a {
  display: block;
  padding: 10px 16px;
  color: var(--color-text-muted);
  font-size: 14.5px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .vip-tiers { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .app-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-menu,
  .nav-cta .btn-ghost {
    display: none;
  }
  .menu-toggle { display: inline-flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .grid-4, .grid-3, .grid-5, .grid-6, .features-grid { grid-template-columns: 1fr 1fr; }
  .vip-tiers { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-float { display: none; }
}

@media (max-width: 480px) {
  .grid-4, .grid-5, .grid-6, .features-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.text-gold { color: var(--color-secondary); }
.text-muted { color: var(--color-text-muted); }
.hidden { display: none; }
