/* casinoonlinedineroreal.space — Dark mode, mobile-first, no frameworks */
:root{
  --bg:#0b1121;
  --bg2:#0f172a;
  --card: rgba(30, 41, 59, 0.45);
  --card-hover: rgba(30, 41, 59, 0.65);
  --text:#f1f5f9;
  --muted:#94a3b8;
  --muted2:#64748b;
  --primary: #22c55e;
  --secondary: #0ea5e9;
  --accent: #f59e0b;
  --border: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  --radius: 20px;
  --max: 1120px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(34,197,94,.14), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(14,165,233,.14), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height: 1.6;
}
a{color:inherit}
img{max-width:100%;height:auto}
.container{max-width:var(--max);margin:0 auto;padding:0 16px}
.skip{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip:focus{left:16px;top:16px;width:auto;height:auto;background:#fff;color:#000;padding:10px 12px;border-radius:10px;z-index:9999}
.header{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(15,23,42,.78);
  border-bottom:1px solid var(--border);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 0}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.brand img{width:38px;height:38px;border-radius:12px;box-shadow: 0 10px 26px rgba(0,0,0,.35)}
.brand .name{display:flex;flex-direction:column;line-height:1.1}
.brand .name b{font-size:14px;letter-spacing:.6px;text-transform:uppercase}
.brand .name span{font-size:12px;color:var(--muted2)}
.nav{display:flex;align-items:center;gap:12px}
.nav a{
  text-decoration:none;
  padding:10px 16px;
  border-radius:12px;
  color: var(--muted);
  font-weight:600;
  font-size:14px;
  transition: var(--transition);
}
.nav a:hover, .nav a.active{
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transform: translateY(-1px);
}
.cta{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 24px;border-radius:14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color:#0b1121;text-decoration:none;font-weight:700;
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
  border:0;
  transition: var(--transition);
  cursor: pointer;
}
.cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
  filter: brightness(1.1);
}
.cta.secondary{
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}
.cta.secondary:hover{
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--glass-border);
}

.btn-melbet {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-left: 15px;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-melbet:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
    color: white;
}
.burger{
  display:none; width:44px; height:44px; border-radius:14px;
  border:1px solid var(--border);
  background: rgba(248,250,252,.05);
  color: var(--text);
}
.burger svg{width:22px;height:22px}
.mobile-panel{
  display:none;
  border-top:1px solid var(--border);
  padding:10px 0 14px 0;
}
.mobile-panel a{display:block;padding:12px 10px;border-radius:14px;text-decoration:none;color:var(--muted);font-weight:750}
.mobile-panel a:hover, .mobile-panel a.active{background: rgba(248,250,252,.06); color: var(--text)}
.hero{padding:26px 0 10px}
.hero-card{
  position:relative;
  border:1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  background: radial-gradient(900px 380px at 20% 20%, rgba(34,197,94,.20), transparent 60%),
              radial-gradient(700px 340px at 85% 10%, rgba(14,165,233,.22), transparent 55%),
              rgba(30,41,59,.65);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-inner{padding:22px}
.kicker{
  display:inline-flex;gap:10px;align-items:center;
  padding:8px 10px;border-radius:999px;
  background: rgba(248,250,252,.06);
  border:1px solid var(--border);
  color: var(--muted);
  font-weight:700;font-size:12px;
}
.h1{margin:12px 0 10px;font-size:28px;line-height:1.18;letter-spacing:-.2px}
.lead{color:var(--muted);margin:0 0 14px}
.hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.badges{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}
.badge{
  font-size:12px;color:var(--muted);
  padding:8px 10px;border-radius:999px;
  background: rgba(15,23,42,.45);
  border:1px solid var(--border);
}
.grid{display:grid;gap:14px}
.grid-2{grid-template-columns:1fr}
.section{padding:18px 0}
.card{
  border:1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover{
  background: var(--card-hover);
  border-color: var(--glass-border);
  transform: translateY(-4px);
}
.card.pad{padding:24px}
.h2{font-size:20px;margin:0 0 8px}
.muted{color:var(--muted);margin:0}
.note{
  border-left:4px solid var(--blue);
  padding:12px 12px;
  background: rgba(14,165,233,.08);
  border-radius: 12px;
  color: var(--muted);
}
.table-wrap{overflow:auto;border-radius:16px;border:1px solid var(--border)}
table{border-collapse:collapse;width:100%;min-width:760px;background: rgba(15,23,42,.25)}
th,td{padding:12px 12px;border-bottom:1px solid rgba(248,250,252,.08);text-align:left;vertical-align:top}
th{color:var(--muted);font-size:12px;text-transform:uppercase;letter-spacing:.9px;background: rgba(15,23,42,.35)}
td .mini{display:block;color:var(--muted2);font-size:12px;margin-top:3px}
.pill{
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 10px;border-radius:999px;
  border:1px solid var(--border);
  background: rgba(248,250,252,.05);
  color: var(--muted);
  font-weight:800;font-size:12px;
}
.list{margin:10px 0 0 0;padding-left:18px;color:var(--muted)}
.list li{margin:6px 0}
.steps{display:grid;gap:10px;margin-top:12px}
.step{
  display:flex;gap:10px;align-items:flex-start;
  padding:12px;border-radius:16px;
  background: rgba(15,23,42,.35);
  border:1px solid rgba(248,250,252,.10);
}
.step b{display:block}
.step .n{
  width:34px;height:34px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background: linear-gradient(90deg, var(--green), var(--blue));
  color:#071018;font-weight:1000;
  flex:0 0 auto;
}
.faq details{
  border:1px solid rgba(248,250,252,.10);
  background: rgba(15,23,42,.35);
  border-radius: 16px;
  padding:12px 12px;
}
.faq details+details{margin-top:10px}
.faq summary{
  list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;
  gap:10px;font-weight:850;color:var(--text);
}
.faq summary::-webkit-details-marker{display:none}
.faq .a{margin:10px 0 0;color:var(--muted)}
.icon{
  width:22px;height:22px;border-radius:999px;
  border:1px solid var(--border);
  display:inline-flex;align-items:center;justify-content:center;
  background: rgba(248,250,252,.05);
  flex:0 0 auto;
}
.footer{
  margin-top:26px;
  border-top:1px solid var(--border);
  background: rgba(15,23,42,.65);
}
.footer-inner{padding:22px 0}
.footer-grid{display:grid;gap:14px}
.footer a{color:var(--muted);text-decoration:none}
.footer a:hover{color:var(--text)}
.small{font-size:12px;color:var(--muted2)}
.tac{text-align:center;}
.footer .links{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.footer .disclaimer{margin-top:10px;color:var(--muted);font-size:12px}
.kbd{
  padding:2px 6px;border-radius:8px;border:1px solid var(--border);
  background: rgba(248,250,252,.05);color:var(--muted);font-size:12px
}
.form{display:grid;gap:12px}
input,textarea,select{
  width:100%;
  background: rgba(15,23,42,.4);
  border:1px solid rgba(248,250,252,.12);
  color: var(--text);
  padding:12px 12px;border-radius:14px;
  outline:none;
}
textarea{min-height:140px;resize:vertical}
label{font-weight:800;font-size:13px;color:var(--muted)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:14px;
  border:1px solid var(--border);
  background: rgba(248,250,252,.06);
  color: var(--text);
  font-weight:900;
  cursor:pointer;
}
.btn:hover{background: rgba(248,250,252,.10)}
/* Cookie banner + modal */
.cookie-banner{
  position:fixed;left:12px;right:12px;bottom:12px;z-index:1000;
  background: rgba(15,23,42,.92);
  border:1px solid rgba(248,250,252,.14);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding:14px;
  display:none;
}
.cookie-banner .row{display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:space-between}
.cookie-banner p{margin:0;color:var(--muted);font-size:13px}
.cookie-banner .actions{display:flex;flex-wrap:wrap;gap:10px}
.cookie-modal{
  position:fixed;inset:0;z-index:1001;
  background: rgba(0,0,0,.55);
  display:none;
  padding:16px;
}
.cookie-modal .panel{
  max-width:740px;margin:40px auto;
  background: rgba(15,23,42,.96);
  border:1px solid rgba(248,250,252,.14);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.cookie-modal header{padding:14px 16px;border-bottom:1px solid rgba(248,250,252,.10);display:flex;justify-content:space-between;gap:10px;align-items:center}
.cookie-modal h3{margin:0;font-size:16px}
.cookie-modal .body{padding:14px 16px;color:var(--muted)}
.toggle{
  display:flex;gap:10px;align-items:flex-start;justify-content:space-between;
  padding:12px;border-radius:16px;border:1px solid rgba(248,250,252,.10);background: rgba(30,41,59,.45);
}
.toggle b{display:block;color:var(--text)}
.toggle small{display:block;color:var(--muted2);margin-top:2px}
.switch{display:flex;align-items:center;gap:10px}
.switch input{width:44px;height:24px;appearance:none;background: rgba(248,250,252,.14);border-radius:999px;position:relative;outline:none;border:1px solid rgba(248,250,252,.16);cursor:pointer}
.switch input:before{content:"";position:absolute;top:50%;left:3px;transform:translateY(-50%);width:18px;height:18px;border-radius:50%;background:#fff;transition:.2s}
.switch input:checked{background: linear-gradient(90deg, var(--green), var(--blue))}
.switch input:checked:before{left:22px}
.cookie-modal footer{padding:14px 16px;border-top:1px solid rgba(248,250,252,.10);display:flex;flex-wrap:wrap;gap:10px;justify-content:flex-end}
@media (min-width: 860px){
  .h1{font-size:40px}
  .grid-2{grid-template-columns: 1.15fr .85fr; align-items:start}
  .hero-inner{padding:28px}
  .footer-grid{grid-template-columns: 1.2fr .8fr .8fr}
  .footer .links{grid-template-columns: 1fr}
}
@media (max-width: 920px){
  .nav{display:none}
  .burger{display:inline-flex;align-items:center;justify-content:center}
  .mobile-panel.open{display:block}
}
