/* Odin Fortune - lightweight, responsive, drop-in static site
   Palette inspired by the provided Odin Casino UI: deep navy + gold accents. */

:root{
  --bg0:#050f19;
  --bg1:#071a2b;
  --bg2:#0b2238;
  --card:#0c2f4f;
  --card2:#0d2f4d;
  --line:#123754;
  --text:#eaf3ff;
  --muted:#bcd3e6;
  --muted2:#8fb3d0;
  --gold1:#f6d77a;
  --gold2:#ffb347;
  --accent:#2a7bd6;
  --danger:#ff5a4c;
  --radius:22px;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --maxw:1160px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 65% 15%, rgba(42,123,214,.25), rgba(42,123,214,0) 60%),
    radial-gradient(900px 600px at 20% 40%, rgba(246,215,122,.10), rgba(246,215,122,0) 65%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}
.container{max-width:var(--maxw); margin:0 auto; padding:0 18px}
.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:18px; top:14px; width:auto; height:auto;
  background:var(--card); border:1px solid var(--line);
  padding:10px 12px; border-radius:12px; z-index:9999;
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(7,26,43,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(18,55,84,.8);
}
.header-row{
  display:flex; align-items:center; gap:14px;
  padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width:190px;
}
.brand img{height:40px; width:auto}
.nav{
  display:flex; align-items:center; gap:16px;
  margin-left:auto;
}
.nav a{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
  font-weight:700;
  letter-spacing:.2px;
}
.nav a:hover{background:rgba(12,47,79,.7); color:var(--text)}
.actions{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:40px; padding:0 14px;
  border-radius:14px;
  font-weight:900;
  border:1px solid var(--line);
  background:rgba(12,47,79,.75);
  color:var(--text);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}
.btn--gold{
  border:none;
  background: linear-gradient(90deg,var(--gold1),var(--gold2));
  color:#071a2b;
}
.btn--ghost{
  background:transparent;
}
.icon-btn{
  width:42px; height:42px; padding:0;
  border-radius:14px;
}
.hamburger{
  display:none;
}

/* Hero */
.hero{
  padding:22px 0 10px;
}
.hero-card{
  background: linear-gradient(180deg, rgba(12,47,79,.70), rgba(7,26,43,.55));
  border:1px solid rgba(18,55,84,.9);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-media{
  position:relative;
}
.hero-media img{width:100%}
.hero-badge{
  position:absolute; left:18px; top:18px;
  background:rgba(12,47,79,.85);
  border:1px solid rgba(18,55,84,.9);
  color:var(--muted);
  padding:8px 10px;
  border-radius:14px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.6px;
}
.hero-body{
  padding:18px 18px 22px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.hero h1{
  margin:0 0 8px;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height:1.05;
  letter-spacing:.2px;
}
.hero p{
  margin:0;
  color:var(--muted);
  font-weight:650;
  line-height:1.45;
}
.hero-cta{
  display:flex; gap:12px; align-items:center; justify-content:flex-end;
  flex-wrap:wrap;
}
.kpis{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:14px;
}
.kpi{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:16px;
  background: rgba(12,47,79,.55);
  border:1px solid rgba(18,55,84,.9);
}
.kpi strong{font-size:14px}
.kpi span{color:var(--muted2); font-weight:800; font-size:12px}

/* Layout sections */
main{padding-bottom:92px}
section{
  padding:34px 0;
}
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}
h2{
  margin:0;
  font-size: clamp(20px, 2.5vw, 30px);
  letter-spacing:.2px;
}
h3{
  margin:0 0 10px;
  font-size: clamp(16px, 2vw, 22px);
}
.lead{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.6;
  font-weight:650;
}

/* Feature grid */
.grid{
  display:grid; gap:14px;
}
.grid.features{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card{
  background: rgba(12,47,79,.62);
  border:1px solid rgba(18,55,84,.95);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  overflow:hidden;
}
.card-pad{padding:16px}
.feature{
  display:flex; gap:12px;
}
.feature img{width:48px; height:48px}
.feature h3{margin:2px 0 6px}
.feature p{margin:0; color:var(--muted); line-height:1.55; font-weight:650}

/* Games carousel (like Odin UI rows) */
.row-head{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.pills{
  display:flex; gap:10px; flex-wrap:wrap;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(12,47,79,.55);
  border:1px solid rgba(18,55,84,.95);
  color:var(--muted);
  font-weight:900;
  font-size:13px;
}
.pill b{color:var(--gold1)}
.carousel{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns: minmax(230px, 1fr);
  gap:14px;
  overflow:auto;
  padding-bottom:10px;
  scroll-snap-type:x mandatory;
}
.carousel::-webkit-scrollbar{height:10px}
.carousel::-webkit-scrollbar-thumb{background:rgba(18,55,84,.9); border-radius:999px}
.carousel::-webkit-scrollbar-track{background:rgba(12,47,79,.35); border-radius:999px}
.game{
  scroll-snap-align:start;
}
.game .thumb{border-bottom:1px solid rgba(18,55,84,.9)}
.game .thumb img{width:100%; height:auto}
.game .meta{padding:14px}
.tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(42,123,214,.16);
  border:1px solid rgba(42,123,214,.35);
  color:#cfe6ff;
  font-weight:900;
  font-size:12px;
}
.game h3{margin:10px 0 8px}
.game p{margin:0; color:var(--muted); line-height:1.55; font-weight:650}

/* Payments table */
.table-wrap{
  overflow:auto; /* mobile sideways scroll */
  border-radius: var(--radius);
  border:1px solid rgba(18,55,84,.95);
  background: rgba(12,47,79,.55);
}
table{
  width:100%;
  border-collapse:collapse;
  min-width: 760px;
}
th,td{
  padding:12px 12px;
  border-bottom:1px solid rgba(18,55,84,.55);
  text-align:left;
  vertical-align:top;
  font-weight:700;
  color:var(--muted);
}
th{
  color:var(--text);
  font-weight:900;
  background: rgba(7,26,43,.35);
  position:sticky; top:0;
}
tbody tr:hover td{background: rgba(7,26,43,.28); color:var(--text)}
.yes{
  color: #b8ffcf;
  font-weight:900;
}
.no{
  color: #ffc1bc;
  font-weight:900;
}

/* Support list */
.list{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.65;
  font-weight:650;
}
.list li{margin:6px 0}

/* Footer */
.site-footer{
  margin-top:22px;
  border-top:1px solid rgba(18,55,84,.8);
  background: rgba(7,26,43,.55);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  padding:22px 0;
}
.pay-grid{
  display:flex; gap:10px; flex-wrap:wrap;
}
.pay-grid img{
  width:110px; height:auto;
  opacity:.92;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.28));
}
.footer-links{
  display:grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
.footer-links a{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(18,55,84,.75);
  background: rgba(12,47,79,.35);
  color:var(--muted);
  font-weight:800;
}
.footer-links a:hover{background: rgba(12,47,79,.6); color:var(--text)}
.small{
  color:var(--muted2);
  font-weight:750;
  line-height:1.6;
}

/* Mobile menu overlay (Pin-Up structure) */
.overlay{
  position:fixed; inset:0;
  background: rgba(3,10,16,.72);
  backdrop-filter: blur(6px);
  display:none;
  z-index:60;
}
.overlay.open{display:block}
.drawer{
  position:absolute;
  left:0; top:0; bottom:0;
  width:min(420px, 92vw);
  background: linear-gradient(180deg, rgba(7,26,43,.98), rgba(5,15,25,.98));
  border-right:1px solid rgba(18,55,84,.9);
  padding:14px;
}
.drawer-head{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding:8px 0 12px;
  border-bottom:1px solid rgba(18,55,84,.65);
}
.drawer-nav{
  display:flex; flex-direction:column;
  padding-top:12px;
}
.drawer-nav a{
  padding:14px 12px;
  border-radius:14px;
  font-weight:900;
  color:var(--text);
}
.drawer-nav a:hover{background: rgba(12,47,79,.55)}
.drawer-nav .group{
  margin-top:6px;
  border-top:1px solid rgba(18,55,84,.45);
  padding-top:6px;
}

/* Sticky promo bar (Pin-Up-like) */
.promo{
  position:fixed;
  left:0; right:0; bottom:0;
  background: linear-gradient(90deg, rgba(246,215,122,.95), rgba(255,179,71,.95));
  color:#071a2b;
  border-top:1px solid rgba(0,0,0,.25);
  z-index:70;
  box-shadow: 0 -14px 40px rgba(0,0,0,.35);
}
.promo-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:10px 18px;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
}
.promo strong{font-weight:1000}
.promo .x{
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.25);
  background: rgba(255,255,255,.25);
  cursor:pointer;
  font-weight:1000;
}

/* Responsive */
@media (max-width: 980px){
  .hero-body{grid-template-columns: 1fr; }
  .hero-cta{justify-content:flex-start}
  .grid.features{grid-template-columns: repeat(2, minmax(0, 1fr));}
  .footer-grid{grid-template-columns: 1fr;}
}
@media (max-width: 760px){
  .nav{display:none}
  .hamburger{display:inline-flex}
  .brand{min-width:auto}
  .grid.features{grid-template-columns: 1fr;}
  .pill{font-size:12px}
}
