@keyframes foxFloat {
  0%, 100% { transform: translateY(0px); }
  40% { transform: translateY(-16px); }
  65% { transform: translateY(-8px); }
}

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body.fox-body {
  font-family: 'Nunito', sans-serif;
  color: #3a1800;
  min-height: 100vh;
  background-image: url('/wp-content/uploads/ChatGPT Image Jun 17, 2026, 08_48_31 PM.webp');
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
  background-color: #fde8c8;
}

a { text-decoration: none; }

/* Example 4 action buttons */
.fox-actions [data-href] {
  cursor: pointer;
  user-select: none;
}

.login-btn {
  background: transparent;
  color: #7a3610;
  border: 1.5px solid rgba(174, 94, 16, 0.42);
  border-radius: 22px;
  padding: 8px 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.865rem;
  transition: all 0.18s;
  white-space: nowrap;
}

.login-btn:hover {
  border-color: #c85c08;
  color: #c85c08;
  background: rgba(200, 92, 8, 0.06);
}

.register-btn,
.btn-play {
  background: linear-gradient(135deg, #e05c10 0%, #b53200 100%);
  color: #ffffff;
  border: none;
  border-radius: 22px;
  padding: 9px 22px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.865rem;
  box-shadow: 0 4px 18px rgba(168, 48, 0, 0.38);
  transition: all 0.18s;
  white-space: nowrap;
}

.register-btn:hover,
.btn-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 22px rgba(168, 48, 0, 0.52);
}

.btn-play {
  border-radius: 32px;
  padding: 15px 38px;
  font-size: 1.05rem;
  box-shadow: 0 8px 28px rgba(168, 48, 0, 0.4);
  letter-spacing: 0.02em;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(168, 48, 0, 0.54);
}

.btn-bonus {
  background: rgba(200, 92, 8, 0.08);
  color: #c85c08;
  border: 2px solid rgba(200, 92, 8, 0.36);
  border-radius: 32px;
  padding: 13px 34px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-bonus:hover {
  background: rgba(200, 92, 8, 0.16);
  border-color: #c85c08;
}

.fox-actions [data-href]:active {
  transform: scale(0.98);
}

/* Header */
.fox-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 244, 222, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(196, 132, 10, 0.18);
  box-shadow: 0 2px 24px rgba(100, 48, 0, 0.07);
}

.site-header-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 36px;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.fox-logo-link {
  flex-shrink: 0;
  line-height: 0;
  display: flex;
}

.fox-logo {
  height: 56px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  display: block;
}

.fox-logo--footer {
  margin: 0 auto;
}

.auth-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.fox-hamburger {
  display: none;
  background: transparent;
  border: 1.5px solid rgba(174, 94, 16, 0.42);
  border-radius: 11px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

/* {{MENU_$1}} desktop */
.fox-nav-slot--desktop {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.fox-nav-slot--desktop .fox-nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}

.fox-nav-slot--desktop .fox-menu-link {
  color: #5a2e0c;
  font-weight: 700;
  font-size: 0.865rem;
  padding: 8px 13px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s;
}

.fox-nav-slot--desktop .fox-menu-link:hover {
  color: #c85c08;
  background: rgba(200, 92, 8, 0.09);
}

/* {{MENU_$1}} mobile */
.fox-mobile-drawer {
  display: none;
  flex-direction: column;
  padding: 8px 16px 18px;
  border-top: 1px solid rgba(196, 132, 10, 0.18);
  background: rgba(253, 244, 222, 0.98);
}

.fox-mobile-drawer.is-open {
  display: flex;
}

.fox-nav-slot--mobile .fox-nav-inner {
  display: flex;
  flex-direction: column;
}

.fox-nav-slot--mobile .fox-menu-link {
  color: #5a2e0c;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 8px;
  border-bottom: 1px solid rgba(196, 132, 10, 0.12);
  display: block;
  transition: color 0.18s;
}

.fox-nav-slot--mobile .fox-menu-link:last-child {
  border-bottom: none;
}

.fox-nav-slot--mobile .fox-menu-link:hover {
  color: #c85c08;
}

.fox-mobile-auth {
  margin-top: 14px;
}

.login-btn--mobile {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.95rem;
  text-align: center;
}

/* Hero */
.hero-section {
  display: flex;
  align-items: stretch;
  max-width: 1380px;
  margin: 0 auto;
  padding: 32px 36px 0;
  overflow: hidden;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  padding-right: 44px;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 1.11;
  font-weight: 800;
  margin: 0 0 18px;
  text-wrap: pretty;
  background: linear-gradient(140deg, #3a1200 0%, #c85c08 55%, #e07818 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-right {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
}

.hero-mascot {
  height: min(72vh, 520px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: top;
  margin-top: 52px;
  animation: foxFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 16px 44px rgba(148, 54, 0, 0.22));
}

/* Content */
.article-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 16px 36px 80px;
}

.fox-content {
  font-family: 'Nunito', sans-serif;
}

.fox-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.88rem;
  font-weight: 700;
  color: #1c0e00;
  margin: 0 0 16px;
  padding-bottom: 11px;
  border-bottom: 2px solid rgba(196, 88, 8, 0.28);
}

.fox-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.52rem;
  font-weight: 700;
  color: #1c0e00;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(196, 88, 8, 0.28);
}

.fox-content p {
  font-size: 1.04rem;
  line-height: 1.84;
  color: #4a2810;
  margin: 0 0 15px;
  text-wrap: pretty;
}

.fox-content strong {
  color: #b84000;
}

.fox-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.fox-content ul li {
  padding: 7px 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #4a2810;
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.fox-content ul li::before {
  content: '\2726';
  color: #c85c08;
  flex-shrink: 0;
  margin-top: 3px;
}

.fox-content ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fox-content ol li {
  padding: 12px 0 12px 54px;
  font-size: 1rem;
  line-height: 1.65;
  color: #4a2810;
  position: relative;
  border-bottom: 1px solid rgba(196, 88, 8, 0.1);
}

.fox-content ol li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fox-content .bonus-table-wrap,
.fox-content > div[style*="overflow"] {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 28px rgba(110, 52, 0, 0.13);
  margin-bottom: 22px;
}

.fox-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.fox-content table th {
  background: linear-gradient(90deg, #c85c08 0%, #8e2e00 100%);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  padding: 15px 22px;
  text-align: left;
  font-weight: 600;
  font-size: 0.91rem;
  letter-spacing: 0.02em;
}

.fox-content table td {
  padding: 13px 22px;
  border-bottom: 1px solid rgba(196, 124, 10, 0.13);
  background: rgba(255,255,255,0.62);
  color: #5a3010;
}

.fox-content table tr:nth-child(even) td {
  background: rgba(255,248,232,0.52);
}

.fox-content table td:first-child {
  font-weight: 700;
  color: #2a1200;
}

.fox-content blockquote {
  border-left: 4px solid #c85c08;
  background: rgba(200, 92, 8, 0.06);
  border-radius: 0 14px 14px 0;
  padding: 22px 30px;
  margin: 0;
  clear: both;
}

.fox-content blockquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5a2800;
  margin: 0 0 14px;
}

.fox-content blockquote footer {
  font-size: 0.88rem;
  font-weight: 800;
  color: #c85c08;
}

.fox-content details {
  background: rgba(255,255,255,0.52);
  border-radius: 12px;
  border: 1px solid rgba(196, 88, 8, 0.16);
  overflow: hidden;
  margin-bottom: 10px;
}

.fox-content details summary {
  padding: 16px 22px;
  font-weight: 700;
  color: #2a1200;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  list-style: none;
}

.fox-content details summary::-webkit-details-marker { display: none; }

.fox-content details p {
  padding: 4px 22px 16px;
  font-size: 0.97rem;
  line-height: 1.72;
  color: #5a3010;
  margin: 0;
  border-top: 1px solid rgba(196, 88, 8, 0.1);
}

/* Footer — {{MENU_$2}} */
.fox-footer {
  background: rgba(46, 18, 2, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(196, 124, 10, 0.2);
}

.footer-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer-side {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.footer-side--left {
  justify-content: flex-start;
}

.footer-side--right {
  justify-content: flex-end;
}

.footer-deco {
  height: 200px;
  width: auto;
  opacity: 0.92;
  pointer-events: none;
}

.footer-deco--fox {
  filter: drop-shadow(0 0 24px rgba(148, 54, 0, 0.25));
}

.footer-deco--gift {
  filter: drop-shadow(0 0 24px rgba(120, 60, 200, 0.3));
}

.footer-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 36px 24px;
}

.fox-nav-slot--footer .fox-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.fox-nav-slot--footer .fox-footer-link {
  color: rgba(238, 212, 158, 0.72);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 4px 10px;
  transition: color 0.18s;
  white-space: nowrap;
}

.fox-nav-slot--footer .fox-footer-link:hover {
  color: #eed49e;
}

.footer-divider {
  width: 180px;
  height: 1px;
  background: rgba(196, 124, 10, 0.2);
  margin: 14px 0;
}

.footer-divider--light {
  background: rgba(196, 124, 10, 0.16);
}

.footer-social {
  display: flex;
  align-items: center;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(196, 124, 10, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(238,212,158,0.72);
  transition: all 0.18s;
  margin: 0 6px;
}

.social-btn:hover {
  background: rgba(196, 124, 10, 0.22);
  color: #eed49e;
  border-color: rgba(196, 124, 10, 0.5);
}

.footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(238, 212, 158, 0.38);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
  color: rgba(238, 212, 158, 0.6);
  margin-right: 16px;
}

.footer-meta-text {
  font-size: 0.8rem;
  color: rgba(238, 212, 158, 0.46);
  font-weight: 500;
}

.footer-meta-dot {
  color: rgba(196, 124, 10, 0.28);
  margin: 0 16px;
  font-size: 0.65rem;
}

@media (max-width: 768px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

@media (max-width: 1024px) {
  .fox-nav-slot--desktop .fox-menu-link {
    padding: 6px 8px;
    font-size: 0.78rem;
  }

  .hero-section { padding: 24px 20px 0; }
  .hero-left { padding-right: 20px; }
  .article-wrap { padding: 12px 20px 60px; }
}

@media (max-width: 768px) {
  .site-header-inner {
    padding: 0 16px;
    height: 62px;
    gap: 10px;
  }

  .fox-logo { height: 44px; }

  .fox-nav-slot--desktop { display: none; }

  .auth-btns .login-btn { display: none; }

  .register-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .fox-hamburger { display: flex; }

  .hero-section {
    flex-direction: column-reverse;
    padding: 14px 16px 0;
    align-items: center;
    gap: 4px;
  }

  .hero-left {
    max-width: 100%;
    padding-right: 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
    margin-bottom: 22px;
  }

  .hero-btns {
    justify-content: center;
    width: 100%;
  }

  .hero-btns [data-href] {
    flex: 1 1 auto;
  }

  .hero-right {
    width: 100%;
    justify-content: center;
    align-items: center;
    overflow: visible;
    max-height: 300px;
  }

  .hero-mascot {
    height: 280px;
    margin-top: 0;
  }

  .article-wrap { padding: 12px 16px 40px; }

  .fox-content h2 { font-size: 1.5rem; }

  .fox-content .bonus-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fox-content table {
    font-size: 0.86rem;
  }

  .fox-content table th,
  .fox-content table td {
    padding: 11px 14px;
  }

  .fox-content blockquote { padding: 18px 20px; }

  .fox-content blockquote p { font-size: 1rem; }

  .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-side { display: none; }

  .footer-center { padding: 28px 16px 22px; }
}

@media (max-width: 420px) {
  .hero-h1 { font-size: clamp(1.85rem, 9vw, 2.4rem); }
  .hero-mascot { height: 220px; }
  .hero-btns { flex-direction: column; }
  .hero-btns [data-href] { width: 100%; }
}
