/* socialslotsdaily.com — strawberry_cream + editorial_newspaper_90s */



*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #FFF0F0;
  --surface: #FFFFFF;
  --text: #5C2A2A;
  --muted: #B38686;
  --primary: #FF4D4D;
  --secondary: #FF8080;
  --accent: #FFB3B3;
  --border: rgba(255, 77, 77, 0.1);
  --ink: #1a1a1a;
  --newsprint: #f7efe6;
  --rule: #1a1a1a;
  --font-serif: 'Libre Baskerville', 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Oswald', 'Arial Narrow', 'Helvetica Condensed', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(255, 248, 235, 0.55), transparent 40%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(92, 42, 42, 0.015) 2px,
      rgba(92, 42, 42, 0.015) 3px
    );
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  hyphens: auto;
  -webkit-hyphens: auto;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--text);
}

ul,
ol {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}

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

/* —— Top warning —— */
.warning-banner {
  background: var(--ink);
  color: #fff;
  border-bottom: 3px solid var(--primary);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 2.4vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.5;
  text-wrap: balance;
  position: relative;
  z-index: 100;
}

/* —— Navbar —— */
.navbar {
  background: var(--newsprint);
  border-bottom: 2px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 80;
}

.navbar__inner {
  width: min(1100px, 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.navbar__logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.2);
  border: 1px solid var(--rule);
}

.navbar__brand {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.navbar__brand span {
  color: var(--primary);
  font-style: italic;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rule);
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--rule);
}

.nav-menu a {
  display: block;
  padding: 0.55rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-right: 1px solid var(--rule);
  background: var(--surface);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu li:last-child a {
  border-right: none;
}

.nav-menu a:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    left: 3vw;
    right: 3vw;
    top: calc(100% + 2px);
    flex-direction: column;
    background: var(--surface);
    z-index: 90;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .nav-menu li:last-child a {
    border-bottom: none;
  }

  .navbar {
    position: relative;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  border-bottom: 3px double var(--rule);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 239, 230, 0.15) 0%, rgba(255, 240, 240, 0.92) 72%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #d8d0c4 0%, #9a9490 45%, #6a6560 100%);
  background-size: cover, 180px 180px, cover;
  animation: heroFade 1.1s ease both;
}

.hero__photo {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.08) 3px,
      rgba(0, 0, 0, 0.08) 4px
    ),
    radial-gradient(circle at 30% 40%, #bbb 0%, #555 55%, #222 100%);
  mix-blend-mode: multiply;
  opacity: 0.55;
  filter: grayscale(1) contrast(1.35);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(960px, 92vw);
  margin: 0 auto;
  padding: 3.5rem 0 3rem;
  border-top: 1px solid var(--rule);
}

.hero__kicker {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  animation: slideUp 0.7s 0.15s ease both;
}

.hero__brand {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1rem;
  text-shadow: 0 0 0 transparent;
  animation: slideUp 0.75s 0.22s ease both;
}

.hero__brand em {
  font-style: italic;
  color: var(--primary);
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 3.2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  max-width: 34ch;
  line-height: 1.25;
  margin-bottom: 0.9rem;
  border-left: 4px solid var(--primary);
  padding-left: 0.85rem;
  animation: slideUp 0.8s 0.32s ease both;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  max-width: 48ch;
  text-align: justify;
  hyphens: auto;
  color: var(--text);
  margin-bottom: 1.5rem;
  animation: slideUp 0.85s 0.4s ease both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: slideUp 0.9s 0.48s ease both;
}

@keyframes heroFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reelPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--rule);
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--ink);
}

.btn--primary:hover {
  background: var(--ink);
  color: #fff;
}

.btn--secondary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--ink);
}

.btn--secondary:hover {
  background: var(--ink);
}

.btn--ghost {
  background: var(--surface);
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--accent);
  color: var(--ink);
}

.btn--sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.75rem;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* —— Sections —— */
.section {
  padding: 3.25rem 0;
  border-bottom: 1px solid var(--rule);
}

.section--alt {
  background: var(--newsprint);
}

.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--rule);
}

.rules-block p {
  text-align: justify;
  hyphens: auto;
  margin-bottom: 1rem;
  color: var(--text);
}

.rules-block p:last-child {
  margin-bottom: 0;
}

.rules-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: 1.5rem;
  color: var(--ink);
}

.rules-icons span {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  background: var(--surface);
}

/* —— Game —— */
.game-section {
  padding: 3.25rem 0;
  border-bottom: 2px solid var(--rule);
  background: var(--bg);
}

.slot-machine {
  border: 2px solid var(--rule);
  background: var(--surface);
  padding: 1.5rem;
  box-shadow: 6px 6px 0 rgba(26, 26, 26, 0.08);
}

.slot-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1.25rem;
  border: 1px solid var(--rule);
}

.stat-box {
  padding: 0.85rem 1rem;
  border-right: 1px solid var(--rule);
  background: var(--newsprint);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-box__value {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--rule);
  margin-bottom: 1rem;
  background: var(--ink);
}

.reel {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  color: var(--ink);
  background: var(--newsprint);
  border-right: 1px solid var(--rule);
  transition: background 0.15s ease;
}

.reel:last-child {
  border-right: none;
}

.reel.spinning {
  animation: reelPulse 0.12s linear infinite;
  background: #ebe4d8;
  color: var(--primary);
}

.slot-result {
  min-height: 2.8em;
  font-size: 0.95rem;
  text-align: justify;
  hyphens: auto;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--rule);
  margin-bottom: 1rem;
  color: var(--text);
}

.slot-result.win {
  color: var(--primary);
  font-weight: 700;
}

.slot-result.lose {
  color: var(--muted);
}

.slot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.paytable {
  border-top: 2px solid var(--rule);
  padding-top: 1rem;
}

.paytable h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  color: var(--ink);
}

.paytable ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--rule);
}

.paytable li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.paytable li:nth-child(odd) {
  background: var(--newsprint);
}

.paytable li:last-child {
  border-bottom: none;
}

/* —— FAQ (homepage) —— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem 1.2rem;
  background: var(--surface);
}

.faq-item:nth-child(even) {
  background: var(--newsprint);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.faq-item p {
  text-align: justify;
  hyphens: auto;
  color: var(--text);
  font-size: 0.98rem;
}

.faq-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: justify;
}

/* —— Footer —— */
.footer {
  background: var(--newsprint);
  border-top: 3px double var(--rule);
  padding: 2.5rem 0 2rem;
  color: var(--text);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 1.5rem;
}

.footer__logo img {
  width: 48px;
  height: 48px;
  filter: grayscale(1) contrast(1.15);
  border: 1px solid var(--rule);
  margin-bottom: 0.75rem;
}

.footer__brandtext {
  font-size: 0.95rem;
  text-align: justify;
  hyphens: auto;
  max-width: 42ch;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
}

.footer__links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 1rem;
}

.footer__badges img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  border: 1px solid rgba(26, 26, 26, 0.25);
  background: #fff;
  padding: 4px;
}

.footer__disclaimer {
  font-size: 0.88rem;
  text-align: justify;
  hyphens: auto;
  color: var(--text);
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--rule);
  background: var(--surface);
}

.footer__contact,
.footer__copy {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

@media (max-width: 700px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__links {
    grid-template-columns: 1fr;
  }
}

/* —— Age gate —— */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(26, 26, 26, 0.72);
}

.age-gate.active {
  display: flex;
}

.age-gate__box {
  width: min(440px, 100%);
  background: var(--newsprint);
  border: 2px solid var(--rule);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.25);
}

.age-gate__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--primary);
  color: #fff;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--ink);
}

.age-gate__box h2 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.age-gate__box p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-align: justify;
  hyphens: auto;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.age-gate__note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center !important;
}

/* —— Cookie banner —— */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 180;
  display: none;
  padding: 1rem;
  background: var(--ink);
  border-top: 3px solid var(--primary);
}

.cookie-banner.active {
  display: block;
}

.cookie-banner__inner {
  width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__text {
  flex: 1 1 280px;
  color: #fff;
  font-size: 0.9rem;
  text-align: justify;
  hyphens: auto;
}

.cookie-banner__text a {
  color: var(--accent);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hidden {
  display: none !important;
}
