/* ===== GLOBAL RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* ===== ROOT – swissplayhub ===== */
/* Soft architectural aesthetic: warm charcoal, muted terracotta, sage accents */
.sws-root {
  min-height: 100vh;
  width: 100%;
  background:
    radial-gradient(1400px 1000px at 85% 0%, rgba(139,154,142,.08), transparent 55%),
    radial-gradient(900px 700px at 15% 40%, rgba(199,123,90,.06), transparent 50%),
    radial-gradient(700px 500px at 60% 80%, rgba(107,138,155,.05), transparent 45%),
    linear-gradient(180deg, #1A191C 0%, #141316 100%);
  color: #F2EDE8;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.sws-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sws-container.narrow { max-width: 900px; }

/* ===== STATS BAR ===== */
.sws-stats-bar {
  background: linear-gradient(90deg, rgba(26,25,28,.97) 0%, rgba(20,19,22,.98) 100%);
  border-bottom: 1px solid rgba(139,154,142,.2);
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #A89F95;
  box-shadow: 0 1px 0 rgba(242,237,232,.03);
}
.sws-stats-bar span { white-space: nowrap; }

/* ===== BADGES ===== */
.sws-badges {
  background: linear-gradient(90deg, rgba(26,25,28,.97) 0%, rgba(20,19,22,.98) 100%);
  border-bottom: 1px solid rgba(139,154,142,.2);
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
}
.sws-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 4px;
  background: rgba(199,123,90,.12);
  border: 1px solid rgba(199,123,90,.35);
  color: #C77B5A;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.sws-badges .sws-badge { margin-bottom: 0; }

/* ===== HEADER ===== */
.sws-header {
  background: linear-gradient(180deg, rgba(26,25,28,.98) 0%, rgba(20,19,22,.96) 100%);
  border-bottom: 1px solid rgba(139,154,142,.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 0 rgba(0,0,0,.2);
}
.sws-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sws-logo {
  font-size: 22px;
  font-weight: 700;
  color: #F2EDE8;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: none;
}
.sws-logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #8B9A8E, #6B8A9B);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #141316;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.1);
}
.sws-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.sws-nav a {
  color: #A89F95;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
  position: relative;
}
.sws-nav a:hover { color: #C77B5A; }
.sws-nav a.active { 
  color: #C77B5A; 
  font-weight: 600;
  text-shadow: none;
}
.sws-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #C77B5A, #8B9A8E);
  border-radius: 0;
}

/* ===== HERO ===== */
.sws-hero {
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
}
.sws-hero.hero-large { padding: 100px 24px 80px; }
.sws-hero.hero-tall { padding: 90px 24px 60px; }
.sws-hero h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #F2EDE8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: none;
}
.sws-hero.hero-large h1 { font-size: 56px; margin-bottom: 16px; max-width: none; }
.sws-hero.hero-tall h1 { font-size: 56px; line-height: 1.05; margin-bottom: 12px; max-width: none; }
.sws-hero .brand-name {
  font-size: 32px;
  font-weight: 600;
  color: #C77B5A;
  display: block;
  margin-top: 8px;
  letter-spacing: 1px;
  text-shadow: none;
}
.sws-hero .accent {
  color: #C77B5A;
  display: block;
  font-size: 32px;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 1px;
  text-shadow: none;
}
.sws-hero-notice {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(199,123,90,.12);
  border: 1px solid rgba(199,123,90,.35);
  border-radius: 4px;
  color: #C77B5A;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.sws-hero p {
  margin: 0 auto;
  max-width: 800px;
  color: #B8A99A;
  font-size: 17px;
  line-height: 1.8;
}
.sws-hero.hero-large p { margin: 24px auto 40px; font-size: 18px; line-height: 1.7; }
.sws-hero-subtitle { font-size: 18px; line-height: 1.7; max-width: 800px; margin: 24px auto 40px !important; color: #B8A99A; }
.sws-hero.hero-tall p { margin: 24px auto 32px; max-width: 760px; font-size: 16px; }
.sws-hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sws-btn {
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.05);
}
.sws-btn.primary { 
  background: linear-gradient(180deg, #A85D3E 0%, #8B4A2E 100%);
  color: #F2EDE8;
  border: 1px solid rgba(199,123,90,.4);
}
.sws-btn.primary:hover { 
  background: linear-gradient(180deg, #C77B5A 0%, #A85D3E 100%);
  color: #F2EDE8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168,93,62,.35);
  border-color: rgba(199,123,90,.5);
}
.sws-btn.secondary {
  background: rgba(139,154,142,.1);
  color: #8B9A8E;
  border: 1px solid rgba(139,154,142,.35);
  backdrop-filter: blur(8px);
}
.sws-btn.secondary:hover { 
  background: rgba(139,154,142,.18);
  border-color: rgba(139,154,142,.5);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* ===== CONTENT SECTIONS (UK / content pages) ===== */
.sws-content-section {
  padding: 60px 24px;
}
.sws-content-section:nth-child(even) { background: rgba(139,154,142,.02); }
.sws-content-section .sws-section-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 24px;
  color: #F2EDE8;
  border-left: 4px solid #C77B5A;
  padding-left: 20px;
  text-align: left;
  text-shadow: none;
}
.sws-section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #B8A99A;
  margin-bottom: 16px;
}
.sws-section-text:last-child { margin-bottom: 0; }
.sws-highlight { color: #C77B5A; font-weight: 600; }

/* ===== STATS SECTION (home) ===== */
.sws-stats-section {
  padding: 60px 24px;
  background: linear-gradient(180deg, rgba(107,138,155,.04) 0%, transparent 100%);
  border-top: 1px solid rgba(139,154,142,.12);
  border-bottom: 1px solid rgba(139,154,142,.12);
}
.sws-stats-title { text-align: center; font-size: 36px; font-weight: 900; margin-bottom: 20px; color: #F2EDE8; text-shadow: none; }
.sws-stats-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #B8A99A;
  font-size: 16px;
  line-height: 1.7;
}
.sws-stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sws-stat-item { text-align: center; }
.sws-stat-number { font-size: 42px; font-weight: 900; color: #C77B5A; margin-bottom: 8px; }
.sws-stat-label { font-size: 13px; color: #B8A99A; line-height: 1.4; }

/* ===== ABOUT SECTION ===== */
.sws-about-section { padding: 80px 24px; }
.sws-section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 40px;
  color: #F2EDE8;
  text-shadow: none;
}
.sws-about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.sws-about-text { font-size: 16px; line-height: 1.8; color: #B8A99A; }
.sws-why-card {
  background: linear-gradient(135deg, rgba(35,33,38,.8) 0%, rgba(30,29,33,.9) 100%);
  border: 1px solid rgba(139,154,142,.2);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.02);
}
.sws-why-title { font-size: 22px; font-weight: 700; margin-bottom: 24px; color: #F2EDE8; }
.sws-why-list { list-style: none; }
.sws-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #B8A99A;
}
.sws-check-icon { color: #8B9A8E; font-size: 20px; flex-shrink: 0; margin-top: 2px; }

/* ===== SERVICES GRID ===== */
.sws-services-section { padding: 80px 24px; background: linear-gradient(180deg, rgba(107,138,155,.03) 0%, transparent 100%); }
.sws-services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sws-service-card {
  background: linear-gradient(135deg, rgba(35,33,38,.6) 0%, rgba(28,27,30,.8) 100%);
  border: 1px solid rgba(139,154,142,.18);
  border-radius: 8px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.sws-service-card:hover { 
  transform: translateY(-4px); 
  border-color: rgba(199,123,90,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 0 1px rgba(139,154,142,.1);
}
.sws-service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #F2EDE8; }
.sws-service-card p { font-size: 14px; line-height: 1.6; color: #B8A99A; }
.sws-service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,154,142,.08);
  border: 1px solid rgba(139,154,142,.2);
  border-radius: 4px;
  color: #8B9A8E;
}
.sws-services .sws-services-grid .sws-service-card { text-align: left; padding: 36px 28px; }
.sws-services .sws-service-card h3 { font-size: 22px; margin-bottom: 16px; }
.sws-services .sws-service-card p { font-size: 15px; line-height: 1.7; }

/* ===== EVENTS SECTION ===== */
.sws-events-section { padding: 80px 24px; }
.sws-events-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sws-event-card {
  background: linear-gradient(135deg, rgba(35,33,38,.6) 0%, rgba(28,27,30,.8) 100%);
  border: 1px solid rgba(139,154,142,.18);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.sws-event-card:hover { 
  transform: translateY(-4px); 
  border-color: rgba(199,123,90,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 0 1px rgba(139,154,142,.1);
}
.sws-event-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.sws-event-badge.available { background: rgba(139,154,142,.15); color: #8B9A8E; border: 1px solid rgba(139,154,142,.3); }
.sws-event-badge.last { background: rgba(199,123,90,.2); color: #C77B5A; border: 1px solid rgba(199,123,90,.35); }
.sws-event-title { font-size: 22px; font-weight: 700; margin-bottom: 16px; color: #F2EDE8; }
.sws-event-info { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 14px; color: #B8A99A; }
.sws-event-info-icon { color: #8B9A8E; font-size: 16px; }
.sws-event-desc { font-size: 14px; line-height: 1.6; color: #B8A99A; margin-bottom: 20px; }
.sws-event-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(180deg, #A85D3E 0%, #8B4A2E 100%);
  color: #F2EDE8;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(199,123,90,.4);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.sws-event-btn:hover { 
  background: linear-gradient(180deg, #C77B5A 0%, #A85D3E 100%);
  color: #F2EDE8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168,93,62,.35);
  border-color: rgba(199,123,90,.5);
}

/* ===== CASINOS SECTION ===== */
.sws-casinos-section { padding: 80px 24px; background: rgba(0,0,0,.03); }
.sws-casinos-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sws-casino-card {
  background: linear-gradient(135deg, rgba(35,33,38,.6) 0%, rgba(28,27,30,.8) 100%);
  border: 1px solid rgba(139,154,142,.18);
  border-radius: 8px;
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.sws-casino-card:hover { 
  transform: translateY(-4px); 
  border-color: rgba(199,123,90,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 0 1px rgba(139,154,142,.1);
}
.sws-casino-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #F2EDE8; }
.sws-casino-desc { font-size: 14px; line-height: 1.6; color: #B8A99A; margin-bottom: 16px; }
.sws-casino-location { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #B8A99A; margin-bottom: 12px; }
.sws-casino-location-icon { color: #8B9A8E; }
.sws-casino-rating { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #B8A99A; }
.sws-stars { color: #C77B5A; font-size: 16px; letter-spacing: 2px; }

/* ===== WHY SECTION ===== */
.sws-why-section { padding: 80px 24px; }
.sws-why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sws-why-card-small {
  background: linear-gradient(135deg, rgba(35,33,38,.6) 0%, rgba(28,27,30,.8) 100%);
  border: 1px solid rgba(139,154,142,.18);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.sws-why-card-small:hover { 
  transform: translateY(-4px); 
  border-color: rgba(199,123,90,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 0 1px rgba(139,154,142,.1);
}
.sws-why-icon {
  font-size: 36px;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,154,142,.08);
  border: 1px solid rgba(139,154,142,.2);
  border-radius: 4px;
  color: #8B9A8E;
}
.sws-why-card-small h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: #F2EDE8; }
.sws-why-card-small p { font-size: 14px; line-height: 1.6; color: #B8A99A; }

/* ===== GAMES (offline-casino) ===== */
.sws-games-section { padding: 60px 24px; }
.sws-games-section .sws-section-title { font-size: 32px; letter-spacing: 1px; }
.sws-games-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sws-game-card {
  background: linear-gradient(135deg, rgba(35,33,38,.6) 0%, rgba(28,27,30,.8) 100%);
  border: 1px solid rgba(139,154,142,.18);
  border-radius: 8px;
  padding: 28px 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.sws-game-card:hover { 
  transform: translateY(-4px); 
  border-color: rgba(199,123,90,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 0 1px rgba(139,154,142,.1);
}
.sws-game-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.sws-game-icon {
  font-size: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,154,142,.08);
  border: 1px solid rgba(139,154,142,.2);
  border-radius: 4px;
  color: #8B9A8E;
}
.sws-game-title-wrap { flex: 1; }
.sws-game-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: #F2EDE8; }
.sws-difficulty-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(107,138,155,.15);
  color: #6B8A9B;
  border: 1px solid rgba(107,138,155,.3);
}
.sws-difficulty-badge.easy { background: rgba(139,154,142,.15); color: #8B9A8E; border-color: rgba(139,154,142,.3); }
.sws-difficulty-badge.medium { background: rgba(199,123,90,.15); color: #C77B5A; border-color: rgba(199,123,90,.3); }
.sws-difficulty-badge.hard { background: rgba(107,138,155,.2); color: #6B8A9B; border-color: rgba(107,138,155,.35); }
.sws-game-desc { font-size: 14px; line-height: 1.6; color: #B8A99A; }

/* ===== PACKAGES ===== */
.sws-packages-section { padding: 60px 24px; background: linear-gradient(180deg, rgba(107,138,155,.03) 0%, transparent 100%); }
.sws-packages-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sws-package-card {
  background: linear-gradient(135deg, rgba(35,33,38,.6) 0%, rgba(28,27,30,.8) 100%);
  border: 1px solid rgba(139,154,142,.18);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.sws-package-card:hover { 
  transform: translateY(-4px); 
  border-color: rgba(199,123,90,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 0 1px rgba(139,154,142,.1);
}
.sws-package-card.featured { border-color: rgba(199,123,90,.4); border-width: 2px; }
.sws-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(180deg, #C77B5A 0%, #A85D3E 100%);
  color: #F2EDE8;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.sws-package-name { font-size: 24px; font-weight: 700; margin-bottom: 12px; color: #F2EDE8; text-align: center; }
.sws-package-price { font-size: 36px; font-weight: 900; color: #C77B5A; text-align: center; margin-bottom: 8px; }
.sws-package-price span { font-size: 18px; font-weight: 600; color: #B8A99A; }
.sws-package-details { text-align: center; font-size: 14px; color: #B8A99A; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(139,154,142,.2); }
.sws-package-features { list-style: none; margin-bottom: 28px; }
.sws-package-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #B8A99A;
}
.sws-package-features .sws-check-icon { font-size: 18px; color: #8B9A8E; }
.sws-package-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(180deg, #A85D3E 0%, #8B4A2E 100%);
  color: #F2EDE8;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(199,123,90,.4);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.sws-package-btn:hover { 
  background: linear-gradient(180deg, #C77B5A 0%, #A85D3E 100%);
  color: #F2EDE8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168,93,62,.35);
  border-color: rgba(199,123,90,.5);
}

/* ===== VALUE / DISCLAIMER / FEATURES (casino-hotel) ===== */
.sws-value { padding: 60px 24px; text-align: center; max-width: 900px; margin: 0 auto; }
.sws-value h2 { font-size: 36px; font-weight: 900; margin-bottom: 20px; color: #F2EDE8; letter-spacing: 2px; text-shadow: none; }
.sws-value p { font-size: 16px; line-height: 1.8; color: #B8A99A; }
.sws-disclaimer-section {
  padding: 50px 24px;
  background: linear-gradient(180deg, rgba(107,138,155,.05) 0%, transparent 100%);
  border-top: 1px solid rgba(139,154,142,.15);
  border-bottom: 1px solid rgba(139,154,142,.15);
}
.sws-disc-container { max-width: 900px; margin: 0 auto; text-align: center; }
.sws-disc-title { font-size: 28px; font-weight: 900; margin-bottom: 24px; color: #F2EDE8; letter-spacing: 1px; text-shadow: none; }
.sws-disc-text { font-size: 15px; line-height: 1.8; color: #B8A99A; margin-bottom: 16px; }
.sws-features { padding: 60px 24px; }
.sws-features-title { text-align: center; font-size: 32px; font-weight: 900; margin-bottom: 40px; color: #F2EDE8; letter-spacing: 2px; text-shadow: none; }
.sws-features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sws-feature-card {
  background: linear-gradient(135deg, rgba(35,33,38,.6) 0%, rgba(28,27,30,.8) 100%);
  border: 1px solid rgba(139,154,142,.18);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.sws-feature-card:hover { 
  transform: translateY(-4px); 
  border-color: rgba(199,123,90,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 0 1px rgba(139,154,142,.1);
}
.sws-feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,154,142,.08);
  border: 1px solid rgba(139,154,142,.2);
  border-radius: 4px;
  color: #8B9A8E;
}
.sws-feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: #F2EDE8; }
.sws-feature-card p { font-size: 14px; line-height: 1.6; color: #B8A99A; }
.sws-cta { padding: 80px 24px; text-align: center; }
.sws-cta h2 { font-size: 36px; font-weight: 900; margin-bottom: 20px; color: #F2EDE8; text-shadow: none; }
.sws-cta p { font-size: 16px; line-height: 1.8; color: #B8A99A; max-width: 700px; margin: 0 auto 32px; }

/* ===== PAGE HEADER (legal, contact, faq) ===== */
.sws-page-header { padding: 60px 24px 40px; text-align: center; }
.sws-page-title { font-size: 42px; font-weight: 900; margin-bottom: 12px; color: #F2EDE8; text-shadow: none; }
.sws-page-update { font-size: 14px; color: #A89F95; }
.sws-page-subtitle { font-size: 18px; color: #B8A99A; }

/* ===== CONTENT (legal pages) ===== */
.sws-content { padding: 0 24px 60px; }
.sws-section { margin-bottom: 48px; }
.sws-section-number {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #8B9A8E, #6B8A9B);
  color: #141316;
  border-radius: 4px;
  text-align: center;
  line-height: 36px;
  font-weight: 900;
  font-size: 16px;
  margin-right: 12px;
  vertical-align: middle;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.sws-content .sws-section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2EDE8;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  border: none;
  padding: 0;
}
.sws-content .sws-section-text {
  margin-left: 44px;
}
.sws-list { margin-left: 44px; margin-top: 12px; margin-bottom: 16px; }
.sws-list li { font-size: 16px; line-height: 1.8; color: #B8A99A; margin-bottom: 10px; padding-left: 8px; }
.sws-list li:last-child { margin-bottom: 0; }
.sws-contact-info { margin-left: 44px; margin-top: 12px; }
.sws-contact-item { font-size: 16px; line-height: 1.8; color: #B8A99A; margin-bottom: 8px; }
.sws-contact-item strong { color: #C77B5A; font-weight: 600; }
.sws-contact-item a { color: #C77B5A; text-decoration: none; transition: color 0.2s; }
.sws-contact-item a:hover { color: #8B9A8E; }
.sws-section-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 24px;
  color: #8B9A8E;
  margin-left: 44px;
}
.sws-warning {
  background: rgba(199,123,90,.08);
  border-left: 4px solid #C77B5A;
  padding: 16px 20px;
  margin: 20px 0 20px 44px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
}
.sws-warning-text { font-size: 15px; line-height: 1.7; color: #C77B5A; }

/* ===== CONTACT PAGE ===== */
.sws-contact-section { padding: 40px 24px 80px; }
.sws-contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.sws-form-card {
  background: linear-gradient(135deg, rgba(35,33,38,.8) 0%, rgba(30,29,33,.9) 100%);
  border: 1px solid rgba(139,154,142,.2);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.02);
}
.sws-form-title { font-size: 24px; font-weight: 700; margin-bottom: 28px; color: #F2EDE8; }
.sws-form-group { margin-bottom: 24px; }
.sws-form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: #F2EDE8; }
.sws-form-input,
.sws-form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(20,19,22,.6);
  border: 1px solid rgba(139,154,142,.25);
  border-radius: 4px;
  color: #F2EDE8;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.sws-form-input:focus,
.sws-form-textarea:focus {
  outline: none;
  border-color: rgba(199,123,90,.5);
  background: rgba(20,19,22,.8);
  box-shadow: 0 0 0 1px rgba(199,123,90,.2);
}
.sws-form-input::placeholder,
.sws-form-textarea::placeholder { color: #A89F95; }
.sws-form-textarea { min-height: 140px; resize: vertical; }
.sws-form-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(180deg, #A85D3E 0%, #8B4A2E 100%);
  color: #F2EDE8;
  border: 1px solid rgba(199,123,90,.4);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.sws-form-btn:hover { 
  background: linear-gradient(180deg, #C77B5A 0%, #A85D3E 100%);
  color: #F2EDE8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168,93,62,.35);
  border-color: rgba(199,123,90,.5);
}
.sws-info-card {
  background: linear-gradient(135deg, rgba(35,33,38,.8) 0%, rgba(30,29,33,.9) 100%);
  border: 1px solid rgba(139,154,142,.2);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.02);
}
.sws-info-card:last-child { margin-bottom: 0; }
.sws-info-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.sws-info-icon { font-size: 24px; color: #8B9A8E; }
.sws-info-title { font-size: 18px; font-weight: 700; color: #F2EDE8; }
.sws-info-content { font-size: 15px; line-height: 1.8; color: #B8A99A; }
.sws-info-item { margin-bottom: 8px; }
.sws-info-item:last-child { margin-bottom: 0; }
.sws-info-item a { color: #C77B5A; text-decoration: none; transition: color 0.2s; }
.sws-info-item a:hover { color: #8B9A8E; }

/* ===== FAQ ===== */
.sws-faq-section { padding: 40px 24px 80px; }
.sws-faq-item {
  background: linear-gradient(135deg, rgba(35,33,38,.5) 0%, rgba(28,27,30,.7) 100%);
  border: 1px solid rgba(139,154,142,.18);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.sws-faq-item:hover { 
  border-color: rgba(139,154,142,.3);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.sws-faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: background 0.3s;
}
.sws-faq-question:hover { background: rgba(139,154,142,.04); }
.sws-faq-question-text { font-size: 18px; font-weight: 600; color: #F2EDE8; flex: 1; }
.sws-faq-icon { font-size: 20px; color: #8B9A8E; transition: transform 0.3s; margin-left: 16px; }
.sws-faq-item.active .sws-faq-icon { transform: rotate(180deg); }
.sws-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.sws-faq-item.active .sws-faq-answer { max-height: 500px; }
.sws-faq-answer-content { padding: 0 24px 24px; font-size: 16px; line-height: 1.7; color: #B8A99A; }
.sws-contact-prompt {
  padding: 60px 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(35,33,38,.5) 0%, rgba(28,27,30,.7) 100%);
  border-radius: 8px;
  margin-top: 40px;
  border: 1px solid rgba(139,154,142,.18);
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.sws-contact-prompt-text { font-size: 18px; color: #B8A99A; margin-bottom: 20px; }
.sws-contact-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #C77B5A;
  text-decoration: none;
  transition: color 0.2s;
}
.sws-contact-link:hover { color: #8B9A8E; }
.sws-contact-link::after { content: ' →'; margin-left: 4px; }

/* ===== FOOTER ===== */
.sws-footer {
  border-top: 1px solid rgba(139,154,142,.2);
  padding: 48px 24px 32px;
  background: linear-gradient(180deg, rgba(26,25,28,.95) 0%, rgba(20,19,22,.98) 100%);
  margin-top: 60px;
  box-shadow: 0 -2px 0 rgba(0,0,0,.2);
}
.sws-footgrid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.sws-foot h5 {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8B9A8E;
  margin-bottom: 12px;
  font-weight: 700;
}
.sws-foot a {
  display: block;
  font-size: 14px;
  color: #B8A99A;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
}
.sws-foot a:hover { color: #C77B5A; }
.sws-copy {
  text-align: center;
  font-size: 12px;
  color: #A89F95;
  padding-top: 24px;
  border-top: 1px solid rgba(139,154,142,.18);
}

/* ===== COOKIE BAR ===== */
.sws-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(26,25,28,.98) 0%, rgba(20,19,22,.98) 100%);
  border-top: 1px solid rgba(139,154,142,.25);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 1000;
  backdrop-filter: blur(12px);
  box-shadow: 0 -2px 12px rgba(0,0,0,.3);
}
.sws-cookie-text { flex: 1; font-size: 13px; color: #B8A99A; line-height: 1.5; }
.sws-cookie-btns { display: flex; gap: 12px; }
.sws-cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.sws-cookie-btn.accept { 
  background: linear-gradient(180deg, #A85D3E 0%, #8B4A2E 100%);
  color: #F2EDE8;
  border: 1px solid rgba(199,123,90,.4);
}
.sws-cookie-btn.accept:hover { 
  background: linear-gradient(180deg, #C77B5A 0%, #A85D3E 100%);
  color: #F2EDE8;
  box-shadow: 0 4px 12px rgba(168,93,62,.35);
  border-color: rgba(199,123,90,.5);
}
.sws-cookie-btn.decline { 
  background: rgba(139,154,142,.1);
  color: #8B9A8E;
  border: 1px solid rgba(139,154,142,.35);
}
.sws-cookie-btn.decline:hover { 
  background: rgba(139,154,142,.18);
  border-color: rgba(139,154,142,.5);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .sws-header-inner { flex-direction: column; gap: 16px; text-align: center; }
  .sws-nav { justify-content: center; }
  .sws-hero h1 { font-size: 32px; }
  .sws-hero.hero-large h1 { font-size: 36px; }
  .sws-hero.hero-tall h1 { font-size: 36px; }
  .sws-hero .brand-name { font-size: 24px; }
  .sws-hero .accent { font-size: 24px; }
  .sws-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sws-about-content { grid-template-columns: 1fr; }
  .sws-services-grid,
  .sws-events-grid,
  .sws-casinos-grid,
  .sws-why-grid,
  .sws-footgrid,
  .sws-games-grid,
  .sws-packages-grid,
  .sws-features-grid { grid-template-columns: 1fr; }
  .sws-section-title { font-size: 26px; }
  .sws-content-section .sws-section-title { font-size: 26px; }
  .sws-page-title { font-size: 32px; }
  .sws-content .sws-section-title { font-size: 20px; }
  .sws-section-text,
  .sws-list,
  .sws-contact-info,
  .sws-section-subtitle,
  .sws-warning { margin-left: 0; }
  .sws-section-number { display: block; margin-bottom: 12px; margin-right: 0; }
  .sws-contact-grid { grid-template-columns: 1fr; }
  .sws-faq-question-text { font-size: 16px; }
  .sws-value h2,
  .sws-features-title,
  .sws-cta h2 { font-size: 28px; }
  .sws-cookie-bar { flex-direction: column; text-align: center; }
  .sws-cookie-btns { width: 100%; justify-content: center; }
}
