/* ============================================================
   FS-CASINO.PL – Neon Dark Theme
   Deep black background | Neon red glows | Cyan accent
   Distinct from fscasino.pl: no sidebar, neon effects,
   full-width layout, glowing card borders
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --red:          #e60000;
  --red-hover:    #ff3333;
  --red-glow:     rgba(230,0,0,0.45);
  --cyan:         #00c8dd;
  --cyan-dark:    #008fa0;
  --cyan-glow:    rgba(0,200,221,0.3);

  --bg-page:      #050508;
  --bg-card:      #0d0f1a;
  --bg-nested:    #141624;
  --bg-header:    #040609;
  --bg-footer:    #020305;

  --text:         #dde2f0;
  --text-muted:   #8a90aa;
  --text-head:    #ffffff;
  --text-link:    #00c8dd;

  --border:       #1a1e30;
  --border-cyan:  #00c8dd;

  --radius-sm:    4px;
  --radius-md:    10px;
  --radius-lg:    18px;
  --radius-xl:    28px;
  --transition:   0.2s ease;
  --max-w:        1140px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--bg-page);
  color: var(--text);
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--text-link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cyan); }
ul, ol { padding-left: 1.5rem; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { color: var(--text-head); line-height: 1.25; font-weight: 800; }
h1 { font-size: clamp(1.9rem,4.5vw,3rem); margin-bottom: 1.5rem; letter-spacing: -.5px; }
h2 { font-size: clamp(1.4rem,3vw,2rem); margin-bottom: 1rem; margin-top: 2.5rem; }
h3 { font-size: clamp(1.1rem,2.5vw,1.4rem); margin-bottom: .5rem; margin-top: 1.5rem; }
p  { margin-bottom: 1rem; }
li { margin-bottom: .3rem; }

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--cyan); color: #000;
  padding: .5rem 1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999; font-weight: 700; transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ── Header – darker, slimmer, neon bottom line ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border-cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem 1.25rem; max-width: var(--max-w); margin: 0 auto; gap: 1rem;
}
.site-logo img { height: 46px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav a {
  color: var(--text); font-weight: 600; font-size: .9rem;
  padding: .25rem .5rem; border-radius: var(--radius-sm);
  transition: color var(--transition), text-shadow var(--transition);
  letter-spacing: .3px;
}
.site-nav a:hover { color: var(--cyan); text-shadow: 0 0 8px var(--cyan-glow); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border-cyan);
  cursor: pointer; padding: .4rem .6rem; border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--cyan); border-radius: 1px; margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Buttons – neon glow style ── */
.btn {
  display: inline-block; padding: 12px 28px;
  border-radius: var(--radius-sm); font-weight: 800; font-size: .95rem;
  cursor: pointer; border: none; text-align: center;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none; white-space: nowrap; letter-spacing: .5px; text-transform: uppercase;
}
.btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 0 18px var(--red-glow), 0 4px 12px rgba(0,0,0,.5);
}
.btn-primary:hover {
  background: var(--red-hover); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 28px var(--red-glow), 0 6px 18px rgba(0,0,0,.6);
}
.btn-secondary {
  background: transparent; color: var(--cyan);
  border: 1.5px solid var(--cyan);
  box-shadow: 0 0 10px var(--cyan-glow);
}
.btn-secondary:hover {
  background: var(--cyan); color: #000;
  box-shadow: 0 0 20px var(--cyan-glow);
}
.btn-lg { padding: 15px 38px; font-size: 1rem; }
.btn-full { display: block; width: 100%; text-align: center; }

/* ── Breadcrumbs ── */
.breadcrumbs {
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: .5rem 0;
}
.breadcrumbs ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: .25rem;
  font-size: .875rem; align-items: center;
}
.breadcrumbs li { display: flex; align-items: center; color: var(--text-muted); margin-bottom: 0; }
.breadcrumbs li + li::before { content: '›'; margin-right: .25rem; }
.breadcrumbs a { color: var(--cyan); }
.breadcrumbs [aria-current="page"] { color: var(--text); font-weight: 600; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 540px;
  display: flex; align-items: center; justify-content: flex-start;
  overflow: hidden; background: var(--bg-page);
  padding-left: max(1.5rem, calc((100% - var(--max-w)) / 2 + 1.5rem));
  padding-right: 1.5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/Banner/freepik_ultradetailed-3d-render-b_2797286071.png');
  background-size: cover; background-position: center; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(5,5,8,.85) 0%, rgba(5,5,8,.55) 55%, rgba(0,200,221,.05) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; text-align: left;
  background: rgba(5,5,8,.82);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,200,221,.4);
  box-shadow: 0 0 40px rgba(0,200,221,.15), inset 0 0 30px rgba(0,0,0,.3);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  max-width: 580px; width: calc(100% - 2rem);
  margin: 2rem 0;
}
.hero-content h1 { color: #fff; text-shadow: 0 0 20px rgba(0,200,221,.3); margin-bottom: 1rem; }
.hero-tagline { font-size: clamp(1rem,2.5vw,1.15rem); color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.hero-bonus {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
  color: #000; font-size: clamp(1.2rem,3vw,1.5rem); font-weight: 900;
  padding: .5rem 1.5rem; border-radius: var(--radius-md);
  margin-bottom: 1.5rem; letter-spacing: .5px;
  box-shadow: 0 0 20px var(--cyan-glow);
}
.hero-buttons { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }

/* ── Neon section labels ── */
.section-label {
  display: inline-block;
  background: transparent; color: var(--cyan);
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; padding: 3px 12px;
  border: 1px solid var(--cyan); border-radius: var(--radius-sm);
  margin-bottom: .5rem;
  box-shadow: 0 0 8px var(--cyan-glow);
}
.section-divider {
  border: none; border-top: 1px solid var(--border); margin: 2rem 0;
}
.section-divider-neon {
  border: none; height: 1px; margin: 2rem 0;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

/* ── Popular Slots ── */
.slots-section { background: var(--bg-card); padding: 3rem 0; }
.slots-section .section-title {
  text-align: center; margin-bottom: 1.5rem;
  font-size: clamp(1.4rem,3vw,2rem);
}
.slots-section .section-title::after {
  content: ''; display: block; width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--red));
  margin: .5rem auto 0;
}
.slots-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: .75rem; }
.slot-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-nested); cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.slot-card:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 0 20px var(--cyan-glow), 0 0 40px rgba(0,0,0,.5);
  border-color: var(--cyan);
}
.slot-card img { width: 100%; height: auto; display: block; border-radius: var(--radius-md); }
.slot-card-overlay {
  position: absolute; inset: 0; background: rgba(5,5,8,.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.slot-card:hover .slot-card-overlay { opacity: 1; }
.slot-play-btn {
  background: var(--red); color: #fff; font-weight: 800;
  font-size: .85rem; padding: 9px 20px; border-radius: var(--radius-sm);
  text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 0 14px var(--red-glow);
}
.slots-scroll-wrapper {
  display: none; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem; scroll-snap-type: x mandatory; max-width: 100%;
  scrollbar-color: var(--cyan) var(--bg-nested); scrollbar-width: thin;
}
.slots-scroll-inner { display: flex; gap: .75rem; width: max-content; }
.slots-scroll-inner .slot-card { width: 200px; flex-shrink: 0; scroll-snap-align: start; }

/* ── Main content (full-width, no sidebar) ── */
.content-section { padding: 3rem 0; }

/* ── Neon info cards ── */
.info-cards {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1rem; margin: 1.5rem 0;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--cyan);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 1.25rem; transition: border-top-color var(--transition), box-shadow var(--transition);
}
.info-card:hover {
  border-top-color: var(--red);
  box-shadow: 0 0 15px var(--cyan-glow);
}
.info-card .icon { font-size: 1.75rem; margin-bottom: .5rem; }
.info-card h4 { color: var(--cyan); font-size: 1rem; margin-bottom: .3rem; }
.info-card p { color: var(--text-muted); font-size: .875rem; margin: 0; }

/* ── Text+Image block ── */
.text-img-section { padding: 2rem 0; }
.text-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.text-img-grid img {
  border-radius: var(--radius-lg);
  box-shadow: 0 0 30px var(--cyan-glow), 0 8px 40px rgba(0,0,0,.6);
  border: 1px solid rgba(0,200,221,.2);
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--bg-nested);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md); padding: 2rem; text-align: center;
  margin: 2rem 0;
  box-shadow: 0 0 20px var(--cyan-glow);
}
.cta-banner h3 { color: var(--text-head); margin-bottom: .5rem; margin-top: 0; }
.cta-banner p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ── Tables ── */
.table-responsive {
  width: 100%; max-width: 100%; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md); border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
table { width: 100%; min-width: 460px; border-collapse: collapse; background: var(--bg-card); }
thead { background: var(--bg-nested); border-bottom: 2px solid var(--cyan); }
th {
  padding: .875rem 1rem; text-align: left; font-weight: 700;
  color: var(--cyan); font-size: .875rem; text-transform: uppercase;
  letter-spacing: 1px; white-space: nowrap;
}
td { padding: .875rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); font-size: .9rem; }
tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: rgba(0,200,221,.03); }
tbody tr:hover { background: rgba(0,200,221,.07); }
.table-scroll-hint { display: none; font-size: .8rem; color: var(--text-muted); text-align: right; margin-bottom: .25rem; }

/* ── FAQ ── */
.faq-section { background: var(--bg-card); padding: 3rem 0; }
.faq-list { list-style: none; padding: 0; }
.faq-item {
  border: 1px solid var(--border); border-left: 3px solid var(--cyan);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: .75rem; overflow: hidden;
  transition: border-left-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-left-color: var(--red); box-shadow: 0 0 10px var(--red-glow); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; cursor: pointer; background: var(--bg-nested);
  font-weight: 600; user-select: none; gap: 1rem; list-style: none;
}
.faq-question::marker, .faq-question::-webkit-details-marker { display: none; }
.faq-icon { color: var(--cyan); font-size: 1.1rem; transition: transform var(--transition); flex-shrink: 0; }
details[open] .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 1rem 1.25rem; background: var(--bg-card); border-top: 1px solid var(--border); }

/* ── Footer ── */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-cyan);
  box-shadow: 0 -4px 20px var(--cyan-glow);
  padding: 2.5rem 0 1.5rem;
}
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; color: var(--text-muted); }
.payment-logos { border-top: 1px solid var(--border); padding-top: 1.5rem; margin: 1.5rem 0; }
.payment-logos h4 { color: var(--text-muted); font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.payment-grid { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.payment-logo {
  background: rgba(0,200,221,.05); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 6px 10px;
  display: flex; align-items: center; justify-content: center; height: 36px;
  transition: background var(--transition), border-color var(--transition);
}
.payment-logo:hover { background: rgba(0,200,221,.12); border-color: var(--cyan); }
.payment-logo img { height: 22px; width: auto; filter: brightness(.85) saturate(.7); transition: filter var(--transition); }
.payment-logo:hover img { filter: brightness(1.1) saturate(1); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1rem;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: var(--text-muted); margin: 0; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal-links a { font-size: .8rem; color: var(--text-muted); }
.footer-legal-links a:hover { color: var(--cyan); }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--text-muted); font-size: .7rem;
  font-weight: 700; color: var(--text-muted); flex-shrink: 0;
}
.gambling-warning {
  background: rgba(230,0,0,.06); border-top: 1px solid rgba(230,0,0,.2);
  padding: .5rem 0; text-align: center;
}
.gambling-warning p { font-size: .78rem; color: var(--text-muted); margin: 0; }

/* ── Back-to-top ── */
#back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: var(--bg-nested); color: var(--cyan);
  border: 1px solid var(--cyan); border-radius: 50%;
  width: 44px; height: 44px; font-size: 1.2rem; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), box-shadow var(--transition);
  z-index: 500; box-shadow: 0 0 12px var(--cyan-glow);
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { box-shadow: 0 0 20px var(--cyan-glow); }

/* ── Mobile nav ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.7); opacity: 0;
  transition: opacity var(--transition); pointer-events: none;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0;
  width: min(280px,85vw); height: 100%;
  background: var(--bg-card); border-left: 1px solid var(--border-cyan);
  box-shadow: -10px 0 30px var(--cyan-glow);
  padding: 2.5rem 1.25rem;
  transform: translateX(100%); transition: transform .3s ease; overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close {
  background: none; border: none; color: var(--cyan);
  font-size: 1.4rem; cursor: pointer;
  position: absolute; top: 1rem; right: 1rem;
}
.mobile-nav-links { list-style: none; padding: 0; margin-top: 2.5rem; }
.mobile-nav-links li { border-bottom: 1px solid var(--border); }
.mobile-nav-links a {
  display: block; padding: .875rem 0; color: var(--text);
  font-size: .95rem; font-weight: 600; letter-spacing: .3px;
}
.mobile-nav-links a:hover { color: var(--cyan); }

/* ── Policy pages ── */
.policy-page { padding: 2.5rem 0 4rem; }
.policy-content h1 { border-bottom: 1px solid var(--cyan); padding-bottom: 1rem; margin-bottom: 2.5rem; }
.policy-content h2 { color: var(--cyan); border-left: 3px solid var(--red); padding-left: 1rem; }
.policy-content section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.policy-content section:last-child { border-bottom: none; }
.policy-toc {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--cyan); border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 2.5rem;
}
.policy-toc h3 { margin-top: 0; color: var(--cyan); font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; }
.policy-toc a { color: var(--text-muted); font-size: .9rem; }
.policy-toc a:hover { color: var(--cyan); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .content-section .container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .site-nav, .btn-header { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav { display: block; }
  .hero { min-height: 420px; justify-content: center; padding-left: 1rem; padding-right: 1rem; }
  .hero-content {
    padding: 1.5rem; width: calc(100% - 2rem); margin: 1rem auto;
    text-align: center;
    background: rgba(5,5,8,.42);
    box-shadow: none;
  }
  .hero-buttons { justify-content: center; flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; }
  .slots-grid { display: none; }
  .slots-scroll-wrapper { display: block; }
  .table-scroll-hint { display: block; }
  .text-img-grid { grid-template-columns: 1fr; }
  .table-responsive { max-width: calc(100vw - 2.5rem); }
  body, html { width: 100%; max-width: 100vw; }
  #back-to-top { right: 1rem; bottom: 1rem; }
}
@media (max-width: 480px) {
  .hero { min-height: 360px; }
  .hero-content { background: rgba(5,5,8,.38); }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  .btn-lg { padding: 13px 22px; font-size: .9rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
}
