:root{
  --bg:#ffffff;
  --bg-soft:#fafaf7;
  --bg-cream:#f8f6f0;
  --ink:#1a1a1a;
  --ink-soft:#3a3a3a;
  --muted:#6b6b6b;
  --line:#e8e6df;
  --gold:#c9a14a;
  --gold-deep:#a8842f;
  --gold-soft:#e8d5a3;
  --gold-light:#f5ecd4;
  --glass:rgba(255,255,255,.65);
  --glass-border:rgba(201,161,74,.25);
  --shadow-sm:0 2px 12px rgba(20,20,20,.04);
  --shadow:0 8px 32px rgba(20,20,20,.08);
  --shadow-gold:0 8px 24px rgba(201,161,74,.25);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'DM Sans',sans-serif;
  font-size:16.5px;
  line-height:1.7;
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:18px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.logo img{
  height:60px;
  width:auto;
  display:block;
}
.nav-mini{
  display:flex;
  gap:24px;
  font-size:14px;
  color:var(--muted);
}
.nav-mini a{
  color:var(--muted);
  text-decoration:none;
  transition:color .2s;
}
.nav-mini a:hover{color:var(--gold-deep)}
@media(max-width:720px){
  .nav-mini{display:none}
}

/* HERO */
.hero{
  position:relative;
  padding:80px 28px 100px;
  background-image:
    linear-gradient(180deg,rgba(255,253,247,.88) 0%,rgba(255,255,255,.95) 60%,#fff 100%),
    url('https://goldbets-hu.org/image/banner.webp');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  top:-200px;
  right:-200px;
  width:600px;
  height:600px;
  background:radial-gradient(circle,rgba(201,161,74,.08) 0%,transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  bottom:-300px;
  left:-200px;
  width:500px;
  height:500px;
  background:radial-gradient(circle,rgba(232,213,163,.12) 0%,transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.hero-inner{
  max-width:1100px;
  margin:0 auto;
  position:relative;
  z-index:1;
}
.hero-eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--gold-deep);
  font-weight:600;
  margin-bottom:22px;
  padding-bottom:8px;
  border-bottom:1px solid var(--gold-soft);
}
.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(34px,5.5vw,58px);
  line-height:1.1;
  font-weight:600;
  letter-spacing:-.5px;
  color:var(--ink);
  margin-bottom:28px;
  max-width:850px;
}
.hero h1 em{
  font-style:italic;
  color:var(--gold-deep);
}
.hero-features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:48px;
  max-width:900px;
}
.hero-feature{
  background:var(--glass);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border:1px solid var(--glass-border);
  border-radius:14px;
  padding:24px 22px;
  box-shadow:var(--shadow-sm);
  transition:transform .3s ease,box-shadow .3s ease;
}
.hero-feature:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.hero-feature-icon{
  width:38px;
  height:38px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--gold-light) 0%,var(--gold-soft) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  font-family:'Cormorant Garamond',serif;
  font-weight:700;
  color:var(--gold-deep);
  font-size:18px;
}
.hero-feature-title{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;
  font-weight:600;
  color:var(--ink);
  margin-bottom:6px;
}
.hero-feature-text{
  font-size:14px;
  color:var(--muted);
  line-height:1.5;
}
@media(max-width:720px){
  .hero{padding:60px 24px 70px}
  .hero-features{grid-template-columns:1fr;gap:14px;margin-top:36px}
}

/* CTA BUTTON */
.cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 36px;
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-deep) 100%);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  letter-spacing:.4px;
  border-radius:50px;
  box-shadow:var(--shadow-gold);
  transition:all .3s ease;
  border:none;
  cursor:pointer;
}
.cta:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(201,161,74,.4);
}
.cta-row{
  display:flex;
  justify-content:center;
  margin:50px 0 30px;
}
.cta-arrow{font-size:18px;line-height:1;transition:transform .3s}
.cta:hover .cta-arrow{transform:translateX(4px)}

/* FIXED CTA */
.cta-fixed{
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:99;
  padding:14px 26px;
  font-size:14px;
  box-shadow:0 8px 28px rgba(201,161,74,.45);
}
.cta-fixed::before{
  content:"";
  position:absolute;
  inset:-3px;
  border-radius:50px;
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-deep) 100%);
  z-index:-1;
  opacity:.3;
  animation:pulse 2.5s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{transform:scale(1);opacity:.3}
  50%{transform:scale(1.08);opacity:0}
}
@media(max-width:480px){
  .cta-fixed{bottom:16px;right:16px;padding:12px 20px;font-size:13px}
}

/* ARTICLE */
.article{
  max-width:820px;
  margin:0 auto;
  padding:60px 28px 80px;
  position:relative;
}
.article p{
  margin-bottom:22px;
  color:var(--ink-soft);
  font-size:16.5px;
  line-height:1.78;
}
.article h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(28px,4vw,40px);
  font-weight:600;
  line-height:1.2;
  letter-spacing:-.3px;
  color:var(--ink);
  margin:64px 0 24px;
  padding-bottom:14px;
  border-bottom:1px solid var(--gold-soft);
  position:relative;
}
.article h2::after{
  content:"";
  position:absolute;
  bottom:-1px;
  left:0;
  width:60px;
  height:2px;
  background:var(--gold);
}
.article h3{
  font-family:'Cormorant Garamond',serif;
  font-size:24px;
  font-weight:600;
  color:var(--ink);
  margin:40px 0 16px;
  position:relative;
  padding-left:22px;
}
.article h3::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:8px;
  height:8px;
  background:var(--gold);
  border-radius:50%;
  box-shadow:0 0 0 4px rgba(201,161,74,.15);
}
.article strong{
  font-weight:600;
  color:var(--ink);
}
.article em{
  display:block;
  font-style:italic;
  font-family:'Cormorant Garamond',serif;
  font-size:18px;
  line-height:1.6;
  color:var(--ink-soft);
  padding:18px 24px;
  margin:24px 0;
  border-left:3px solid var(--gold);
  background:linear-gradient(90deg,var(--gold-light) 0%,transparent 100%);
  border-radius:0 8px 8px 0;
}
.article img{
  width:100%;
  height:auto;
  border-radius:16px;
  margin:32px 0;
  box-shadow:var(--shadow);
  display:block;
}
.article ol.steps{
  margin:0 0 28px;
  padding-left:0;
  counter-reset:steps-counter;
  list-style:none;
}
.article ol.steps li{
  counter-increment:steps-counter;
  position:relative;
  padding:10px 0 10px 42px;
  color:var(--ink-soft);
  font-size:16.5px;
  line-height:1.6;
  border-bottom:1px solid var(--line);
}
.article ol.steps li:last-child{border-bottom:none}
.article ol.steps li::before{
  content:counter(steps-counter);
  position:absolute;
  left:0;
  top:8px;
  width:26px;
  height:26px;
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-deep) 100%);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:700;
}

/* TABLES */
.table-wrap{
  overflow-x:auto;
  margin:28px 0;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--bg-soft);
}
table{
  width:100%;
  border-collapse:collapse;
  font-size:14.5px;
}
thead{
  background:linear-gradient(135deg,var(--gold-light) 0%,var(--gold-soft) 100%);
}
th{
  text-align:left;
  padding:14px 16px;
  font-weight:600;
  color:var(--ink);
  font-size:13.5px;
  letter-spacing:.3px;
  border-bottom:1px solid var(--gold-soft);
}
td{
  padding:12px 16px;
  border-bottom:1px solid var(--line);
  color:var(--ink-soft);
}
tbody tr:last-child td{border-bottom:none}
tbody tr:hover{background:rgba(245,236,212,.4)}

/* FAQ */
.faq{margin-top:24px}
.faq-item{
  padding:22px 24px;
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:12px;
  margin-bottom:12px;
  transition:border-color .2s,transform .2s;
}
.faq-item:hover{
  border-color:var(--gold-soft);
  transform:translateX(2px);
}
.faq-q{
  font-family:'Cormorant Garamond',serif;
  font-size:19px;
  font-weight:600;
  color:var(--ink);
  margin-bottom:8px;
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.faq-q::before{
  content:"Q";
  flex-shrink:0;
  width:24px;
  height:24px;
  background:var(--gold);
  color:#fff;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:700;
  font-family:'DM Sans',sans-serif;
  margin-top:3px;
}
.faq-a{
  font-size:15px;
  color:var(--ink-soft);
  line-height:1.65;
  padding-left:36px;
}

/* IMAGE CAPTION */
.img-caption{
  font-size:13px;
  color:var(--muted);
  text-align:center;
  font-style:italic;
  margin-top:-20px;
  margin-bottom:32px;
  padding:0 16px;
}

/* FLOATING CARDS — DECORATIVE */
.floating-card{
  position:absolute;
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid var(--glass-border);
  border-radius:14px;
  padding:16px 20px;
  box-shadow:var(--shadow);
  z-index:5;
  pointer-events:none;
  display:flex;
  align-items:center;
  gap:14px;
  animation:float 6s ease-in-out infinite;
}
.floating-card-num{
  font-family:'Cormorant Garamond',serif;
  font-size:28px;
  font-weight:700;
  color:var(--gold-deep);
  line-height:1;
}
.floating-card-label{
  font-size:12px;
  color:var(--ink-soft);
  text-transform:uppercase;
  letter-spacing:1.2px;
  font-weight:500;
}
.fc-1{top:140px;right:5%;animation-delay:0s}
.fc-2{top:560px;left:3%;animation-delay:2s}
.fc-3{top:1400px;right:4%;animation-delay:4s}
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}
@media(max-width:1100px){
  .floating-card{display:none}
}

/* TOC */
.toc{
  background:var(--bg-cream);
  border:1px solid var(--gold-soft);
  border-radius:16px;
  padding:28px 32px;
  margin:40px 0 50px;
}
.toc-title{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;
  font-weight:600;
  color:var(--ink);
  margin-bottom:16px;
  display:flex;
  align-items:center;
  gap:10px;
}
.toc-title::before{
  content:"§";
  color:var(--gold-deep);
  font-size:26px;
}
.toc ol{
  list-style:none;
  counter-reset:toc-counter;
  columns:2;
  column-gap:32px;
}
.toc li{
  counter-increment:toc-counter;
  padding:6px 0;
  font-size:14.5px;
  break-inside:avoid;
}
.toc li::before{
  content:counter(toc-counter,decimal-leading-zero);
  color:var(--gold-deep);
  font-weight:600;
  margin-right:10px;
  font-size:12px;
}
.toc a{
  color:var(--ink-soft);
  text-decoration:none;
  transition:color .2s;
}
.toc a:hover{color:var(--gold-deep)}
@media(max-width:600px){
  .toc ol{columns:1}
  .toc{padding:22px 24px}
}

/* FOOTER */
.footer{
  background:var(--bg-cream);
  border-top:1px solid var(--gold-soft);
  padding:40px 28px;
  margin-top:60px;
}
.footer-inner{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}
.footer p{
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
  margin-bottom:12px;
}
.footer-warning{
  font-size:12px;
  color:var(--muted);
  font-style:italic;
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid var(--line);
}

/* RESPONSIVE TWEAKS */
@media(max-width:720px){
  .article{padding:40px 22px 60px}
  .article h2{font-size:28px;margin:48px 0 20px}
  .article h3{font-size:20px;margin:32px 0 14px}
  .article em{font-size:16px;padding:14px 18px}
  .toc ol{columns:1}
  .faq-q{font-size:17px}
  .faq-a{padding-left:0;margin-top:8px}
}
/* HEADER BUTTONS */
.header-btns{
  display:flex;
  gap:10px;
  align-items:center;
}
.btn-login,.btn-register{
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  padding:8px 18px;
  border-radius:6px;
  transition:all .2s;
  white-space:nowrap;
}
.btn-login{
  color:var(--gold-deep);
  border:1.5px solid var(--gold);
  background:transparent;
}
.btn-login:hover{background:var(--gold-light)}
.btn-register{
  color:#fff;
  background:var(--gold);
  border:1.5px solid var(--gold);
}
.btn-register:hover{background:var(--gold-deep);border-color:var(--gold-deep)}
@media(max-width:720px){
  .header-btns{gap:6px}
  .btn-login,.btn-register{font-size:12px;padding:6px 12px}
}
/* FOOTER NAV */
.footer-nav{
  display:flex;
  flex-wrap:wrap;
  gap:8px 20px;
  margin:12px 0;
  justify-content:center;
}
.footer-nav a{
  color:var(--muted);
  text-decoration:none;
  font-size:13px;
  transition:color .2s;
}
.footer-nav a:hover{color:var(--gold-deep)}