/* ============================================================
 * Lucky Spin - lucky-spin.css
 * Mobile-first PH casino design. Max-width 430px reference.
 * Palette: #BAE1FF (sky accent) | #CED4DA (cool neutral)
 *          #2D2D2D (deep background)
 * All classes use the "w9e62-" prefix.
 * ============================================================ */

:root {
  --w9e62-primary: #BAE1FF;
  --w9e62-accent: #6fb6ff;
  --w9e62-accent-2: #f4a93d;
  --w9e62-neutral: #CED4DA;
  --w9e62-bg: #2D2D2D;
  --w9e62-bg-2: #1c1c1c;
  --w9e62-bg-3: #232323;
  --w9e62-card: #353535;
  --w9e62-card-2: #3c3c3c;
  --w9e62-text: #f3f5f8;
  --w9e62-text-dim: #b9c0c8;
  --w9e62-text-muted: #8b929a;
  --w9e62-border: rgba(206, 212, 218, 0.14);
  --w9e62-success: #46d39a;
  --w9e62-danger: #ff6b6b;
  --w9e62-radius: 14px;
  --w9e62-radius-sm: 10px;
  --w9e62-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --w9e62-header-h: 58px;
  --w9e62-bottom-nav-h: 62px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: var(--w9e62-bg);
  color: var(--w9e62-text);
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--w9e62-primary); text-decoration: none; }
a:hover { color: #ffffff; }

.w9e62-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 14px; }
.w9e62-wrapper { width: 100%; }

/* ---------- Header ---------- */
.w9e62-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--w9e62-header-h);
  background: linear-gradient(180deg, #1c1c1c 0%, #2D2D2D 100%);
  border-bottom: 1px solid var(--w9e62-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.w9e62-header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.w9e62-brand { display: flex; align-items: center; gap: 8px; color: #fff; }
.w9e62-brand img { width: 28px; height: 28px; border-radius: 6px; }
.w9e62-brand-name {
  font-size: 17px; font-weight: 800; letter-spacing: 0.3px;
  background: linear-gradient(90deg, #fff 30%, var(--w9e62-primary) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.w9e62-header-actions { display: flex; align-items: center; gap: 8px; }

.w9e62-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  border: none; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none; line-height: 1;
}
.w9e62-btn:hover { transform: translateY(-1px); }
.w9e62-btn-login {
  background: transparent;
  color: var(--w9e62-primary);
  border: 1px solid var(--w9e62-primary);
}
.w9e62-btn-register {
  background: linear-gradient(135deg, var(--w9e62-accent-2) 0%, #ff8a3d 100%);
  color: #1c1c1c;
  box-shadow: 0 6px 16px rgba(244, 169, 61, 0.32);
}
.w9e62-btn-cta {
  background: linear-gradient(135deg, #6fb6ff 0%, #BAE1FF 100%);
  color: #1c1c1c; padding: 10px 22px; font-size: 14px;
}
.w9e62-btn-ghost {
  background: var(--w9e62-card); color: var(--w9e62-text);
  border: 1px solid var(--w9e62-border);
}

.w9e62-menu-toggle {
  background: transparent; border: 0; color: #fff;
  font-size: 22px; padding: 6px 8px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------- Mobile menu drawer ---------- */
.w9e62-menu-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease; z-index: 9998;
}
.w9e62-backdrop-visible { opacity: 1; pointer-events: auto; }
.w9e62-mobile-menu {
  position: fixed; top: 0; right: -78%;
  width: 78%; max-width: 320px; height: 100vh;
  background: var(--w9e62-bg-2); z-index: 9999;
  padding: 22px 18px; overflow-y: auto;
  transform: translateX(0); transition: right 0.28s ease;
  border-left: 1px solid var(--w9e62-border);
}
.w9e62-menu-open { right: 0; }
.w9e62-mobile-menu h3 {
  margin: 18px 4px 8px; font-size: 13px; color: var(--w9e62-text-muted);
  letter-spacing: 0.6px; text-transform: uppercase;
}
.w9e62-mobile-menu a {
  display: block; padding: 11px 12px; border-radius: var(--w9e62-radius-sm);
  color: var(--w9e62-text); font-size: 15px;
  border: 1px solid transparent;
}
.w9e62-mobile-menu a:hover { background: var(--w9e62-card); border-color: var(--w9e62-border); }
.w9e62-mobile-menu .w9e62-menu-close {
  background: var(--w9e62-card); color: #fff; border: 0; width: 36px; height: 36px;
  border-radius: 50%; font-size: 18px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}

/* ---------- Page layout ---------- */
.w9e62-main { padding-top: calc(var(--w9e62-header-h) + 6px); }

.w9e62-section {
  padding: 26px 0;
}
.w9e62-section-alt { background: var(--w9e62-bg-2); }
.w9e62-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; gap: 10px;
}
.w9e62-section-title {
  font-size: 20px; font-weight: 800; margin: 0; color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.w9e62-section-title .w9e62-bar {
  width: 4px; height: 18px; border-radius: 2px;
  background: linear-gradient(180deg, var(--w9e62-accent-2), #ff8a3d);
}
.w9e62-section-sub {
  color: var(--w9e62-text-dim); font-size: 13px; margin-top: 4px;
}
.w9e62-section-link { font-size: 13px; color: var(--w9e62-primary); font-weight: 700; }

/* ---------- Hero / Carousel ---------- */
.w9e62-hero { padding: 8px 0 18px; }
.w9e62-carousel {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: var(--w9e62-shadow); background: #111;
}
.w9e62-carousel-track {
  display: flex; transition: transform var(--w9e62-carousel-transition) ease;
  will-change: transform;
}
.w9e62-carousel-slide {
  min-width: 100%; position: relative; aspect-ratio: 16/9;
}
.w9e62-carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.w9e62-carousel-caption {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
  padding: 22px 14px 12px; border-radius: 12px;
  color: #fff;
}
.w9e62-carousel-caption h2 { margin: 0 0 4px; font-size: 19px; font-weight: 800; }
.w9e62-carousel-caption p { margin: 0; font-size: 12px; color: var(--w9e62-neutral); }
.w9e62-carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.45); color: #fff; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.w9e62-carousel-prev { left: 8px; }
.w9e62-carousel-next { right: 8px; }
.w9e62-carousel-dots {
  position: absolute; left: 0; right: 0; bottom: 8px;
  display: flex; justify-content: center; gap: 6px;
}
.w9e62-carousel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; border: 0; padding: 0;
  transition: all 0.2s ease;
}
.w9e62-dot-active { background: var(--w9e62-accent-2); width: 18px; border-radius: 4px; }

/* ---------- Headline / SEO intro ---------- */
.w9e62-headline {
  text-align: center; padding: 6px 4px 8px;
}
.w9e62-headline h1 {
  font-size: 24px; margin: 0 0 8px; color: #fff;
  font-weight: 800; line-height: 1.25;
}
.w9e62-headline h1 span {
  background: linear-gradient(90deg, var(--w9e62-accent-2) 0%, #ffd460 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.w9e62-headline p { margin: 0 auto; max-width: 580px; color: var(--w9e62-text-dim); font-size: 14px; }

.w9e62-intro {
  background: var(--w9e62-card); border: 1px solid var(--w9e62-border);
  border-radius: var(--w9e62-radius); padding: 16px; color: var(--w9e62-text-dim);
  font-size: 14px; line-height: 1.7;
}
.w9e62-intro strong { color: #fff; }
.w9e62-intro a { font-weight: 700; }

/* ---------- Filter chips ---------- */
.w9e62-filter {
  display: flex; gap: 8px; overflow-x: auto; padding: 6px 0 12px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.w9e62-filter::-webkit-scrollbar { display: none; }
.w9e62-filter-chip {
  flex: 0 0 auto; padding: 8px 14px; border-radius: 999px;
  background: var(--w9e62-card); color: var(--w9e62-text-dim);
  font-size: 13px; font-weight: 700; cursor: pointer;
  border: 1px solid var(--w9e62-border); white-space: nowrap;
  transition: all 0.15s ease;
}
.w9e62-filter-chip:hover { color: #fff; }
.w9e62-chip-active {
  background: linear-gradient(135deg, var(--w9e62-accent-2) 0%, #ff8a3d 100%);
  color: #1c1c1c; border-color: transparent;
}

/* ---------- Game grid ---------- */
.w9e62-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
@media (min-width: 540px) { .w9e62-game-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
@media (min-width: 768px) { .w9e62-game-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; } }
@media (min-width: 992px) { .w9e62-game-grid { grid-template-columns: repeat(6, 1fr); } }

.w9e62-game-card {
  background: var(--w9e62-card); border: 1px solid var(--w9e62-border);
  border-radius: var(--w9e62-radius-sm); overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative; display: block; color: inherit;
}
.w9e62-game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
  border-color: var(--w9e62-accent);
}
.w9e62-game-thumb {
  position: relative; aspect-ratio: 1/1; background: #222; overflow: hidden;
}
.w9e62-game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.w9e62-game-card:hover .w9e62-game-thumb img { transform: scale(1.06); }
.w9e62-game-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.7) 100%);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; transition: opacity 0.2s ease; padding-bottom: 12px;
}
.w9e62-game-card:hover .w9e62-game-overlay { opacity: 1; }
.w9e62-game-play {
  background: var(--w9e62-accent-2); color: #1c1c1c;
  font-size: 12px; font-weight: 800; padding: 6px 14px;
  border-radius: 999px; text-transform: uppercase; letter-spacing: 0.5px;
}
.w9e62-game-badge {
  position: absolute; top: 6px; left: 6px;
  background: var(--w9e62-accent-2); color: #1c1c1c;
  font-size: 10px; font-weight: 800; padding: 3px 8px;
  border-radius: 6px; letter-spacing: 0.4px; text-transform: uppercase;
}
.w9e62-game-name {
  padding: 8px 8px 10px; font-size: 12px; font-weight: 600;
  text-align: center; color: var(--w9e62-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ---------- Featured / promotional cards ---------- */
.w9e62-feature-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
@media (min-width: 600px) { .w9e62-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .w9e62-feature-grid { grid-template-columns: repeat(3, 1fr); } }

.w9e62-feature-card {
  background: linear-gradient(160deg, var(--w9e62-card) 0%, var(--w9e62-card-2) 100%);
  border: 1px solid var(--w9e62-border); border-radius: var(--w9e62-radius);
  padding: 18px; transition: transform 0.18s ease, border-color 0.18s ease;
}
.w9e62-feature-card:hover { transform: translateY(-2px); border-color: var(--w9e62-accent); }
.w9e62-feature-card .w9e62-ico {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(186,225,255,0.12); color: var(--w9e62-primary);
  font-size: 22px;
}
.w9e62-feature-card h3 { margin: 0 0 6px; font-size: 16px; color: #fff; }
.w9e62-feature-card p { margin: 0; font-size: 13px; color: var(--w9e62-text-dim); }

/* ---------- Bonus / promo banner ---------- */
.w9e62-promo-banner {
  background: linear-gradient(135deg, #2a1c10 0%, #46320f 60%, #6a4a16 100%);
  border: 1px solid rgba(244,169,61,0.35); border-radius: var(--w9e62-radius);
  padding: 20px; color: #fff; display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
}
.w9e62-promo-banner h3 { margin: 0; font-size: 20px; color: #ffd460; }
.w9e62-promo-banner p { margin: 0; color: #f1e6cf; font-size: 13px; }
.w9e62-promo-banner .w9e62-coin {
  position: absolute; right: -20px; top: -20px; font-size: 120px;
  color: rgba(255,212,96,0.08); transform: rotate(-15deg);
}

/* ---------- Testimonials ---------- */
.w9e62-testimonial-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
@media (min-width: 600px) { .w9e62-testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .w9e62-testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.w9e62-testimonial {
  background: var(--w9e62-card); border: 1px solid var(--w9e62-border);
  border-radius: var(--w9e62-radius); padding: 16px;
}
.w9e62-testimonial-stars { color: #ffd460; font-size: 13px; margin-bottom: 8px; }
.w9e62-testimonial p { margin: 0 0 10px; font-size: 13px; color: var(--w9e62-text-dim); }
.w9e62-testimonial-author { display: flex; align-items: center; gap: 10px; }
.w9e62-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--w9e62-accent), var(--w9e62-primary));
  display: inline-flex; align-items: center; justify-content: center;
  color: #1c1c1c; font-weight: 800; font-size: 14px;
}
.w9e62-testimonial-author strong { color: #fff; font-size: 13px; display: block; }
.w9e62-testimonial-author span { color: var(--w9e62-text-muted); font-size: 11px; }

/* ---------- Winners ---------- */
.w9e62-winners {
  background: var(--w9e62-card); border: 1px solid var(--w9e62-border);
  border-radius: var(--w9e62-radius); overflow: hidden;
}
.w9e62-winner-row {
  display: grid; grid-template-columns: 38px 1fr auto auto;
  gap: 10px; align-items: center; padding: 10px 14px;
  border-bottom: 1px solid var(--w9e62-border); font-size: 13px;
}
.w9e62-winner-row:last-child { border-bottom: 0; }
.w9e62-winner-row .w9e62-avatar { width: 32px; height: 32px; font-size: 12px; }
.w9e62-winner-name { color: #fff; font-weight: 700; }
.w9e62-winner-game { color: var(--w9e62-text-muted); font-size: 11px; }
.w9e62-winner-amount { color: var(--w9e62-accent-2); font-weight: 800; }
.w9e62-winner-tag {
  font-size: 10px; padding: 2px 8px; border-radius: 6px;
  background: rgba(70,211,154,0.15); color: var(--w9e62-success); font-weight: 700;
}

/* ---------- Payment methods ---------- */
.w9e62-pay-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
@media (min-width: 600px) { .w9e62-pay-grid { grid-template-columns: repeat(6, 1fr); } }
.w9e62-pay {
  background: var(--w9e62-card); border: 1px solid var(--w9e62-border);
  border-radius: var(--w9e62-radius-sm); padding: 12px 6px; text-align: center;
}
.w9e62-pay .w9e62-pay-ico { font-size: 24px; color: var(--w9e62-primary); margin-bottom: 6px; }
.w9e62-pay-name { font-size: 11px; color: var(--w9e62-text-dim); font-weight: 700; }

/* ---------- App download CTA ---------- */
.w9e62-app-cta {
  background: linear-gradient(135deg, #10233a 0%, #1c3e63 100%);
  border: 1px solid rgba(186,225,255,0.25);
  border-radius: var(--w9e62-radius); padding: 22px;
  display: flex; flex-direction: column; gap: 14px; color: #fff;
}
.w9e62-app-cta h3 { margin: 0; color: var(--w9e62-primary); font-size: 20px; }
.w9e62-app-cta p { margin: 0; color: var(--w9e62-neutral); font-size: 13px; }
.w9e62-app-btns { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- FAQ ---------- */
.w9e62-faq-item {
  background: var(--w9e62-card); border: 1px solid var(--w9e62-border);
  border-radius: var(--w9e62-radius-sm); margin-bottom: 10px; overflow: hidden;
}
.w9e62-faq-question {
  width: 100%; text-align: left; background: transparent; color: #fff;
  border: 0; padding: 14px 16px; cursor: pointer; font-size: 14px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.w9e62-faq-question .w9e62-faq-toggle { color: var(--w9e62-accent-2); font-size: 18px; transition: transform 0.2s ease; }
.w9e62-faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 16px; color: var(--w9e62-text-dim); font-size: 13px; line-height: 1.7;
}
.w9e62-faq-open .w9e62-faq-answer { max-height: 360px; padding: 0 16px 14px; }
.w9e62-faq-open .w9e62-faq-toggle { transform: rotate(45deg); }

/* ---------- Achievement grid ---------- */
.w9e62-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 700px) { .w9e62-stats { grid-template-columns: repeat(4, 1fr); } }
.w9e62-stat {
  background: var(--w9e62-card); border: 1px solid var(--w9e62-border);
  border-radius: var(--w9e62-radius-sm); padding: 16px 12px; text-align: center;
}
.w9e62-stat-num { font-size: 22px; font-weight: 800; color: var(--w9e62-accent-2); }
.w9e62-stat-label { font-size: 12px; color: var(--w9e62-text-dim); margin-top: 4px; }

/* ---------- RTP / data table ---------- */
.w9e62-rtp-table {
  width: 100%; border-collapse: collapse;
  background: var(--w9e62-card); border-radius: var(--w9e62-radius-sm);
  overflow: hidden; font-size: 13px;
}
.w9e62-rtp-table th, .w9e62-rtp-table td {
  padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--w9e62-border);
}
.w9e62-rtp-table th { background: var(--w9e62-bg-3); color: var(--w9e62-primary); font-size: 12px; text-transform: uppercase; }
.w9e62-rtp-table td.w9e62-rtp { color: var(--w9e62-success); font-weight: 800; }

/* ---------- Long-form SEO article ---------- */
.w9e62-article {
  background: var(--w9e62-card); border: 1px solid var(--w9e62-border);
  border-radius: var(--w9e62-radius); padding: 18px; color: var(--w9e62-text-dim);
  font-size: 14px; line-height: 1.8;
}
.w9e62-article h2 { color: #fff; font-size: 19px; margin: 18px 0 8px; }
.w9e62-article h3 { color: #fff; font-size: 16px; margin: 14px 0 6px; }
.w9e62-article p { margin: 0 0 12px; }
.w9e62-article ul { margin: 0 0 12px; padding-left: 20px; }
.w9e62-article li { margin-bottom: 6px; }
.w9e62-article a { font-weight: 700; color: var(--w9e62-primary); }

/* ---------- Reveal animation ---------- */
.w9e62-reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.w9e62-revealed { opacity: 1; transform: translateY(0); }

/* ---------- Footer ---------- */
.w9e62-footer {
  background: var(--w9e62-bg-2); border-top: 1px solid var(--w9e62-border);
  padding: 26px 0 calc(var(--w9e62-bottom-nav-h) + 26px);
}
.w9e62-footer-cols {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media (min-width: 600px) { .w9e62-footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .w9e62-footer-cols { grid-template-columns: repeat(4, 1fr); } }
.w9e62-footer h4 { color: #fff; font-size: 14px; margin: 0 0 10px; letter-spacing: 0.4px; }
.w9e62-footer a { display: block; color: var(--w9e62-text-dim); font-size: 13px; padding: 4px 0; }
.w9e62-footer a:hover { color: var(--w9e62-primary); }
.w9e62-footer-brand { color: var(--w9e62-text-dim); font-size: 13px; line-height: 1.7; }
.w9e62-footer-promo { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.w9e62-footer-bottom {
  margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--w9e62-border);
  text-align: center; color: var(--w9e62-text-muted); font-size: 12px;
}

/* ---------- Mobile bottom navigation ---------- */
.w9e62-bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0;
  height: var(--w9e62-bottom-nav-h);
  background: linear-gradient(180deg, #1f1f1f 0%, #161616 100%);
  border-top: 1px solid var(--w9e62-border);
  display: flex; justify-content: space-around; align-items: stretch;
  z-index: 1000; padding: 0 4px;
}
.w9e62-bottom-nav button {
  flex: 1; min-width: 60px; min-height: 60px;
  background: transparent; border: 0; cursor: pointer;
  color: var(--w9e62-text-muted); font-size: 11px; font-weight: 700;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 6px 2px; transition: color 0.18s ease, transform 0.18s ease;
  position: relative;
}
.w9e62-bottom-nav button .w9e62-nav-ico { font-size: 22px; line-height: 1; }
.w9e62-bottom-nav button:hover { color: #fff; transform: translateY(-2px); }
.w9e62-bottom-nav button.w9e62-nav-active { color: var(--w9e62-accent-2); }
.w9e62-bottom-nav button.w9e62-nav-active::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 26px; height: 3px; border-radius: 0 0 4px 4px; background: var(--w9e62-accent-2);
}
.w9e62-bottom-nav .w9e62-nav-center {
  position: relative; top: -16px;
}
.w9e62-bottom-nav .w9e62-nav-center .w9e62-nav-ico {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--w9e62-accent-2) 0%, #ff8a3d 100%);
  color: #1c1c1c; display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; box-shadow: 0 6px 16px rgba(244,169,61,0.4);
  margin-bottom: 2px;
}

/* ---------- Desktop / responsive ---------- */
.w9e62-desktop-only { display: none; }
@media (min-width: 769px) {
  .w9e62-bottom-nav { display: none; }
  .w9e62-desktop-only { display: flex; }
  .w9e62-mobile-only { display: none; }
  .w9e62-footer { padding-bottom: 26px; }
  body { padding-bottom: 0; }
}
@media (max-width: 768px) {
  .w9e62-main { padding-bottom: calc(var(--w9e62-bottom-nav-h) + 18px); }
  .w9e62-section { padding: 22px 0; }
}

/* Utility */
.w9e62-text-center { text-align: center; }
.w9e62-mt-12 { margin-top: 12px; }
.w9e62-mt-16 { margin-top: 16px; }
.w9e62-img-fallback { background: rgba(206,212,218,0.06); }
