/* ================================
   STYLE 2 — DRAGON MINIMAL ONYX
   Casino Drakaris — style.css
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* --- VARIABLES --- */
:root {
  --bg:        #0f0f0f;
  --bg2:       #161616;
  --bg3:       #1c1c1c;
  --bd:        #252525;
  --ac:        #3ddc84;
  --ach:       #5ee89b;
  --tx:        #dcdcdc;
  --tx2:       #888;
  --tx3:       #444;
  --fh:        'Manrope', sans-serif;
  --fb:        'Inter', sans-serif;
  --r:         4px;
  --rl:        8px;
  --t:         0.18s ease;
}

/* --- BASE --- */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--tx);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fh);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
h1 { font-size: clamp(1.85rem, 4.5vw, 2.9rem); }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--ac); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--ach); }

ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.3rem; }
strong { font-weight: 600; color: #fff; }

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg2); }

/* --- SECTION TITLE (vertical accent bar) --- */
.section-title {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 2rem;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  min-height: 1.6em;
  background: var(--ac);
  flex-shrink: 0;
  border-radius: 2px;
  margin-top: .2em;
}

/* --- TABLE WRAPPER --- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.25rem 0;
  border-radius: var(--rl);
  border: 1px solid var(--bd);
}

/* --- TABLE BASE --- */
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.tbl th, .tbl td {
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--bd);
  text-align: left;
  vertical-align: top;
}
.tbl thead th {
  background: var(--bg2);
  color: var(--ac);
  font-family: var(--fh);
  font-weight: 600;
  white-space: nowrap;
  border-top: 2px solid var(--ac);
}
.tbl td {
  background: var(--bg3);
  color: var(--tx);
}
.tbl tr:last-child td, .tbl tr:last-child th { border-bottom: none; }
.tbl td:first-child { color: var(--tx2); font-weight: 500; }
.tbl .v1 { color: #fff; font-weight: 600; }
.tbl .va { color: var(--ac); font-weight: 700; }

/* VIP row border colours */
.vip-b td:first-child { border-left: 3px solid #cd7f32; }
.vip-s td:first-child { border-left: 3px solid #aaa; }
.vip-g td:first-child { border-left: 3px solid #f0c040; }
.vip-p td:first-child { border-left: 3px solid var(--ac); }

/* --- HEADER --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15,15,15,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bd);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 1rem;
}

/* --- LOGO --- */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-mark { color: var(--ac); font-size: .9rem; }
.logo-sub  { color: var(--ac); font-weight: 400; font-size: .75em; letter-spacing: .03em; }

/* --- MAIN NAV --- */
.nav {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
  height: 62px;
  flex: 1;
  justify-content: flex-end;
  gap: 0;
}
.nav > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav > li > a {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 .8rem;
  color: var(--tx2);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
  height: 100%;
  transition: color var(--t);
  white-space: nowrap;
}
.nav > li > a:hover { color: var(--ac); }
.nav > li.current > a { color: #fff; }

/* PROMO nav item (legacy, unused) */
.nav-promo > a { color: var(--ac); }

/* PROMO button in nav — next to Jetzt Spielen */
.nav-promo-btn { margin-right: .3rem; }
.nav-promo-btn > a {
  display: inline-flex !important;
  align-items: center;
  gap: .28rem;
  padding: .38rem 1.05rem !important;
  height: auto !important;
  background: rgba(61,220,132,.14) !important;
  border: 2px solid var(--ac) !important;
  border-radius: var(--r);
  color: var(--ac) !important;
  font-family: var(--fh);
  font-weight: 800 !important;
  font-size: .8rem !important;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background var(--t), color var(--t) !important;
}
.nav-promo-btn > a::before { content: '★ '; font-size: .68rem; }
.nav-promo-btn > a:hover {
  background: var(--ac) !important;
  color: #000 !important;
}

/* Dropdown arrow */
.has-dd > a::after {
  content: '▾';
  font-size: .62rem;
  opacity: .45;
  margin-left: 2px;
  transition: transform var(--t);
}
.has-dd:hover > a::after { transform: rotate(180deg); opacity: 1; }

/* Dropdown */
.dd {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-top: 2px solid var(--ac);
  border-radius: 0 0 var(--rl) var(--rl);
  padding: .4rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
}
.has-dd:hover .dd {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dd li a {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .58rem 1.2rem;
  color: var(--tx2);
  font-size: .82rem;
  transition: color var(--t), padding-left var(--t);
}
.dd li a::before { content: '›'; color: var(--ac); opacity: 0; transition: opacity var(--t); font-size: .95rem; }
.dd li a:hover { color: var(--ac); padding-left: 1.5rem; }
.dd li a:hover::before { opacity: 1; }

/* Header CTA */
.nav-cta { margin-left: .5rem; }
.nav-cta a { height: auto !important; padding: .42rem 1.1rem !important; color: #000 !important; }

/* Hamburger */
.hbg {
  display: none;
  background: none;
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: .32rem .55rem;
  cursor: pointer;
  color: var(--tx);
  font-size: 1.1rem;
  line-height: 1;
  transition: border-color var(--t), color var(--t);
}
.hbg:hover { border-color: var(--ac); color: var(--ac); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .56rem 1.3rem;
  border: 1px solid var(--ac);
  border-radius: var(--r);
  color: var(--ac);
  background: transparent;
  font-family: var(--fh);
  font-weight: 600;
  font-size: .875rem;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn:hover { background: var(--ac); color: #000; }

.btn-fill {
  background: var(--ac);
  color: #000;
}
.btn-fill:hover {
  background: var(--ach);
  border-color: var(--ach);
  color: #000;
}

.btn-lg {
  padding: .72rem 1.9rem;
  font-size: .95rem;
  border-radius: var(--rl);
}

/* --- BANNERS SECTION --- */
.banners-section {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--bd);
}
.banners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}
.banner-item {
  display: block;
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid var(--bd);
  transition: border-color var(--t), transform var(--t);
  line-height: 0;
  aspect-ratio: 1 / 1;
}
.banner-item:hover {
  border-color: rgba(61,220,132,.45);
  transform: translateY(-2px);
}
.banner-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .banners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .banners-grid { grid-template-columns: 1fr; } }

/* --- HERO --- */
.hero {
  padding: 5.5rem 0 4.5rem;
  border-bottom: 1px solid var(--bd);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(61,220,132,.07);
  border: 1px solid rgba(61,220,132,.22);
  border-radius: 2rem;
  padding: .27rem .85rem;
  font-size: .76rem;
  color: var(--ac);
  font-weight: 600;
  margin-bottom: 1.35rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero-lead {
  font-size: 1.03rem;
  color: var(--tx2);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; align-items: center; }
.hero-visual {
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  overflow: hidden;
  aspect-ratio: 16/11;
  background: var(--bg3);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- FEATURE LIST --- */
.feat-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.feat-list li {
  display: flex;
  gap: .8rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--bd);
  font-size: .9rem;
  color: var(--tx);
}
.feat-list li:last-child { border-bottom: none; }
.feat-list li::before { content: '▸'; color: var(--ac); flex-shrink: 0; margin-top: .12rem; }

/* --- CARDS GRID --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.icard {
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 1.55rem;
  transition: border-color var(--t), transform var(--t);
}
.icard:hover { border-color: rgba(61,220,132,.4); transform: translateY(-2px); }
.icard .ctag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ac);
  margin-bottom: .7rem;
}
.icard h3 { font-size: 1.02rem; margin-bottom: .45rem; }
.icard p { font-size: .875rem; color: var(--tx2); margin: 0; }

/* --- STEPS --- */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 1.4rem 0; }
.steps li {
  counter-increment: step;
  display: flex;
  gap: 1.05rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--bd);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  min-width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(61,220,132,.08);
  border: 1px solid rgba(61,220,132,.3);
  border-radius: var(--r);
  color: var(--ac);
  font-weight: 700;
  font-size: .78rem;
  font-family: var(--fh);
  flex-shrink: 0;
  margin-top: .15rem;
}
.steps li strong { display: block; font-size: .93rem; margin-bottom: .18rem; }
.steps li p, .steps li span { font-size: .875rem; color: var(--tx2); margin: 0; }

/* --- BONUS PLASHKA --- */
.bonus-plashka {
  position: relative;
  background: var(--bg3);
  border: 1px solid var(--ac);
  border-radius: var(--rl);
  padding: 2.75rem 2rem 2rem;
  text-align: center;
  margin: 2rem 0;
  overflow: hidden;
}
.bonus-plashka::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ac);
}
.bonus-plashka::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(61,220,132,.07) 0%, transparent 60%);
  pointer-events: none;
}
.bp-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(61,220,132,.1);
  border: 1px solid rgba(61,220,132,.3);
  border-radius: 2rem;
  padding: .28rem .9rem;
  color: var(--ac);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.bp-sub {
  font-family: var(--fb);
  font-size: .95rem;
  color: var(--tx2);
  margin-bottom: 1.5rem;
}
.bp-code {
  display: inline-block;
  font-family: var(--fh);
  font-weight: 800;
  font-size: clamp(2rem, 7vw, 3.6rem);
  color: var(--ac);
  letter-spacing: .14em;
  border: 2px dashed rgba(61,220,132,.5);
  padding: .5rem 2.5rem;
  border-radius: var(--rl);
  background: rgba(61,220,132,.04);
  margin-bottom: 1.75rem;
  user-select: all;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
}
.bp-code:hover { background: rgba(61,220,132,.09); border-color: var(--ac); }
.bp-disc {
  font-size: .76rem;
  color: var(--tx3);
  max-width: 520px;
  margin: 1.35rem auto 0;
  line-height: 1.55;
  border-top: 1px solid var(--bd);
  padding-top: .9rem;
}

/* --- FAQ --- */
.faq-item { border: 1px solid var(--bd); border-radius: var(--r); margin-bottom: .7rem; overflow: hidden; }
.faq-q {
  padding: 1rem 1.25rem;
  background: var(--bg3);
  font-family: var(--fh);
  font-weight: 600;
  font-size: .88rem;
  color: #fff;
  border-left: 3px solid var(--ac);
}
.faq-a {
  padding: .85rem 1.25rem .85rem 1.35rem;
  background: var(--bg2);
  font-size: .875rem;
  color: var(--tx2);
}
.faq-a p { margin-bottom: .4rem; }
.faq-a p:last-child { margin: 0; }

/* --- NOTICE --- */
.notice {
  background: rgba(61,220,132,.05);
  border: 1px solid rgba(61,220,132,.2);
  border-radius: var(--rl);
  padding: 1.1rem 1.4rem;
  font-size: .875rem;
  color: var(--tx2);
  margin: 1.25rem 0;
}
.notice strong { color: var(--ac); }

/* --- DISCLAIMER --- */
.disc {
  font-size: .76rem;
  color: var(--tx3);
  padding-top: .85rem;
  border-top: 1px solid var(--bd);
  margin-top: 1.25rem;
  line-height: 1.55;
}

/* --- BREADCRUMB --- */
.bc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .3rem;
  font-size: .76rem;
  color: var(--tx3);
  padding: .85rem 0;
}
.bc a { color: var(--tx2); }
.bc a:hover { color: var(--ac); }
.bc-sep { opacity: .35; }

/* --- SUB-CLUSTER CARDS --- */
.sub-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.sub-card {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 1.45rem;
  text-decoration: none;
  color: var(--tx);
  transition: border-color var(--t), transform var(--t);
}
.sub-card:hover { border-color: rgba(61,220,132,.5); transform: translateY(-2px); color: var(--tx); }
.sub-card-tag { font-size: .69rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ac); }
.sub-card h3 { font-size: 1.05rem; color: #fff; }
.sub-card p { font-size: .865rem; color: var(--tx2); margin: 0; flex: 1; }
.sub-card-arr { color: var(--ac); font-size: .82rem; margin-top: .4rem; }

/* --- CTA BOX --- */
.cta-box {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 2.25rem 2rem;
  text-align: center;
  margin-top: 2rem;
}
.cta-box h3 { margin-bottom: .7rem; }
.cta-box p { color: var(--tx2); font-size: .9rem; margin-bottom: 1.4rem; }

/* --- MOBILE BADGE --- */
.mob-badge {
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 1.4rem;
  display: flex;
  align-items: center;
  gap: .95rem;
  margin: 1.4rem 0;
}
.mob-badge-ic { font-size: 1.9rem; flex-shrink: 0; color: var(--ac); }
.mob-badge-tx h4 { color: var(--ac); margin-bottom: .22rem; font-size: .95rem; }
.mob-badge-tx p { font-size: .875rem; color: var(--tx2); margin: 0; }

/* --- VIP HIGHLIGHT --- */
.vip-hl {
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-left: 3px solid var(--ac);
  border-radius: var(--rl);
  padding: 1.4rem;
  margin: 1.4rem 0;
  display: flex;
  align-items: center;
  gap: .95rem;
}
.vip-hl-ic { font-size: 1.7rem; flex-shrink: 0; }
.vip-hl-tx h4 { color: var(--ac); margin-bottom: .25rem; font-size: .93rem; }
.vip-hl-tx p { font-size: .875rem; color: var(--tx2); margin: 0; }

/* --- HELP LIST --- */
.help-list { list-style: none; padding: 0; margin: 1rem 0; }
.help-list li {
  padding: .55rem 0;
  border-bottom: 1px solid var(--bd);
  font-size: .88rem;
  color: var(--tx2);
}
.help-list li:last-child { border-bottom: none; }
.help-list li strong { color: #fff; }
.help-list li a { color: var(--ac); }

/* --- FOOTER --- */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--bd);
  padding: 3.5rem 0 2rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { margin-bottom: .85rem; }
.footer-brand p { font-size: .82rem; color: var(--tx3); line-height: 1.5; }
.footer-col h4 {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--tx2);
  margin-bottom: .85rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: .42rem; }
.footer-col ul li a { font-size: .82rem; color: var(--tx3); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--ac); }
.footer-bottom {
  border-top: 1px solid var(--bd);
  padding-top: 1.4rem;
  text-align: center;
}
.footer-copy { font-size: .77rem; color: var(--tx3); margin-bottom: .55rem; }
.footer-disc { font-size: .73rem; color: var(--tx3); line-height: 1.5; opacity: .7; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  .hbg { display: block; }

  .nav {
    display: none;
    position: fixed;
    top: 62px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    height: auto;
    padding: 1rem 1.5rem 2rem;
    overflow-y: auto;
    border-top: 1px solid var(--bd);
    z-index: 999;
    gap: 0;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav.is-open { display: flex; }
  .nav > li { height: auto; width: 100%; flex-direction: column; align-items: flex-start; }
  .nav > li > a { height: auto; padding: .7rem 0; width: 100%; border-bottom: 1px solid var(--bd); font-size: .88rem; }
  .has-dd > a::after { display: none; }
  .dd {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    border: none; border-radius: 0;
    padding: 0 0 0 1rem;
    background: transparent;
    min-width: auto; width: 100%;
  }
  .dd li a { padding: .55rem 0; border-bottom: 1px solid var(--bd); color: var(--tx3); font-size: .85rem; }
  .dd li a:hover { padding-left: 0; color: var(--ac); }
  .nav-cta { margin-left: 0; padding: 1.1rem 0; width: 100%; }
  .nav-cta a { width: 100%; justify-content: center; padding: .65rem 1.3rem !important; color: #000 !important; }

  .section { padding: 3rem 0; }
  .hero { padding: 3.5rem 0 3rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .sub-cards { grid-template-columns: 1fr; }

  .bonus-plashka { padding: 2rem 1.2rem 1.5rem; }
  .bp-code { padding: .5rem 1.4rem; letter-spacing: .09em; }
}
