/* jiliaa main stylesheet - all classes use w1697- prefix */
/* Color palette: #FF8000 | #FFDFBA | #2E4057 | #006400 | #FF8C00 */

:root {
  --w1697-primary: #FF8000;
  --w1697-accent: #FF8C00;
  --w1697-soft: #FFDFBA;
  --w1697-deep: #2E4057;
  --w1697-green: #006400;
  --w1697-bg: #0f1822;
  --w1697-bg-2: #16243a;
  --w1697-text: #FFDFBA;
  --w1697-text-soft: #cdd9e6;
  --w1697-text-light: #ffffff;
  --w1697-border: rgba(255, 128, 0, 0.35);
  --w1697-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: var(--w1697-bg);
  color: var(--w1697-text-soft);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

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

.w1697-container {
  width: 100%;
  padding: 0 1.2rem;
}

.w1697-wrapper {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* ===== Header ===== */
.w1697-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--w1697-deep), var(--w1697-bg-2));
  border-bottom: 2px solid var(--w1697-primary);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.w1697-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.2rem;
  gap: 0.6rem;
}

.w1697-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--w1697-text-light);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}

.w1697-logo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.w1697-logo span {
  color: var(--w1697-primary);
}

.w1697-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.w1697-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 24px;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 36px;
}

.w1697-btn:hover { transform: translateY(-1px); }
.w1697-btn:active { transform: scale(0.96); }

.w1697-btn-register {
  background: linear-gradient(135deg, var(--w1697-primary), var(--w1697-accent));
  color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(255, 128, 0, 0.45);
}

.w1697-btn-login {
  background: transparent;
  color: var(--w1697-primary);
  border: 1.5px solid var(--w1697-primary);
}

.w1697-menu-toggle {
  background: transparent;
  border: none;
  color: var(--w1697-text-light);
  font-size: 1.6rem;
  cursor: pointer;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* ===== Mobile slide-in menu ===== */
.w1697-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.w1697-overlay.w1697-menu-open {
  opacity: 1;
  pointer-events: auto;
}

.w1697-mobile-menu {
  position: fixed;
  top: 0;
  right: -260px;
  width: 240px;
  height: 100vh;
  background: linear-gradient(160deg, var(--w1697-bg-2), var(--w1697-bg));
  z-index: 9999;
  padding: 1.5rem 1rem;
  transition: right 0.3s ease;
  overflow-y: auto;
  border-left: 2px solid var(--w1697-primary);
}

.w1697-mobile-menu.w1697-menu-open { right: 0; }

.w1697-mobile-menu h3 {
  color: var(--w1697-primary);
  font-size: 1.4rem;
  margin: 1.2rem 0 0.6rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.w1697-mobile-menu a {
  display: block;
  padding: 0.75rem 0.6rem;
  color: var(--w1697-text-soft);
  font-size: 1.25rem;
  border-bottom: 1px dashed rgba(255, 128, 0, 0.18);
}

.w1697-mobile-menu a:hover { color: var(--w1697-primary); }

.w1697-menu-close {
  background: transparent;
  border: none;
  color: var(--w1697-text-light);
  font-size: 1.6rem;
  cursor: pointer;
  float: right;
}

/* ===== Hero carousel ===== */
.w1697-hero {
  position: relative;
  margin: 1rem 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--w1697-shadow);
}

.w1697-carousel {
  position: relative;
  overflow: hidden;
}

.w1697-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.w1697-slide {
  min-width: 100%;
  position: relative;
}

.w1697-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.w1697-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: var(--w1697-text-light);
}

.w1697-slide-caption h2 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: var(--w1697-soft);
}

.w1697-slide-caption p {
  font-size: 1.1rem;
  color: var(--w1697-text-light);
}

.w1697-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  border: none;
  color: var(--w1697-text-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
}

.w1697-carousel-prev { left: 6px; }
.w1697-carousel-next { right: 6px; }

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

.w1697-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 223, 186, 0.5);
  border: none;
  cursor: pointer;
}

.w1697-dot-active { background: var(--w1697-primary); }

/* ===== Section ===== */
.w1697-section {
  padding: 1.4rem 1.2rem;
  margin-bottom: 0.5rem;
}

.w1697-section-title {
  font-size: 1.5rem;
  color: var(--w1697-primary);
  font-weight: 800;
  margin-bottom: 0.8rem;
  padding-left: 0.8rem;
  border-left: 4px solid var(--w1697-accent);
}

.w1697-section-subtitle {
  font-size: 1.15rem;
  color: var(--w1697-text-soft);
  margin-bottom: 1rem;
  line-height: 1.6rem;
}

.w1697-intro-text {
  font-size: 1.2rem;
  color: var(--w1697-text-soft);
  line-height: 1.7rem;
  margin-bottom: 0.8rem;
}

/* ===== Filter tabs ===== */
.w1697-filter-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0 0.8rem;
  scrollbar-width: none;
}

.w1697-filter-bar::-webkit-scrollbar { display: none; }

.w1697-filter-tab {
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  border: 1px solid var(--w1697-border);
  background: var(--w1697-bg-2);
  color: var(--w1697-text-soft);
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.w1697-filter-tab.w1697-tab-active {
  background: linear-gradient(135deg, var(--w1697-primary), var(--w1697-accent));
  color: #1a1a1a;
  border-color: transparent;
}

/* ===== Game grid ===== */
.w1697-game-section {
  margin-bottom: 1.5rem;
}

.w1697-cat-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.w1697-cat-header i,
.w1697-cat-header .material-icons,
.w1697-cat-header ion-icon {
  color: var(--w1697-primary);
  font-size: 1.6rem;
}

.w1697-cat-header h3 {
  font-size: 1.35rem;
  color: var(--w1697-text-light);
  font-weight: 700;
}

.w1697-cat-header .w1697-cat-tag {
  margin-left: auto;
  font-size: 1rem;
  color: var(--w1697-soft);
  background: rgba(255, 128, 0, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
}

.w1697-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.w1697-game-card {
  background: var(--w1697-bg-2);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 128, 0, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.w1697-game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 128, 0, 0.35);
  border-color: var(--w1697-primary);
}

.w1697-game-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  background: #000;
}

.w1697-game-name {
  padding: 0.4rem 0.5rem;
  font-size: 1rem;
  color: var(--w1697-text-soft);
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Feature cards ===== */
.w1697-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.w1697-feature-card {
  background: linear-gradient(135deg, var(--w1697-bg-2), var(--w1697-deep));
  border: 1px solid var(--w1697-border);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.w1697-feature-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 128, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w1697-primary);
  font-size: 1.4rem;
}

.w1697-feature-body h4 {
  font-size: 1.25rem;
  color: var(--w1697-text-light);
  margin-bottom: 0.3rem;
}

.w1697-feature-body p {
  font-size: 1.1rem;
  color: var(--w1697-text-soft);
  line-height: 1.55rem;
}

/* ===== RTP cards ===== */
.w1697-rtp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.w1697-rtp-card {
  background: var(--w1697-bg-2);
  border: 1px solid var(--w1697-border);
  border-radius: 10px;
  padding: 0.7rem;
  text-align: center;
}

.w1697-rtp-card h4 {
  font-size: 1.1rem;
  color: var(--w1697-soft);
  margin-bottom: 0.3rem;
}

.w1697-rtp-value {
  font-size: 1.4rem;
  color: var(--w1697-primary);
  font-weight: 800;
}

.w1697-rtp-card p {
  font-size: 0.95rem;
  color: var(--w1697-text-soft);
  margin-top: 0.2rem;
}

/* ===== Promo banner ===== */
.w1697-promo-banner {
  background: linear-gradient(135deg, var(--w1697-green), var(--w1697-deep));
  border-radius: 14px;
  padding: 1.1rem;
  color: var(--w1697-text-light);
  text-align: center;
  margin-bottom: 1rem;
  border: 1px solid var(--w1697-primary);
}

.w1697-promo-banner h3 {
  font-size: 1.4rem;
  color: var(--w1697-soft);
  margin-bottom: 0.4rem;
}

.w1697-promo-banner p {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: var(--w1697-text-light);
}

.w1697-promo-link {
  display: inline-block;
  color: var(--w1697-primary);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0.3rem 0;
  cursor: pointer;
}

/* ===== VIP card ===== */
.w1697-vip-card {
  background: linear-gradient(135deg, #3a1d00, var(--w1697-deep));
  border: 1px solid var(--w1697-primary);
  border-radius: 14px;
  padding: 1.2rem;
  color: var(--w1697-text-light);
  margin-bottom: 1rem;
}

.w1697-vip-card h3 {
  font-size: 1.45rem;
  color: var(--w1697-soft);
  margin-bottom: 0.4rem;
}

.w1697-vip-card p {
  font-size: 1.1rem;
  line-height: 1.6rem;
  margin-bottom: 0.6rem;
}

.w1697-vip-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.w1697-vip-tier {
  background: rgba(255, 128, 0, 0.12);
  border-radius: 8px;
  padding: 0.5rem 0.3rem;
  text-align: center;
}

.w1697-vip-tier h5 {
  font-size: 1.1rem;
  color: var(--w1697-primary);
}

.w1697-vip-tier span {
  font-size: 0.95rem;
  color: var(--w1697-text-soft);
}

/* ===== Security section ===== */
.w1697-security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.w1697-security-item {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  background: var(--w1697-bg-2);
  padding: 0.7rem;
  border-radius: 10px;
  border-left: 3px solid var(--w1697-green);
}

.w1697-security-item i,
.w1697-security-item .material-icons {
  color: var(--w1697-green);
  font-size: 1.5rem;
}

.w1697-security-item h4 {
  font-size: 1.15rem;
  color: var(--w1697-text-light);
}

.w1697-security-item p {
  font-size: 1rem;
  color: var(--w1697-text-soft);
}

/* ===== Tips list ===== */
.w1697-tips-list {
  list-style: none;
  counter-reset: tip;
}

.w1697-tips-list li {
  position: relative;
  padding: 0.6rem 0.6rem 0.6rem 2.4rem;
  font-size: 1.1rem;
  color: var(--w1697-text-soft);
  counter-increment: tip;
  margin-bottom: 0.4rem;
  background: var(--w1697-bg-2);
  border-radius: 8px;
  line-height: 1.55rem;
}

.w1697-tips-list li::before {
  content: counter(tip);
  position: absolute;
  left: 0.5rem;
  top: 0.6rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--w1697-primary);
  color: #1a1a1a;
  border-radius: 50%;
  text-align: center;
  line-height: 1.5rem;
  font-size: 1rem;
  font-weight: 700;
}

/* ===== Testimonials ===== */
.w1697-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.w1697-testimonial {
  background: var(--w1697-bg-2);
  border-radius: 10px;
  padding: 0.8rem;
  border: 1px solid rgba(255, 128, 0, 0.18);
}

.w1697-testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.w1697-testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--w1697-primary), var(--w1697-accent));
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.w1697-testimonial-head h4 {
  font-size: 1.15rem;
  color: var(--w1697-text-light);
}

.w1697-testimonial-head .w1697-stars {
  color: var(--w1697-primary);
  font-size: 0.95rem;
  margin-left: auto;
}

.w1697-testimonial p {
  font-size: 1.1rem;
  color: var(--w1697-text-soft);
  line-height: 1.55rem;
}

/* ===== Payment methods ===== */
.w1697-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.w1697-payment-item {
  background: var(--w1697-bg-2);
  border: 1px solid var(--w1697-border);
  border-radius: 10px;
  padding: 0.6rem 0.3rem;
  text-align: center;
}

.w1697-payment-item i,
.w1697-payment-item .material-icons {
  color: var(--w1697-primary);
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.w1697-payment-item span {
  font-size: 0.95rem;
  color: var(--w1697-text-soft);
  display: block;
}

/* ===== Winners ===== */
.w1697-winners-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.w1697-winner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--w1697-bg-2);
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border-left: 3px solid var(--w1697-green);
}

.w1697-winner .w1697-winner-name {
  font-size: 1.1rem;
  color: var(--w1697-text-light);
  font-weight: 600;
}

.w1697-winner .w1697-winner-game {
  font-size: 1rem;
  color: var(--w1697-text-soft);
  margin-left: auto;
}

.w1697-winner .w1697-winner-amount {
  font-size: 1.2rem;
  color: var(--w1697-primary);
  font-weight: 800;
}

/* ===== App download CTA ===== */
.w1697-app-cta {
  background: linear-gradient(135deg, var(--w1697-deep), var(--w1697-green));
  border-radius: 14px;
  padding: 1.2rem;
  text-align: center;
  margin-bottom: 1rem;
  border: 1px solid var(--w1697-primary);
}

.w1697-app-cta h3 {
  color: var(--w1697-soft);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.w1697-app-cta p {
  color: var(--w1697-text-light);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.w1697-app-buttons {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.w1697-app-btn {
  background: rgba(0, 0, 0, 0.4);
  color: var(--w1697-text-light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  border: 1px solid var(--w1697-primary);
}

/* ===== Play now banner ===== */
.w1697-play-now {
  background: linear-gradient(135deg, var(--w1697-primary), var(--w1697-accent));
  color: #1a1a1a;
  border-radius: 14px;
  padding: 1.2rem;
  text-align: center;
  margin: 1rem 0;
  box-shadow: 0 6px 18px rgba(255, 128, 0, 0.4);
}

.w1697-play-now h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.w1697-play-now p {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.w1697-play-btn {
  background: var(--w1697-deep);
  color: var(--w1697-text-light);
  border: none;
  padding: 0.7rem 1.6rem;
  border-radius: 24px;
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
}

/* ===== FAQ ===== */
.w1697-faq-item {
  background: var(--w1697-bg-2);
  border: 1px solid var(--w1697-border);
  border-radius: 10px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.w1697-faq-q {
  padding: 0.8rem 1rem;
  font-size: 1.15rem;
  color: var(--w1697-text-light);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.w1697-faq-q::after {
  content: "+";
  color: var(--w1697-primary);
  font-size: 1.4rem;
  font-weight: 700;
}

.w1697-faq-item.w1697-faq-open .w1697-faq-q::after { content: "-"; }

.w1697-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--w1697-text-soft);
  font-size: 1.1rem;
  line-height: 1.6rem;
}

.w1697-faq-item.w1697-faq-open .w1697-faq-a {
  max-height: 320px;
  padding: 0 1rem 0.8rem;
}

/* ===== Footer ===== */
.w1697-footer {
  background: linear-gradient(160deg, var(--w1697-bg-2), var(--w1697-bg));
  border-top: 2px solid var(--w1697-primary);
  padding: 1.4rem 1.2rem 1rem;
  color: var(--w1697-text-soft);
}

.w1697-footer h4 {
  color: var(--w1697-primary);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.w1697-footer p {
  font-size: 1.05rem;
  line-height: 1.6rem;
  margin-bottom: 0.8rem;
}

.w1697-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  margin-bottom: 0.8rem;
}

.w1697-footer-links a {
  font-size: 1.05rem;
  color: var(--w1697-text-soft);
  text-decoration: underline;
}

.w1697-footer-links a:hover { color: var(--w1697-primary); }

.w1697-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0;
}

.w1697-footer-promo button {
  flex: 1 1 40%;
  background: linear-gradient(135deg, var(--w1697-primary), var(--w1697-accent));
  color: #1a1a1a;
  border: none;
  padding: 0.5rem 0.6rem;
  border-radius: 20px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

.w1697-copyright {
  text-align: center;
  font-size: 1rem;
  color: var(--w1697-text-soft);
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(255, 128, 0, 0.2);
}

/* ===== Bottom navigation (mobile) ===== */
.w1697-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 62px;
  background: linear-gradient(180deg, var(--w1697-bg-2), #0a1018);
  border-top: 2px solid var(--w1697-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.6);
}

.w1697-bottom-nav button,
.w1697-bottom-nav a {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--w1697-text-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 60px;
  min-height: 60px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s ease, transform 0.15s ease;
}

.w1697-bottom-nav button i,
.w1697-bottom-nav button .material-icons,
.w1697-bottom-nav button ion-icon,
.w1697-bottom-nav a i,
.w1697-bottom-nav a .material-icons,
.w1697-bottom-nav a ion-icon {
  font-size: 22px;
  color: var(--w1697-text-soft);
}

.w1697-bottom-nav button span,
.w1697-bottom-nav a span {
  font-size: 1rem;
}

.w1697-bottom-nav button:hover,
.w1697-bottom-nav a:hover { color: var(--w1697-primary); transform: translateY(-2px); }

.w1697-bottom-nav .w1697-nav-active {
  color: var(--w1697-primary);
}

.w1697-bottom-nav .w1697-nav-active i,
.w1697-bottom-nav .w1697-nav-active .material-icons,
.w1697-bottom-nav .w1697-nav-active ion-icon {
  color: var(--w1697-primary);
}

.w1697-nav-promo {
  position: relative;
}

.w1697-nav-promo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--w1697-primary), var(--w1697-accent));
  border-radius: 50%;
  top: -18px;
  z-index: -1;
  box-shadow: 0 4px 12px rgba(255, 128, 0, 0.5);
}

.w1697-nav-promo i,
.w1697-nav-promo .material-icons,
.w1697-nav-promo ion-icon {
  color: #1a1a1a !important;
  font-size: 22px;
}

/* ===== Desktop rules ===== */
@media (min-width: 769px) {
  .w1697-bottom-nav { display: none; }
  body { max-width: 1200px; }
}

@media (max-width: 768px) {
  main { padding-bottom: 80px; }
}

@media (min-width: 431px) and (max-width: 768px) {
  body { max-width: 430px; }
}
