/* =========================
   CASINO THEME: VEGAS VELVET (RED + GOLD)
   Same HTML classes, no markup changes
========================= */

/* -------------------------
   VARIABLES
------------------------- */
:root{
  --bg:#12050a;                 /* deep velvet */
  --bg2:#1b0710;                /* surface */
  --text:#fff7e6;               /* warm white */
  --muted:#e6caa3;              /* warm muted */
  --line:rgba(247,201,72,.28);  /* gold-ish lines */

  --brand:#f7c948;              /* gold */
  --brand2:#ff3d7f;             /* neon pink accent */
  --link:#ffd36b;               /* gold link */

  --radius:18px;
  --shadow: 0 18px 60px rgba(0,0,0,.65);
  --shadow2: 0 12px 34px rgba(0,0,0,.55);

  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
}

/* -------------------------
   BASE
------------------------- */
*{ box-sizing:border-box }

html, body{
  margin:0;
  padding:0;
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.7;

  /* velvet + light blooms */
  background:
    radial-gradient(800px 320px at 15% 0%, rgba(247,201,72,.18), transparent 60%),
    radial-gradient(900px 420px at 80% 10%, rgba(255,61,127,.14), transparent 60%),
    radial-gradient(1200px 700px at 50% 110%, rgba(247,201,72,.10), transparent 65%),
    linear-gradient(180deg, #12050a 0%, #090106 100%);
}

a{
  color:var(--link);
  text-decoration:none;
}
a:hover{
  color:#fff0c2;
  text-decoration:underline;
  text-underline-offset:3px;
}

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

.container{
  width:min(1080px,92vw);
  margin:0 auto;
}

::selection{ background: rgba(247,201,72,.25); }

/* -------------------------
   HEADER (lux glass)
------------------------- */
header{
  position:sticky;
  top:0;
  z-index:10;
  background: rgba(18,5,10,.70);
  backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid rgba(247,201,72,.22);
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 0;
}

.brand{
  font-weight:900;
  letter-spacing:.3px;
}

.logo{
  font-weight:900;
  color:var(--text);
  text-decoration:none;
}
.logo:hover{ text-decoration:none; }

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Header buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;

  border:1px solid rgba(247,201,72,.30);
  background: rgba(255,255,255,.06);
  color:var(--text);

  font-weight:800;
  letter-spacing:.2px;

  box-shadow: 0 10px 26px rgba(0,0,0,.50);
  transition: transform .12s ease, filter .12s ease, background .12s ease, border-color .12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  background: rgba(255,255,255,.08);
  border-color: rgba(247,201,72,.45);
}

.btn.primary{
  border:none;
  color:#2a0b12;
  background:
    linear-gradient(180deg, #ffe7a1 0%, #f7c948 35%, #d79b1f 100%);
  box-shadow:
    0 16px 46px rgba(0,0,0,.60),
    0 0 0 1px rgba(255,255,255,.10) inset;
}

.btn.primary:hover{ filter: brightness(1.05); }

/* -------------------------
   MAIN
------------------------- */
main{
  padding:26px 0 56px;
}

/* -------------------------
   HERO (casino panel)
------------------------- */
.hero{
  display:flex;
  align-items:center;
  justify-content:center;

  max-height:420px;
  overflow:hidden;

  border-radius: var(--radius);
  border:1px solid rgba(247,201,72,.28);

  background:
    radial-gradient(900px 260px at 20% 0%, rgba(247,201,72,.16), transparent 60%),
    radial-gradient(900px 260px at 80% 20%, rgba(255,61,127,.12), transparent 60%),
    rgba(255,255,255,.04);

  box-shadow: var(--shadow);
  position:relative;
}

/* subtle inner shine */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.10) 22%, transparent 45%);
  opacity:.18;
  pointer-events:none;
}

.hero img{
  max-height:420px;
  width:auto;
  object-fit:contain;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.65));
}

/* -------------------------
   CONTENT
------------------------- */
.grid{
  display:block;
  margin-top:18px;
}

/* main content card = luxury panel */
.card{
  max-width:1200px;
  margin:0 auto;
  padding:22px;

  border-radius: var(--radius);
  border: 1px solid rgba(247,201,72,.26);

  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));

  box-shadow: var(--shadow2);
  position:relative;
}

/* top gold trim */
.card::before{
  content:"";
  position:absolute;
  left:18px; right:18px; top:0;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(247,201,72,.55), transparent);
  opacity:.9;
}

h1{
  margin:0 0 14px;
  font-size: clamp(26px, 3vw, 40px);
  line-height:1.1;
  letter-spacing:.3px;
}

h2{
  margin:26px 0 12px;
  font-size: 20px;
  line-height:1.25;
  letter-spacing:.2px;
}

h3{
  margin:18px 0 8px;
  font-size: 16px;
  line-height:1.3;
}

.muted{ color: rgba(230,202,163,.85); }

p{ margin:0 0 12px; }
ul, ol{ margin: 10px 0 14px 18px; }
li{ margin: 6px 0; }

/* -------------------------
   CTA BUTTON (big casino)
------------------------- */
.cta-button-container{
  display:flex;
  justify-content:center;
  margin:34px 0;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-width:260px;
  padding:16px 34px;

  font-size:16px;
  font-weight:950;
  letter-spacing:.4px;

  color:#2a0b12;
  text-decoration:none;

  border:none;
  border-radius:999px;

  /* gold bevel */
  background:
    linear-gradient(180deg, #fff2bf 0%, #f7c948 32%, #d79b1f 100%);

  box-shadow:
    0 22px 70px rgba(0,0,0,.70),
    0 0 0 1px rgba(255,255,255,.10) inset;

  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
  position:relative;
}

.cta-button::before{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  pointer-events:none;
  opacity:.75;
}

.cta-button:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 26px 86px rgba(0,0,0,.72),
    0 0 0 1px rgba(255,255,255,.12) inset;
}

.cta-button:active{ transform: translateY(1px); }

/* -------------------------
   READ MORE (gold note)
------------------------- */
.read-more-block{
  margin:24px 0;
  padding:14px 18px;

  font-size:14px;
  color: rgba(230,202,163,.92);

  background: rgba(255,255,255,.05);
  border: 1px solid rgba(247,201,72,.18);
  border-left: 4px solid var(--brand);
  border-radius: 12px;

  box-shadow: 0 12px 30px rgba(0,0,0,.45);
}

.read-more-block a{
  color: var(--text);
  font-weight:900;
  text-decoration: underline;
  text-underline-offset:3px;
}

.read-more-block a:hover{
  color: #fff0c2;
}

/* -------------------------
   FEED / NEWS (casino cards)
------------------------- */
.feed-block{ margin:42px 0 10px; }

.feed-title{
  margin:0 0 14px;
  font-size:20px;
}

.feed-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px;
}

.feed-item{
  border:1px solid rgba(247,201,72,.18);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.05);
  box-shadow: 0 16px 46px rgba(0,0,0,.55);
  transition: transform .12s ease, filter .12s ease, border-color .12s ease;
}

.feed-item:hover{
  transform: translateY(-2px);
  filter: brightness(1.04);
  border-color: rgba(247,201,72,.28);
}

.feed-item-image{
  width:100%;
  height:160px;
  object-fit:cover;
  background: rgba(255,255,255,.04);
  filter: saturate(1.06) contrast(1.03);
}

.feed-item-content{ padding:14px 16px 16px; }

.feed-item-title{
  margin:0 0 6px;
  font-size:15px;
  line-height:1.3;
}

.feed-item-title a{
  color: var(--text);
  font-weight:900;
  text-decoration:none;
}
.feed-item-title a:hover{ color: var(--brand); }

.feed-item-description{
  font-size:14px;
  color: rgba(230,202,163,.88);
  line-height:1.5;

  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* -------------------------
   FAQ (panel)
------------------------- */
.faq-block{ margin:42px 0; }

.faq-title{
  margin:0 0 16px;
  font-size:22px;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.faq-item{
  padding:16px 18px;
  border:1px solid rgba(247,201,72,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  box-shadow: 0 14px 34px rgba(0,0,0,.50);
}

.faq-question{
  font-weight:950;
  font-size:15px;
  margin-bottom:6px;
}

.faq-answer{
  font-size:14px;
  color: rgba(230,202,163,.90);
  line-height:1.6;
}

/* -------------------------
   COMMENTS / REVIEWS (panel)
------------------------- */
.comments-block{ margin:42px 0; }

.comments-title{
  margin:0 0 16px;
  font-size:22px;
}

.comment-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.comment-item{
  padding:16px 18px;
  border:1px solid rgba(247,201,72,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  box-shadow: 0 14px 34px rgba(0,0,0,.50);
}

.comment-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:6px;
}

.comment-name{
  font-weight:950;
  font-size:15px;
}

.comment-date{
  font-size:12px;
  color: rgba(230,202,163,.78);
  white-space:nowrap;
}

.comment-text{
  font-size:14px;
  line-height:1.6;
  color: var(--text);
}

/* -------------------------
   FOOTER
------------------------- */
.site-footer{
  margin-top:52px;
  padding:26px 0;
  border-top:1px solid rgba(247,201,72,.20);
  background: rgba(255,255,255,.03);
}

.footer-inner{
  width:min(900px,92vw);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  text-align:center;
}

.footer-nav{
  display:flex;
  justify-content:center;
  gap:14px 22px;
  flex-wrap:wrap;
}

.footer-nav a{
  font-size:14px;
  color: rgba(230,202,163,.88);
  text-decoration:none;
}

.footer-nav a:hover{
  color: var(--text);
  text-decoration:underline;
  text-underline-offset:3px;
}

.footer-copy{
  font-size:13px;
  color: rgba(230,202,163,.72);
}

/* -------------------------
   ACCESSIBILITY
------------------------- */
.skip-link{
  position:absolute;
  left:-999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.skip-link:focus{
  left:12px;
  top:12px;
  width:auto;
  height:auto;
  padding:10px 12px;
  border-radius:10px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(247,201,72,.22);
  color: var(--text);
  z-index:9999;
}

/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width:900px){
  .feed-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width:600px){
  main{ padding:22px 0 48px; }

  .hero{ max-height:280px; }
  .hero img{ max-height:280px; }

  .card{ padding:16px; }

  .cta-button{
    width:100%;
    max-width:340px;
    min-width:0;
    padding:14px 18px;
  }
}