/* ============================================================
   SOMMET.ART — Bonus Senza Deposito 2026
   Design: Drive, excitement, risk — electric red, dark, neon
   Fonts: Oswald (display) / Inter (body)
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #e2e8f0;
  background-color: #0a0a0f;
  overflow-x: hidden;
}

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

a {
  color: #ff3c3c;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #ff6b6b;
}

ul, ol {
  padding-left: 1.4em;
}

li {
  margin-bottom: 0.45em;
}

p {
  margin-bottom: 1.1em;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Oswald', Impact, sans-serif;
  line-height: 1.2;
  color: #f1f5f9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  margin-top: 2.4rem;
  margin-bottom: 1rem;
  color: #ff3c3c;
  position: relative;
  padding-left: 1rem;
}

h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ff3c3c, #ff6b00);
  border-radius: 2px;
}

h3 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
  color: #f1f5f9;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  color: #ff6b00;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 14, 0.97);
  border-bottom: 1px solid rgba(255, 60, 60, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo-link {
  flex-shrink: 0;
}

.site-logo {
  height: 44px;
  width: auto;
}

.main-nav {
  flex: 1;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #ff3c3c;
}

.desktop-only {
  display: flex;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ff3c3c, #cc1f1f);
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 16px rgba(255, 60, 60, 0.35);
}

.btn-header:hover {
  color: #ffffff;
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(255, 60, 60, 0.55);
}

/* ---- HERO ---- */
.hero-section {
  position: relative;
  background: linear-gradient(160deg, #120508 0%, #0a0a0f 50%, #0f0a05 100%);
  padding: 64px 0 56px;
  border-bottom: 1px solid rgba(255, 60, 60, 0.2);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 60, 60, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(255, 107, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff6b00;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 3px;
  padding: 4px 12px;
  margin-bottom: 1rem;
}

.hero-intro {
  font-size: 1.05rem;
  color: #94a3b8;
  margin-bottom: 1.6rem;
  line-height: 1.75;
}

.author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.6rem;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255, 60, 60, 0.18);
  border-radius: 6px;
  width: fit-content;
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 60, 60, 0.4);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.author-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #f1f5f9;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

a.author-name:hover {
  color: #ff3c3c;
}

.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.author-date {
  font-size: 0.78rem;
  color: #64748b;
}

/* ---- LISTING SECTION ---- */
.listing-section {
  padding: 56px 0 64px;
  background: #0a0a0f;
}

.listing-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
  text-align: center;
  padding-left: 0;
}

.listing-title::before {
  display: none;
}

.listing-title-accent {
  margin-right: 8px;
}

/* ---- CASINO CARD ---- */
.casino-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #111118 0%, #0e0e15 100%);
  border: 1px solid rgba(255, 60, 60, 0.15);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ff3c3c, #ff6b00);
  opacity: 0;
  transition: opacity 0.2s;
}

.casino-card:hover {
  border-color: rgba(255, 60, 60, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 60, 60, 0.12);
}

.casino-card:hover::before {
  opacity: 1;
}

.casino-card:first-of-type {
  border-color: rgba(255, 60, 60, 0.4);
  background: linear-gradient(135deg, #18080a 0%, #120a0c 100%);
  box-shadow: 0 4px 24px rgba(255, 60, 60, 0.1);
}

.casino-card:first-of-type::before {
  opacity: 1;
}

.card-rank {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 60, 60, 0.25);
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}

.casino-card:first-of-type .card-rank {
  color: #ff3c3c;
}

.card-rank span {
  display: block;
}

.card-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  width: 140px;
}

.brand-logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0.9);
}

.brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-stars {
  display: flex;
  gap: 2px;
  color: #ff6b00;
}

.card-bonus {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 0;
  min-width: 0;
}

.bonus-label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: linear-gradient(135deg, #ff3c3c, #cc1f1f);
  border-radius: 3px;
  padding: 2px 8px;
  width: fit-content;
  margin-bottom: 2px;
}

.bonus-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0;
  line-height: 1.35;
  min-width: 0;
  word-break: break-word;
}

.bonus-sub {
  font-size: 0.74rem;
  color: #475569;
  margin-bottom: 0;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  width: 200px;
}

.card-features li {
  font-size: 0.82rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
  min-width: 0;
  word-break: break-word;
}

.check-icon {
  color: #ff3c3c;
  flex-shrink: 0;
}

.card-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.btn-play {
  display: inline-block;
  background: linear-gradient(135deg, #ff3c3c, #cc1f1f);
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 4px;
  white-space: nowrap;
  text-align: center;
  transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 16px rgba(255, 60, 60, 0.25);
}

.btn-play:hover {
  color: #ffffff;
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(255, 60, 60, 0.5);
}

/* ---- MAIN CONTENT ---- */
.main-content {
  padding: 56px 0 64px;
  background: #0a0a0f;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.content-wrapper {
  max-width: 860px;
}

.main-content h2:first-child {
  margin-top: 0;
}

/* ---- TABLES ---- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.4rem 0 1.8rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 60, 60, 0.15);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 420px;
}

thead {
  background: rgba(255, 60, 60, 0.1);
}

th {
  text-align: left;
  padding: 11px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff3c3c;
  border-bottom: 1px solid rgba(255, 60, 60, 0.2);
  white-space: nowrap;
}

td {
  padding: 10px 14px;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: top;
}

tr:last-child td {
  border-bottom: none;
}

tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

tbody tr:hover {
  background: rgba(255, 60, 60, 0.04);
}

/* ---- FAQ ---- */
.faq-section {
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 60, 60, 0.12);
}

.faq-section h2 {
  margin-top: 0;
}

.faq-item {
  margin-bottom: 1.6rem;
  padding: 18px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255, 60, 60, 0.1);
  border-radius: 6px;
  border-left: 3px solid #ff3c3c;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #f1f5f9;
  font-size: 0.95rem;
}

.faq-item p {
  margin-bottom: 0.5em;
  font-size: 0.9rem;
  color: #64748b;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(160deg, #120508 0%, #0a0a0f 60%, #0a0a0f 100%);
  padding: 40px 0 36px;
  border-bottom: 1px solid rgba(255, 60, 60, 0.2);
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 0.4rem;
}

.page-hero-meta {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 0;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #334155;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: #475569;
}

.breadcrumb a:hover {
  color: #ff3c3c;
}

/* ---- AUTHOR PROFILE CARD ---- */
.author-profile-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: linear-gradient(135deg, #111118 0%, #0e0e15 100%);
  border: 1px solid rgba(255, 60, 60, 0.3);
  border-left: 4px solid #ff3c3c;
  border-radius: 8px;
  padding: 28px 28px;
  margin-bottom: 2.4rem;
}

.author-profile-img-wrap {
  flex-shrink: 0;
}

.author-profile-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 60, 60, 0.45);
}

.author-profile-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.author-profile-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0;
  border: none;
  padding: 0;
}

.author-profile-name::before {
  display: none;
}

.author-profile-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 3px;
  padding: 4px 10px;
}

.badge-exp {
  display: inline-flex;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ff6b00;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 3px;
  padding: 4px 10px;
}

.author-profile-tagline {
  font-size: 0.95rem;
  color: #64748b;
  font-style: italic;
  margin: 0;
  line-height: 1.55;
}

/* ---- AUTHOR CTA BOX ---- */
.author-cta-box {
  margin-top: 2.4rem;
  padding: 24px 28px;
  background: rgba(255, 60, 60, 0.05);
  border: 1px solid rgba(255, 60, 60, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.author-cta-box p {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cbd5e1;
  font-weight: 500;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #060609;
  border-top: 1px solid rgba(255, 60, 60, 0.2);
  padding: 40px 0 30px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #334155;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #ff3c3c;
}

.footer-nav a[aria-current="page"] {
  color: #ff3c3c;
}

.footer-disclaimer {
  padding: 18px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255, 60, 60, 0.1);
  border-radius: 6px;
}

.responsible {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 8px;
}

.responsible svg {
  color: #ff3c3c;
  flex-shrink: 0;
}

.disclaimer-text {
  font-size: 0.76rem;
  color: #334155;
  margin-bottom: 0;
  line-height: 1.55;
}

.footer-copy {
  font-size: 0.76rem;
  color: #1e293b;
}

/* ---- RESPONSIVE — WIDE TABLET (1100px) ---- */
@media (max-width: 1100px) {
  .card-features {
    width: 170px;
  }
  .card-brand {
    width: 120px;
  }
}

/* ---- RESPONSIVE — TABLET ---- */
@media (max-width: 900px) {
  .casino-card {
    flex-wrap: wrap;
    padding: 16px;
    gap: 12px;
  }

  .card-rank {
    width: 36px;
    font-size: 1.5rem;
  }

  .card-brand {
    width: 130px;
  }

  .card-bonus {
    flex: 1 1 200px;
  }

  .card-features {
    width: 100%;
    order: 4;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .card-cta {
    order: 3;
    margin-left: auto;
  }
}

/* ---- RESPONSIVE — MOBILE ---- */
@media (max-width: 640px) {
  .desktop-only {
    display: none !important;
  }

  .header-inner {
    justify-content: space-between;
  }

  .hero-section {
    padding: 40px 0 32px;
  }

  .author-block {
    width: 100%;
  }

  .casino-card {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 10px;
  }

  .card-rank {
    display: none;
  }

  .card-brand {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .card-bonus {
    width: 100%;
  }

  .card-features {
    width: 100%;
    flex-direction: column;
    order: unset;
  }

  .card-cta {
    order: unset;
    margin-left: 0;
  }

  .btn-play {
    width: 100%;
    padding: 13px 16px;
    text-align: center;
  }

  .listing-section {
    padding: 36px 0 44px;
  }

  .main-content {
    padding: 36px 0 48px;
  }

  h2 {
    font-size: 1.2rem;
  }

  .faq-item {
    padding: 14px 16px;
  }

  .btn-header {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .author-profile-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
  }

  .author-profile-badges {
    justify-content: center;
  }

  .author-cta-box {
    flex-direction: column;
    text-align: center;
  }

  .author-cta-box .btn-play {
    width: 100%;
  }
}

/* ---- FOCUS STATES ---- */
a:focus-visible,
.btn-play:focus-visible,
.btn-header:focus-visible {
  outline: 2px solid #ff3c3c;
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
