/* ============================================================
   AmunBet Casino — Black & Yellow Theme
   style.css — shared across all pages
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* === VARIABLES === */
:root {
  --bg-deep:          #000000;
  --bg-primary:       #080808;
  --bg-secondary:     #0d0d0d;
  --bg-card:          #131313;
  --bg-card-hover:    #1a1a1a;
  --yellow-bright:    #ffe600;
  --yellow-mid:       #f5d000;
  --yellow-dark:      #c4a400;
  --yellow-border:    rgba(255,230,0,0.2);
  --yellow-border-h:  rgba(255,230,0,0.5);
  --text-white:       #ffffff;
  --text-muted:       #a8a8a8;
  --text-dim:         #585858;
  --radius-sm:        3px;
  --radius-md:        8px;
  --max-w:            1400px;
  --article-w:        1400px;
  --trans:            0.25s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background-color: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.85;
  min-height: 100vh;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--yellow-mid);
}
h1 { font-size: clamp(1.75rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.3rem, 2.8vw, 1.9rem); }
h3 { font-size: clamp(1rem, 1.8vw, 1.3rem); }

p { margin-bottom: 1.3rem; color: var(--text-white); }
p:last-child { margin-bottom: 0; }

a { color: var(--yellow-mid); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--yellow-bright); }

strong { color: var(--yellow-bright); font-weight: 600; }

ul, ol { padding-left: 1.6rem; margin-bottom: 1.25rem; }
li { margin-bottom: 0.45rem; color: var(--text-white); }

/* === LAYOUT === */
.container    { max-width: var(--max-w);     margin: 0 auto; padding: 0 2rem; }
.article-wrap { max-width: var(--article-w); margin: 0 auto; padding: 0 2rem; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--yellow-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.85rem 2rem;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
}
.nav-logo-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--yellow-mid);
  letter-spacing: 0.06em;
  line-height: 1;
}
.nav-logo-name span { color: var(--yellow-bright); }

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000000;
  background: var(--yellow-bright);
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--yellow-bright);
  white-space: nowrap;
  transition: all var(--trans);
}
.nav-cta:hover {
  color: #000000;
  background: #fff066;
  border-color: #fff066;
  box-shadow: 0 0 20px rgba(255,230,0,0.45);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  line-height: 1;
  transition: all var(--trans);
}

.btn-gold {
  background: var(--yellow-bright);
  color: #000000;
  padding: 1rem 2.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--yellow-bright);
  font-size: 0.86rem;
  box-shadow: 0 2px 18px rgba(255,230,0,0.25);
}
.btn-gold:hover {
  background: #fff066;
  border-color: #fff066;
  box-shadow: 0 4px 32px rgba(255,230,0,0.5);
  color: #000000;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--yellow-mid);
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--yellow-mid);
  font-size: 0.84rem;
}
.btn-outline:hover {
  background: rgba(255,230,0,0.08);
  color: var(--yellow-bright);
  border-color: var(--yellow-bright);
}

/* === ORNAMENT DIVIDER === */
.orn-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 2.5rem 0;
}
.orn-divider::before,
.orn-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--yellow-border) 50%, transparent);
}
.orn-divider .orn {
  color: var(--yellow-dark);
  font-size: 0.9rem;
  letter-spacing: 0.45rem;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/main.baner2.webp');
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 5.5rem 2rem 4.5rem;
  text-align: center;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 1px;
  background: var(--yellow-dark);
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  color: var(--yellow-bright);
  text-shadow: 0 2px 28px rgba(255,230,0,0.3);
  margin-bottom: 1.8rem;
  line-height: 1.22;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.8rem;
  line-height: 1.9;
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === STATS STRIP === */
.stats-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--yellow-border);
  border-bottom: 1px solid var(--yellow-border);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.stat-item {
  text-align: center;
  padding: 0.75rem 1rem;
  border-right: 1px solid var(--yellow-border);
}
.stat-item:last-child { border-right: none; }

.stat-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}
.stat-value {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow-bright);
  line-height: 1.1;
}
.stat-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* === ARTICLE SECTION === */
.article-section {
  padding: 4.5rem 0 3rem;
}

.article-section h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--yellow-mid);
  margin: 3rem 0 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--yellow-border);
  position: relative;
}
.article-section h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 52px;
  height: 2px;
  background: var(--yellow-bright);
}
.article-section h2:first-of-type { margin-top: 0; }

.article-section h3 {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: var(--yellow-dark);
  margin: 2rem 0 0.8rem;
}

/* Styled list inside article */
.article-section ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.article-section ul li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative;
  border-bottom: 1px solid rgba(255,230,0,0.07);
}
.article-section ul li:last-child { border-bottom: none; }
.article-section ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0.55rem;
  font-size: 0.5rem;
  color: var(--yellow-dark);
  line-height: 1;
}

/* Loyalty tier list */
.tier-list {
  list-style: none !important;
  padding: 0 !important;
  background: var(--bg-card);
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius-md);
  margin: 1.25rem 0;
  overflow: hidden;
}
.tier-list li {
  display: flex !important;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 1.25rem !important;
  border-bottom: 1px solid rgba(255,230,0,0.08) !important;
}
.tier-list li:last-child { border-bottom: none !important; }
.tier-list li::before { display: none !important; }
.tier-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--yellow-bright);
  min-width: 82px;
  font-size: 0.88rem;
  flex-shrink: 0;
}

/* Payment timeline list */
.payout-list {
  list-style: none !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.65rem;
  margin: 1.25rem 0;
}
.payout-list li {
  background: var(--bg-card);
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem !important;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--yellow-border) !important;
}
.payout-list li::before { display: none !important; }
.payout-list li strong { color: var(--yellow-mid); font-weight: 600; }

/* License bullet list */
.license-list {
  list-style: none !important;
  padding: 0 !important;
  background: rgba(255,230,0,0.03);
  border: 1px solid var(--yellow-border);
  border-left: 3px solid var(--yellow-dark);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem !important;
  margin: 1.25rem 0;
}
.license-list li {
  padding: 0.4rem 0 0.4rem 1.4rem !important;
  font-size: 0.93rem;
  color: var(--text-muted) !important;
  border-bottom: none !important;
}
.license-list li::before { top: 0.52rem !important; }

/* === HIGHLIGHT BOX === */
.highlight-box {
  background: rgba(255,230,0,0.04);
  border: 1px solid var(--yellow-border);
  border-left: 3px solid var(--yellow-mid);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-style: italic;
}

/* === CTA BANNER === */
.cta-banner {
  background: var(--bg-deep);
  border-top: 2px solid var(--yellow-dark);
  border-bottom: 2px solid var(--yellow-dark);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--yellow-bright);
  margin-bottom: 0.8rem;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
}
.cta-banner p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.2rem;
  font-size: 0.97rem;
}
.cta-banner .cta-inner { max-width: 680px; margin: 0 auto; padding: 0 2rem; }

.cta-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.cta-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--yellow-border);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
}

/* === FAQ === */
.faq-section {
  background: var(--bg-secondary);
  padding: 4.5rem 0;
  border-top: 1px solid var(--yellow-border);
}
.faq-section > .article-wrap > h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--yellow-mid);
  border: none;
  padding: 0;
}
.faq-section > .article-wrap > h2::after { display: none; }

details {
  background: var(--bg-card);
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  transition: border-color var(--trans);
}
details[open] { border-color: rgba(255,230,0,0.45); }

summary {
  font-family: 'Cinzel', serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--yellow-mid);
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--trans), background var(--trans);
  border-radius: var(--radius-md);
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '◆';
  font-size: 0.6rem;
  color: var(--yellow-dark);
  flex-shrink: 0;
  transition: transform var(--trans), color var(--trans);
}
details[open] summary {
  background: rgba(255,230,0,0.04);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  color: var(--yellow-bright);
}
details[open] summary::after {
  transform: rotate(45deg);
  color: var(--yellow-mid);
}
summary:hover { color: var(--yellow-bright); }

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.85;
}
.faq-answer p { color: var(--text-muted); margin-bottom: 0.75rem; }

/* === PAGE HEADER (sub-pages) === */
.page-header {
  background: var(--bg-deep);
  border-bottom: 2px solid var(--yellow-dark);
  padding: 4rem 0 2.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,230,0,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  color: var(--yellow-bright);
  margin-bottom: 0.75rem;
  position: relative;
}
.page-header-desc {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.97rem;
  font-style: italic;
}

/* === BREADCRUMB === */
.breadcrumb {
  background: rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255,230,0,0.08);
}
.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.6rem 2rem;
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.78rem;
}
.breadcrumb li {
  color: var(--text-dim);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.breadcrumb li::after { content: '›'; color: var(--yellow-dark); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--yellow-mid); }
.breadcrumb li:last-child { color: var(--yellow-dark); }

/* === CONTENT PAGE (sub-pages article body) === */
.content-page {
  padding: 3.5rem 0 5rem;
}
.content-page h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  color: var(--yellow-mid);
  margin: 2.8rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--yellow-border);
  position: relative;
}
.content-page h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--yellow-bright);
}
.content-page h2:first-of-type { margin-top: 0; }
.content-page h3 {
  font-size: clamp(0.92rem, 1.5vw, 1.1rem);
  color: var(--yellow-dark);
  margin: 2rem 0 0.7rem;
}
.content-page ul, .content-page ol {
  margin-bottom: 1.2rem;
}
.content-page li {
  padding-left: 0.3rem;
  margin-bottom: 0.4rem;
}
.content-page ul li::marker { color: var(--yellow-dark); }

/* Definition-style lists */
.def-box {
  background: var(--bg-card);
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  margin: 1.5rem 0;
}
.def-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.def-box ul li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,230,0,0.08);
  font-size: 0.92rem;
  color: var(--text-muted);
}
.def-box ul li:last-child { border-bottom: none; padding-bottom: 0; }
.def-box ul li:first-child { padding-top: 0; }

/* Highlight note box */
.note-box {
  background: rgba(255,230,0,0.04);
  border: 1px solid var(--yellow-border);
  border-left: 3px solid var(--yellow-dark);
  border-radius: var(--radius-sm);
  padding: 1rem 1.4rem;
  margin: 1.4rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}
.note-box p { color: var(--text-muted); }

/* === FOOTER === */
.site-footer {
  background: var(--bg-deep);
  border-top: 2px solid var(--yellow-dark);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--yellow-mid);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  display: block;
}
.footer-brand-name span { color: var(--yellow-bright); }

.footer-brand p {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 380px;
}

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--yellow-border);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--yellow-mid); }

.footer-bottom {
  border-top: 1px solid rgba(255,230,0,0.1);
  margin-top: 3rem;
  padding-top: 1.75rem;
  text-align: center;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
  line-height: 1.6;
}
.footer-legal-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--yellow-dark);
  margin-top: 0.8rem;
  display: block;
}

/* === RESPONSIVE === */
@media (max-width: 1000px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4) { border-right: 1px solid var(--yellow-border); border-top: 1px solid var(--yellow-border); }
  .stat-item:nth-child(5) { border-top: 1px solid var(--yellow-border); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hero { min-height: 60vh; }
  .hero-content { padding: 3.5rem 1.5rem 3rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4),
  .stat-item:nth-child(5) { border-top: 1px solid var(--yellow-border); }
  .stat-item:nth-child(4) { border-right: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .payout-list { grid-template-columns: 1fr; }

  .container, .article-wrap { padding: 0 1rem; }
  .nav-inner { padding: 0.85rem 1rem; }
  .breadcrumb-inner { padding: 0.6rem 1rem; }
  .stats-grid { padding: 0 1rem; }
  .footer-inner { padding: 0 1rem; }
  .footer-bottom { padding-left: 1rem; padding-right: 1rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .btn-gold, .btn-outline { padding: 0.85rem 1.6rem; font-size: 0.78rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
