@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;600;700&display=swap');

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

:root {
  --clr-header: #704319;
  --clr-header-dark: #5a3410;
  --clr-btn-yellow: #fded03;
  --clr-btn-yellow-hover: #e0d400;
  --clr-btn-green: #1c9221;
  --clr-btn-green-hover: #157a1a;
  --clr-bg: #8063b7;
  --clr-bg-dark: #6b50a3;
  --clr-bg-card: #6a52a0;
  --clr-bg-card2: #5c4490;
  --clr-text: #f5f0ff;
  --clr-text-muted: #d5c8f5;
  --clr-gold: #fded03;
  --clr-white: #ffffff;
  --clr-border: rgba(253,237,3,0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --ff-heading: 'Bebas Neue', sans-serif;
  --ff-body: 'Open Sans', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.28);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); background-color: var(--clr-bg); color: var(--clr-text); line-height: 1.6; overflow-x: hidden; }

a { color: var(--clr-gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--clr-btn-yellow-hover); }

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

h1, h2, h3, h4, h5, h6 { font-family: var(--ff-heading); letter-spacing: .04em; line-height: 1.15; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 16px; }

.box { border-radius: var(--radius); }

.site-header { background: var(--clr-header); box-shadow: 0 2px 12px rgba(0,0,0,.35); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 10px;padding-bottom: 10px; flex-wrap: wrap; }
.header-logo img { height: 54px; width: auto; }
.header-logo { flex-shrink: 0; }

.header-nav { display: flex; align-items: center; gap: 4px; list-style: none; flex-wrap: wrap; }
.header-nav a { color: var(--clr-white); font-size: .85rem; font-weight: 600; padding: 6px 10px; border-radius: 6px; display: flex; align-items: center; gap: 5px; transition: background .2s, color .2s; white-space: nowrap; }
.header-nav a:hover { background: rgba(255,255,255,.12); color: var(--clr-gold); }
.header-nav svg { width: 15px; height: 15px; flex-shrink: 0; }

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

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-family: var(--ff-heading); letter-spacing: .06em; font-size: 1rem; padding: 9px 20px; border-radius: var(--radius-sm); border: none; cursor: pointer; text-decoration: none; transition: transform .15s, box-shadow .15s, background .2s, filter .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.btn:active { transform: translateY(0); }

.btn--yellow { background: var(--clr-btn-yellow); color: #1a1000; }
.btn--yellow:hover { background: var(--clr-btn-yellow-hover); color: #1a1000; }
.btn--green { background: var(--clr-btn-green); color: var(--clr-white); }
.btn--green:hover { background: var(--clr-btn-green-hover); color: var(--clr-white); }
.btn--lg { font-size: 1.15rem; padding: 13px 32px; }
.btn--sm { font-size: .85rem; padding: 7px 14px; }
.btn--outline { background: transparent; border: 2px solid var(--clr-gold); color: var(--clr-gold); }
.btn--outline:hover { background: var(--clr-gold); color: #1a1000; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--clr-white); border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-section { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; background: #2a1050; }
.hero-bg { position: absolute; inset: 0; background-image: url('/gates-of-olympus-hero.avif'); background-size: cover; background-position: center; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(32,8,72,.82) 0%, rgba(32,8,72,.45) 60%, rgba(32,8,72,.1) 100%); }
.hero-content { position: relative; z-index: 1; padding: 60px 0; max-width: 560px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(253,237,3,.15); border: 1px solid rgba(253,237,3,.4); border-radius: 20px; padding: 4px 14px; font-size: .8rem; font-weight: 700; color: var(--clr-gold); margin-bottom: 16px; letter-spacing: .06em; }
.hero-title { font-family: var(--ff-heading); font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--clr-white); text-shadow: 0 2px 16px rgba(0,0,0,.6); margin-bottom: 12px; }
.hero-title span { color: var(--clr-gold); }
.hero-sub { font-size: 1.05rem; color: var(--clr-text-muted); margin-bottom: 24px; max-width: 460px; line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-rating { display: flex; align-items: center; gap: 10px; }
.hero-stars { color: var(--clr-gold); font-size: 1.15rem; letter-spacing: 2px; }
.hero-rating-text { font-size: .88rem; color: var(--clr-text-muted); }
.hero-rating-text strong { color: var(--clr-white); }

.section { padding: 56px 0; }
.section-title { font-family: var(--ff-heading); font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--clr-gold); margin-bottom: 8px; }
.section-sub { color: var(--clr-text-muted); font-size: .95rem; margin-bottom: 32px; }

.game-details-wrap { display: flex; gap: 28px; align-items: flex-start; flex-wrap: wrap; }
.game-demo-col { flex: 1 1 340px; max-width: 460px; }
.game-table-col { flex: 1 1 340px; }
.demo-frame-wrap { position: relative; border-radius: var(--radius); overflow: hidden; background: #1a0840; box-shadow: var(--shadow); border: 2px solid var(--clr-border); aspect-ratio: 3/2; }
.demo-frame-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.demo-play-btn { display: block; margin: 14px auto 0; }

.game-table { width: 100%; border-collapse: collapse; background: var(--clr-bg-card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.game-table tr:not(:last-child) td { border-bottom: 1px solid rgba(255,255,255,.08); }
.game-table tr:nth-child(even) td { background: rgba(0,0,0,.08); }
.game-table td { padding: 9px 14px; font-size: .88rem; line-height: 1.4; vertical-align: middle; }
.game-table td:first-child { color: var(--clr-text-muted); font-weight: 600; white-space: nowrap; min-width: 170px; }
.game-table td:first-child .cell-inner { display: inline-flex; align-items: center; gap: 7px; }
.game-table td:last-child { color: var(--clr-white); font-weight: 600; }
.game-table svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--clr-gold); }
.table-scroll { overflow-x: auto; border-radius: var(--radius); }

.advantages-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.adv-card { flex: 1 1 200px; background: var(--clr-bg-card); border-radius: var(--radius); padding: 22px 18px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; border: 1px solid var(--clr-border); box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.adv-icon { width: 44px; height: 44px; background: rgba(253,237,3,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.adv-icon svg { width: 24px; height: 24px; color: var(--clr-gold); }
.adv-title { font-family: var(--ff-heading); font-size: 1.05rem; color: var(--clr-white); letter-spacing: .04em; }
.adv-desc { font-size: .83rem; color: var(--clr-text-muted); line-height: 1.5; }

.demo-section-inner { background: var(--clr-bg-card); border-radius: var(--radius); padding: 32px 24px; border: 1px solid var(--clr-border); box-shadow: var(--shadow); }
.demo-full-frame { border-radius: var(--radius-sm); overflow: hidden; background: #1a0840; border: 2px solid var(--clr-border); aspect-ratio: 16/9; }
.demo-full-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.demo-cta-row { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 20px; flex-wrap: wrap; }

.strategies-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.strategy-card { flex: 1 1 280px; background: var(--clr-bg-card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--clr-border); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.strategy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.strategy-img { height: 180px; object-fit: cover; width: 100%; }
.strategy-body { padding: 20px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.strategy-tag { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--clr-gold); background: rgba(253,237,3,.1); padding: 3px 9px; border-radius: 4px; display: inline-block; width: fit-content; }
.strategy-name { font-family: var(--ff-heading); font-size: 1.25rem; color: var(--clr-white); letter-spacing: .04em; }
.strategy-desc { font-size: .84rem; color: var(--clr-text-muted); line-height: 1.55; flex: 1; }
.strategy-btn { margin-top: 10px; width: 100%; text-align: center; }

.content-review { background: var(--clr-bg-card); border-radius: var(--radius); padding: 36px 32px; border: 1px solid var(--clr-border); box-shadow: var(--shadow-sm); }
.content-review h2 { font-family: var(--ff-heading); font-size: 1.8rem; color: var(--clr-gold); margin-bottom: 14px; }
.content-review h3 { font-family: var(--ff-heading); font-size: 1.35rem; color: var(--clr-white); margin: 20px 0 8px; }
.content-review h4 { font-family: var(--ff-heading); font-size: 1.1rem; color: var(--clr-text-muted); margin: 16px 0 6px; }
.content-review p { font-size: .95rem; color: var(--clr-text-muted); line-height: 1.75; margin-bottom: 12px; }
.content-review ul, .content-review ol { padding-left: 22px; margin-bottom: 14px; }
.content-review li { font-size: .93rem; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 5px; }
.content-review ul li::marker { color: var(--clr-gold); }
.content-review ol li::marker { color: var(--clr-gold); font-weight: 700; }
.content-review a { color: var(--clr-gold); text-decoration: underline; }
.content-review strong { color: var(--clr-white); }
.content-review em { color: var(--clr-text-muted); font-style: italic; }
.content-review table { width: auto; min-width: 300px; margin: 18px auto; border-collapse: collapse; background: var(--clr-bg-card2); border-radius: var(--radius-sm); overflow: hidden; }
.content-review table th { background: rgba(253,237,3,.15); color: var(--clr-gold); padding: 10px 16px; font-family: var(--ff-heading); letter-spacing: .05em; text-align: left; }
.content-review table td { padding: 9px 16px; border-bottom: 1px solid rgba(255,255,255,.07); color: var(--clr-text-muted); font-size: .9rem; text-align: left; }
.content-review blockquote { border-left: 3px solid var(--clr-gold); padding: 10px 18px; margin: 16px 0; background: rgba(253,237,3,.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--clr-text-muted); }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--clr-bg-card); border-radius: var(--radius-sm); border: 1px solid var(--clr-border); overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; cursor: pointer; font-weight: 700; font-size: .97rem; color: var(--clr-white); user-select: none; transition: background .2s; }
.faq-question:hover { background: rgba(253,237,3,.06); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: rgba(253,237,3,.15); display: flex; align-items: center; justify-content: center; transition: transform .3s; }
.faq-icon svg { width: 12px; height: 12px; color: var(--clr-gold); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 20px 16px; font-size: .9rem; color: var(--clr-text-muted); line-height: 1.7; border-top: 1px solid rgba(255,255,255,.05); }
.faq-answer p { margin-top: 12px; }
.faq-item.open .faq-answer { display: block; }

.author-card { background: var(--clr-bg-card); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--clr-border); box-shadow: var(--shadow-sm); display: flex; gap: 24px; flex-wrap: wrap; }
.author-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--clr-gold); flex-shrink: 0; }
.author-info { flex: 1 1 260px; }
.author-name { font-family: var(--ff-heading); font-size: 1.5rem; color: var(--clr-white); margin-bottom: 2px; }
.author-role { font-size: .85rem; color: var(--clr-gold); font-weight: 700; margin-bottom: 8px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 10px; }
.author-meta-item { font-size: .82rem; color: var(--clr-text-muted); display: flex; align-items: center; gap: 5px; }
.author-meta-item svg { width: 14px; height: 14px; color: var(--clr-gold); }
.author-bio { font-size: .88rem; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 12px; }
.author-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.author-social-link { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 700; color: var(--clr-gold); border: 1px solid rgba(253,237,3,.3); border-radius: 6px; padding: 5px 12px; transition: background .2s; }
.author-social-link:hover { background: rgba(253,237,3,.1); }
.author-dates { font-size: .78rem; color: rgba(213,200,245,.55); margin-top: 10px; }
.author-dates span { margin-right: 14px; }

.site-footer { background: var(--clr-header); margin-top: auto; }
.footer-inner { padding: 40px 0 20px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-start; margin-bottom: 28px; }
.footer-logo-col { flex: 0 0 auto; }
.footer-logo { height: 54px; width: auto; }
.footer-nav-col { flex: 1 1 180px; }
.footer-logo-col-link {display: block;width: fit-content;}
.footer-nav-title { font-family: var(--ff-heading); font-size: 1rem; color: var(--clr-gold); margin-bottom: 10px; letter-spacing: .05em; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.footer-nav a { color: rgba(255,255,255,.8); font-size: .85rem; transition: color .2s; }
.footer-nav a:hover { color: var(--clr-gold); }
.footer-trust { flex: 1 1 260px; }
.footer-trust-grid { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.trust-badge { background: rgba(255,255,255,.1); border-radius: 8px; padding: 6px 12px; font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.trust-badge svg { width: 14px; height: 14px; color: var(--clr-gold); flex-shrink: 0; }
.footer-payments { margin-bottom: 20px; }
.footer-payments-title { font-family: var(--ff-heading); color: var(--clr-gold); font-size: .95rem; margin-bottom: 10px; letter-spacing: .05em; }
.payments-grid { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pay-badge { background: rgba(255,255,255,.12); border-radius: 6px; padding: 5px 13px; font-size: .78rem; font-weight: 700; color: var(--clr-white); }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.social-link:hover { background: var(--clr-gold); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; color: var(--clr-white); }
.social-link:hover svg { color: #1a1000; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 16px 0; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.footer-legal { font-size: .75rem; color: rgba(255,255,255,.4); max-width: 720px; line-height: 1.55; }
.footer-flags { display: flex; align-items: center; gap: 8px; }
.flag-au {height: 20px;width: auto;}
.age-badge { background: var(--clr-btn-green); color: #fff; font-weight: 900; font-size: .82rem; border-radius: 6px; padding: 3px 9px; }
.provider-logo { height: 28px; width: auto; filter: brightness(0) invert(.9); }
.provider-logo-link { display: inline-flex; align-items: center; }

.bonus-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: linear-gradient(90deg, #5a3410 0%, #704319 100%); padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 -3px 18px rgba(0,0,0,.35); flex-wrap: wrap; }
.widget-text { color: var(--clr-white); font-size: .9rem; font-weight: 700; }
.widget-text span { color: var(--clr-gold); }
.widget-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.5); font-size: 1.2rem; padding: 4px 8px; line-height: 1; transition: color .2s; }
.widget-close:hover { color: var(--clr-white); }

.info-content { background: var(--clr-bg-card); border-radius: var(--radius); padding: 36px 32px; border: 1px solid var(--clr-border); margin: 36px 0; }
.info-content h1, .info-content h2, .info-content h3 { font-family: var(--ff-heading); color: var(--clr-gold); margin-bottom: 10px; }
.info-content p { color: var(--clr-text-muted); line-height: 1.7; margin-bottom: 12px; font-size: .95rem; }
.info-content ul, .info-content ol { padding-left: 22px; margin-bottom: 14px; }
.info-content li { color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 5px; font-size: .92rem; }
.info-content a { color: var(--clr-gold); }
.info-content strong { color: var(--clr-white); }

.breadcrumb { padding: 12px 0; }
.breadcrumb-list { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; }
.breadcrumb-list li { font-size: .82rem; color: var(--clr-text-muted); display: flex; align-items: center; gap: 6px; }
.breadcrumb-list li::after { content: '/'; color: rgba(213,200,245,.3); }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list a { color: var(--clr-gold); }

@keyframes fadeInUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse-border { 0%,100% { box-shadow: 0 0 0 0 rgba(253,237,3,.4); } 50% { box-shadow: 0 0 0 8px rgba(253,237,3,.0); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }

.animate-fade { animation: fadeInUp .55s ease both; }
.btn--green.pulse { animation: pulse-border 2.2s infinite; }
.float { animation: float 3s ease-in-out infinite; }

.btn--yellow.shimmer-btn { background: linear-gradient(90deg, var(--clr-btn-yellow) 0%, #fff8a0 40%, var(--clr-btn-yellow) 80%); background-size: 200% auto; animation: shimmer 2.4s linear infinite; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.content__table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:16px 0;border-radius:8px;}
.content table{width:100%;min-width:500px;border-collapse:collapse;margin:0;font-size:.9rem;}
.wp-block-group, .wp-block-column, .entry-content, .elementor-widget-wrap, .elementor-container { display: revert; }
.wpcf7-form, .wpforms-form { display: revert; }
.yoast-seo-breadcrumbs { display: revert; }

@media (max-width: 900px) {
  .header-nav-wrap { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(32,8,72,.97); z-index: 9998; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; transform: translateX(-100%); transition: transform .35s ease; }
  .header-nav-wrap.open { transform: translateX(0); }
  .header-nav { flex-direction: column; gap: 6px; width: 100%; padding: 0 24px; }
  .header-nav a { font-size: 1.1rem; padding: 10px 18px; width: 100%; }
  .burger { display: flex; z-index: 9999; position: relative; }
  .header-inner { flex-wrap: nowrap; }
  .game-table td:first-child { min-width: auto; }
  .game-demo-col, .game-table-col { max-width: 100%; }
  .content-review { padding: 24px 16px; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-meta { justify-content: center; }
  .author-socials { justify-content: center; }
  .footer-top { flex-direction: column; gap: 20px; }
}

@media (max-width: 600px) {
  .hero-content { padding: 40px 0; }
  .hero-title { font-size: 2.2rem; }
  .section { padding: 36px 0; }
  .section-title { font-size: 1.6rem; }
  .adv-card { flex: 1 1 100%; }
  .strategy-card { flex: 1 1 100%; }
  .bonus-widget { flex-direction: column; align-items: flex-start; gap: 8px; }
  .info-content { padding: 20px 14px; }
}
@media (max-width: 375px) {
.header-btns .btn--green{display: none;}
}