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

/* ===== ROOT – onhodlmode ===== */
.onh-root {
  min-height: 100vh;
  width: 100%;
  background:
    radial-gradient(1200px 900px at 90% 5%, rgba(212,175,55,.12), transparent 60%),
    radial-gradient(1000px 800px at 10% 35%, rgba(138,21,56,.15), transparent 55%),
    radial-gradient(800px 600px at 50% 70%, rgba(74,20,140,.1), transparent 50%),
    linear-gradient(180deg, #1A0D1F 0%, #0F0514 100%);
  color: #f5e6d3;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

/* ===== STATS BAR ===== */
.onh-stats-bar {
  background: linear-gradient(90deg, rgba(26,13,31,.95) 0%, rgba(15,5,20,.98) 100%);
  border-bottom: 2px solid rgba(212,175,55,.2);
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #c9a882;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.onh-stats-bar span { white-space: nowrap; }

/* ===== BADGES ===== */
.onh-badges {
  background: linear-gradient(90deg, rgba(26,13,31,.95) 0%, rgba(15,5,20,.98) 100%);
  border-bottom: 2px solid rgba(212,175,55,.2);
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
}
.onh-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(212,175,55,.2), rgba(244,196,48,.15));
  border: 1.5px solid rgba(212,175,55,.5);
  color: #D4AF37;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(212,175,55,.2);
}
.onh-badges .onh-badge { margin-bottom: 0; }

/* ===== HEADER ===== */
.onh-header {
  background: linear-gradient(180deg, rgba(26,13,31,.98) 0%, rgba(15,5,20,.95) 100%);
  border-bottom: 2px solid rgba(212,175,55,.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.onh-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.onh-logo {
  font-size: 22px;
  font-weight: 700;
  color: #f5e6d3;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
}
.onh-logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #D4AF37, #F4C430);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A0D1F;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(212,175,55,.4);
}
.onh-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.onh-nav a {
  color: #c9a882;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
  position: relative;
}
.onh-nav a:hover { color: #D4AF37; }
.onh-nav a.active { 
  color: #D4AF37; 
  font-weight: 600;
  text-shadow: 0 0 8px rgba(212,175,55,.5);
}
.onh-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, #F4C430);
  border-radius: 2px;
}

/* ===== HERO ===== */
.onh-hero {
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
}
.onh-hero.hero-large { padding: 100px 24px 80px; }
.onh-hero.hero-tall { padding: 90px 24px 60px; }
.onh-hero h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #f5e6d3;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.onh-hero.hero-large h1 { font-size: 56px; margin-bottom: 16px; max-width: none; }
.onh-hero.hero-tall h1 { font-size: 56px; line-height: 1.05; margin-bottom: 12px; max-width: none; }
.onh-hero .brand-name {
  font-size: 32px;
  font-weight: 600;
  color: #D4AF37;
  display: block;
  margin-top: 8px;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(212,175,55,.6);
}
.onh-hero .accent {
  color: #D4AF37;
  display: block;
  font-size: 32px;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(212,175,55,.6);
}
.onh-hero-notice {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(212,175,55,.2), rgba(244,196,48,.15));
  border: 1.5px solid rgba(212,175,55,.5);
  border-radius: 20px;
  color: #D4AF37;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(212,175,55,.2);
}
.onh-hero p {
  margin: 0 auto;
  max-width: 800px;
  color: #d4c4b0;
  font-size: 17px;
  line-height: 1.8;
}
.onh-hero.hero-large p { margin: 24px auto 40px; font-size: 18px; line-height: 1.7; }
.onh-hero-subtitle { font-size: 18px; line-height: 1.7; max-width: 800px; margin: 24px auto 40px !important; color: #d4c4b0; }
.onh-hero.hero-tall p { margin: 24px auto 32px; max-width: 760px; font-size: 16px; }
.onh-hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.onh-btn {
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.onh-btn.primary { 
  background: linear-gradient(135deg, #8B1538, #A02040);
  color: #f5e6d3;
  border: 2px solid rgba(212,175,55,.3);
}
.onh-btn.primary:hover { 
  background: linear-gradient(135deg, #A02040, #B82850);
  color: #f5e6d3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(138,21,56,.5);
  border-color: rgba(212,175,55,.5);
}
.onh-btn.secondary {
  background: rgba(212,175,55,.15);
  color: #D4AF37;
  border: 2px solid rgba(212,175,55,.4);
  backdrop-filter: blur(8px);
}
.onh-btn.secondary:hover { 
  background: rgba(212,175,55,.25);
  border-color: rgba(212,175,55,.6);
  box-shadow: 0 6px 16px rgba(212,175,55,.3);
}

/* ===== CONTENT SECTIONS (UK / content pages) ===== */
.onh-content-section {
  padding: 60px 24px;
}
.onh-content-section:nth-child(even) { background: rgba(212,175,55,.03); }
.onh-content-section .onh-section-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 24px;
  color: #f5e6d3;
  border-left: 4px solid #D4AF37;
  padding-left: 20px;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
}
.onh-section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #d4c4b0;
  margin-bottom: 16px;
}
.onh-section-text:last-child { margin-bottom: 0; }
.onh-highlight { color: #D4AF37; font-weight: 600; text-shadow: 0 0 8px rgba(212,175,55,.4); }

/* ===== STATS SECTION (home) ===== */
.onh-stats-section {
  padding: 60px 24px;
  background: linear-gradient(180deg, rgba(74,20,140,.08) 0%, transparent 100%);
  border-top: 1px solid rgba(212,175,55,.15);
  border-bottom: 1px solid rgba(212,175,55,.15);
}
.onh-stats-title { text-align: center; font-size: 36px; font-weight: 900; margin-bottom: 20px; color: #f5e6d3; text-shadow: 0 2px 4px rgba(0,0,0,.3); }
.onh-stats-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #d4c4b0;
  font-size: 16px;
  line-height: 1.7;
}
.onh-stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.onh-stat-item { text-align: center; }
.onh-stat-number { font-size: 42px; font-weight: 900; color: #D4AF37; margin-bottom: 8px; text-shadow: 0 0 12px rgba(212,175,55,.5); }
.onh-stat-label { font-size: 13px; color: #d4c4b0; line-height: 1.4; }

/* ===== ABOUT SECTION ===== */
.onh-about-section { padding: 80px 24px; }
.onh-section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 40px;
  color: #f5e6d3;
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
}
.onh-about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.onh-about-text { font-size: 16px; line-height: 1.8; color: #d4c4b0; }
.onh-why-card {
  background: linear-gradient(135deg, rgba(138,21,56,.15), rgba(74,20,140,.1));
  border: 2px solid rgba(212,175,55,.25);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3), inset 0 1px 0 rgba(212,175,55,.1);
}
.onh-why-title { font-size: 22px; font-weight: 700; margin-bottom: 24px; color: #f5e6d3; }
.onh-why-list { list-style: none; }
.onh-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #d4c4b0;
}
.onh-check-icon { color: #D4AF37; font-size: 20px; flex-shrink: 0; margin-top: 2px; text-shadow: 0 0 8px rgba(212,175,55,.5); }

/* ===== SERVICES GRID ===== */
.onh-services-section { padding: 80px 24px; background: linear-gradient(180deg, rgba(74,20,140,.06) 0%, transparent 100%); }
.onh-services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.onh-service-card {
  background: linear-gradient(135deg, rgba(138,21,56,.12), rgba(74,20,140,.08));
  border: 2px solid rgba(212,175,55,.2);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.onh-service-card:hover { 
  transform: translateY(-6px); 
  border-color: rgba(212,175,55,.5);
  box-shadow: 0 8px 24px rgba(138,21,56,.4), 0 0 20px rgba(212,175,55,.2);
}
.onh-service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #f5e6d3; }
.onh-service-card p { font-size: 14px; line-height: 1.6; color: #d4c4b0; }
.onh-service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #D4AF37;
  filter: drop-shadow(0 0 12px rgba(212,175,55,.6));
}
.onh-services .onh-services-grid .onh-service-card { text-align: left; padding: 36px 28px; }
.onh-services .onh-service-card h3 { font-size: 22px; margin-bottom: 16px; }
.onh-services .onh-service-card p { font-size: 15px; line-height: 1.7; }

/* ===== EVENTS SECTION ===== */
.onh-events-section { padding: 80px 24px; }
.onh-events-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.onh-event-card {
  background: linear-gradient(135deg, rgba(138,21,56,.12), rgba(74,20,140,.08));
  border: 2px solid rgba(212,175,55,.2);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.onh-event-card:hover { 
  transform: translateY(-6px); 
  border-color: rgba(212,175,55,.5);
  box-shadow: 0 8px 24px rgba(138,21,56,.4), 0 0 20px rgba(212,175,55,.2);
}
.onh-event-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}
.onh-event-badge.available { background: linear-gradient(135deg, rgba(212,175,55,.25), rgba(244,196,48,.2)); color: #D4AF37; border: 1.5px solid rgba(212,175,55,.5); }
.onh-event-badge.last { background: linear-gradient(135deg, rgba(138,21,56,.3), rgba(160,32,64,.25)); color: #F4C430; border: 1.5px solid rgba(212,175,55,.5); }
.onh-event-title { font-size: 22px; font-weight: 700; margin-bottom: 16px; color: #f5e6d3; }
.onh-event-info { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 14px; color: #d4c4b0; }
.onh-event-info-icon { color: #D4AF37; font-size: 16px; filter: drop-shadow(0 0 6px rgba(212,175,55,.5)); }
.onh-event-desc { font-size: 14px; line-height: 1.6; color: #d4c4b0; margin-bottom: 20px; }
.onh-event-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #8B1538, #A02040);
  color: #f5e6d3;
  text-align: center;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid rgba(212,175,55,.3);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.onh-event-btn:hover { 
  background: linear-gradient(135deg, #A02040, #B82850);
  color: #f5e6d3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(138,21,56,.5);
  border-color: rgba(212,175,55,.5);
}

/* ===== CASINOS SECTION ===== */
.onh-casinos-section { padding: 80px 24px; background: rgba(255,255,255,.015); }
.onh-casinos-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.onh-casino-card {
  background: linear-gradient(135deg, rgba(138,21,56,.12), rgba(74,20,140,.08));
  border: 2px solid rgba(212,175,55,.2);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.onh-casino-card:hover { 
  transform: translateY(-6px); 
  border-color: rgba(212,175,55,.5);
  box-shadow: 0 8px 24px rgba(138,21,56,.4), 0 0 20px rgba(212,175,55,.2);
}
.onh-casino-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #f5e6d3; }
.onh-casino-desc { font-size: 14px; line-height: 1.6; color: #d4c4b0; margin-bottom: 16px; }
.onh-casino-location { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #d4c4b0; margin-bottom: 12px; }
.onh-casino-location-icon { color: #D4AF37; filter: drop-shadow(0 0 6px rgba(212,175,55,.5)); }
.onh-casino-rating { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #d4c4b0; }
.onh-stars { color: #D4AF37; font-size: 16px; letter-spacing: 2px; text-shadow: 0 0 8px rgba(212,175,55,.5); }

/* ===== WHY SECTION ===== */
.onh-why-section { padding: 80px 24px; }
.onh-why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.onh-why-card-small {
  background: linear-gradient(135deg, rgba(138,21,56,.12), rgba(74,20,140,.08));
  border: 2px solid rgba(212,175,55,.2);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.onh-why-card-small:hover { 
  transform: translateY(-6px); 
  border-color: rgba(212,175,55,.5);
  box-shadow: 0 8px 24px rgba(138,21,56,.4), 0 0 20px rgba(212,175,55,.2);
}
.onh-why-icon {
  font-size: 36px;
  margin-bottom: 16px;
  color: #D4AF37;
  filter: drop-shadow(0 0 12px rgba(212,175,55,.6));
}
.onh-why-card-small h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: #f5e6d3; }
.onh-why-card-small p { font-size: 14px; line-height: 1.6; color: #d4c4b0; }

/* ===== GAMES (offline-casino) ===== */
.onh-games-section { padding: 60px 24px; }
.onh-games-section .onh-section-title { font-size: 32px; letter-spacing: 1px; }
.onh-games-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.onh-game-card {
  background: linear-gradient(135deg, rgba(138,21,56,.12), rgba(74,20,140,.08));
  border: 2px solid rgba(212,175,55,.2);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.onh-game-card:hover { 
  transform: translateY(-6px); 
  border-color: rgba(212,175,55,.5);
  box-shadow: 0 8px 24px rgba(138,21,56,.4), 0 0 20px rgba(212,175,55,.2);
}
.onh-game-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.onh-game-icon { font-size: 32px; color: #D4AF37; filter: drop-shadow(0 0 12px rgba(212,175,55,.6)); }
.onh-game-title-wrap { flex: 1; }
.onh-game-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: #f5e6d3; }
.onh-difficulty-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(124,58,237,.15);
  color: #60a5fa;
  border: 1px solid rgba(124,58,237,.35);
}
.onh-difficulty-badge.easy { background: linear-gradient(135deg, rgba(212,175,55,.25), rgba(244,196,48,.2)); color: #D4AF37; border-color: rgba(212,175,55,.5); }
.onh-difficulty-badge.medium { background: linear-gradient(135deg, rgba(138,21,56,.25), rgba(160,32,64,.2)); color: #F4C430; border-color: rgba(212,175,55,.5); }
.onh-difficulty-badge.hard { background: linear-gradient(135deg, rgba(74,20,140,.3), rgba(106,27,154,.25)); color: #D4AF37; border-color: rgba(212,175,55,.5); }
.onh-game-desc { font-size: 14px; line-height: 1.6; color: #d4c4b0; }

/* ===== PACKAGES ===== */
.onh-packages-section { padding: 60px 24px; background: linear-gradient(180deg, rgba(74,20,140,.06) 0%, transparent 100%); }
.onh-packages-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.onh-package-card {
  background: linear-gradient(135deg, rgba(138,21,56,.12), rgba(74,20,140,.08));
  border: 2px solid rgba(212,175,55,.2);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.onh-package-card:hover { 
  transform: translateY(-6px); 
  border-color: rgba(212,175,55,.5);
  box-shadow: 0 8px 24px rgba(138,21,56,.4), 0 0 20px rgba(212,175,55,.2);
}
.onh-package-card.featured { border-color: rgba(212,175,55,.6); border-width: 3px; }
.onh-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, #D4AF37, #F4C430);
  color: #1A0D1F;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(212,175,55,.5);
}
.onh-package-name { font-size: 24px; font-weight: 700; margin-bottom: 12px; color: #f5e6d3; text-align: center; }
.onh-package-price { font-size: 36px; font-weight: 900; color: #D4AF37; text-align: center; margin-bottom: 8px; text-shadow: 0 0 12px rgba(212,175,55,.5); }
.onh-package-price span { font-size: 18px; font-weight: 600; color: #d4c4b0; }
.onh-package-details { text-align: center; font-size: 14px; color: #d4c4b0; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 2px solid rgba(212,175,55,.2); }
.onh-package-features { list-style: none; margin-bottom: 28px; }
.onh-package-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #d4c4b0;
}
.onh-package-features .onh-check-icon { font-size: 18px; color: #D4AF37; }
.onh-package-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #8B1538, #A02040);
  color: #f5e6d3;
  text-align: center;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid rgba(212,175,55,.3);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.onh-package-btn:hover { 
  background: linear-gradient(135deg, #A02040, #B82850);
  color: #f5e6d3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(138,21,56,.5);
  border-color: rgba(212,175,55,.5);
}

/* ===== VALUE / DISCLAIMER / FEATURES (casino-hotel) ===== */
.onh-value { padding: 60px 24px; text-align: center; max-width: 900px; margin: 0 auto; }
.onh-value h2 { font-size: 36px; font-weight: 900; margin-bottom: 20px; color: #f5e6d3; letter-spacing: 2px; text-shadow: 0 2px 4px rgba(0,0,0,.3); }
.onh-value p { font-size: 16px; line-height: 1.8; color: #d4c4b0; }
.onh-disclaimer-section {
  padding: 50px 24px;
  background: linear-gradient(180deg, rgba(74,20,140,.1) 0%, transparent 100%);
  border-top: 2px solid rgba(212,175,55,.2);
  border-bottom: 2px solid rgba(212,175,55,.2);
}
.onh-disc-container { max-width: 900px; margin: 0 auto; text-align: center; }
.onh-disc-title { font-size: 28px; font-weight: 900; margin-bottom: 24px; color: #f5e6d3; letter-spacing: 1px; text-shadow: 0 2px 4px rgba(0,0,0,.3); }
.onh-disc-text { font-size: 15px; line-height: 1.8; color: #d4c4b0; margin-bottom: 16px; }
.onh-features { padding: 60px 24px; }
.onh-features-title { text-align: center; font-size: 32px; font-weight: 900; margin-bottom: 40px; color: #f5e6d3; letter-spacing: 2px; text-shadow: 0 2px 4px rgba(0,0,0,.3); }
.onh-features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.onh-feature-card {
  background: linear-gradient(135deg, rgba(138,21,56,.12), rgba(74,20,140,.08));
  border: 2px solid rgba(212,175,55,.2);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.onh-feature-card:hover { 
  transform: translateY(-6px); 
  border-color: rgba(212,175,55,.5);
  box-shadow: 0 8px 24px rgba(138,21,56,.4), 0 0 20px rgba(212,175,55,.2);
}
.onh-feature-icon { font-size: 32px; margin-bottom: 16px; color: #D4AF37; filter: drop-shadow(0 0 12px rgba(212,175,55,.6)); }
.onh-feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: #f5e6d3; }
.onh-feature-card p { font-size: 14px; line-height: 1.6; color: #d4c4b0; }
.onh-cta { padding: 80px 24px; text-align: center; }
.onh-cta h2 { font-size: 36px; font-weight: 900; margin-bottom: 20px; color: #f5e6d3; text-shadow: 0 2px 4px rgba(0,0,0,.3); }
.onh-cta p { font-size: 16px; line-height: 1.8; color: #d4c4b0; max-width: 700px; margin: 0 auto 32px; }

/* ===== PAGE HEADER (legal, contact, faq) ===== */
.onh-page-header { padding: 60px 24px 40px; text-align: center; }
.onh-page-title { font-size: 42px; font-weight: 900; margin-bottom: 12px; color: #f5e6d3; text-shadow: 0 2px 4px rgba(0,0,0,.3); }
.onh-page-update { font-size: 14px; color: #c9a882; }
.onh-page-subtitle { font-size: 18px; color: #d4c4b0; }

/* ===== CONTENT (legal pages) ===== */
.onh-content { padding: 0 24px 60px; }
.onh-section { margin-bottom: 48px; }
.onh-section-number {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #D4AF37, #F4C430);
  color: #1A0D1F;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-weight: 900;
  font-size: 16px;
  margin-right: 12px;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(212,175,55,.4);
}
.onh-content .onh-section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #f5e6d3;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  border: none;
  padding: 0;
}
.onh-content .onh-section-text {
  margin-left: 44px;
}
.onh-list { margin-left: 44px; margin-top: 12px; margin-bottom: 16px; }
.onh-list li { font-size: 16px; line-height: 1.8; color: #d4c4b0; margin-bottom: 10px; padding-left: 8px; }
.onh-list li:last-child { margin-bottom: 0; }
.onh-contact-info { margin-left: 44px; margin-top: 12px; }
.onh-contact-item { font-size: 16px; line-height: 1.8; color: #d4c4b0; margin-bottom: 8px; }
.onh-contact-item strong { color: #D4AF37; font-weight: 600; text-shadow: 0 0 8px rgba(212,175,55,.4); }
.onh-contact-item a { color: #D4AF37; text-decoration: none; transition: color 0.2s; }
.onh-contact-item a:hover { color: #F4C430; text-shadow: 0 0 8px rgba(212,175,55,.5); }
.onh-section-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 24px;
  color: #D4AF37;
  margin-left: 44px;
  text-shadow: 0 0 8px rgba(212,175,55,.4);
}
.onh-warning {
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(244,196,48,.1));
  border-left: 4px solid #D4AF37;
  padding: 16px 20px;
  margin: 20px 0 20px 44px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.onh-warning-text { font-size: 15px; line-height: 1.7; color: #D4AF37; }

/* ===== CONTACT PAGE ===== */
.onh-contact-section { padding: 40px 24px 80px; }
.onh-contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.onh-form-card {
  background: linear-gradient(135deg, rgba(138,21,56,.15), rgba(74,20,140,.1));
  border: 2px solid rgba(212,175,55,.25);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3), inset 0 1px 0 rgba(212,175,55,.1);
}
.onh-form-title { font-size: 24px; font-weight: 700; margin-bottom: 28px; color: #f5e6d3; }
.onh-form-group { margin-bottom: 24px; }
.onh-form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: #f5e6d3; }
.onh-form-input,
.onh-form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(26,13,31,.6);
  border: 2px solid rgba(212,175,55,.2);
  border-radius: 12px;
  color: #f5e6d3;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.onh-form-input:focus,
.onh-form-textarea:focus {
  outline: none;
  border-color: rgba(212,175,55,.6);
  background: rgba(26,13,31,.8);
  box-shadow: 0 0 12px rgba(212,175,55,.3);
}
.onh-form-input::placeholder,
.onh-form-textarea::placeholder { color: #c9a882; }
.onh-form-textarea { min-height: 140px; resize: vertical; }
.onh-form-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #8B1538, #A02040);
  color: #f5e6d3;
  border: 2px solid rgba(212,175,55,.3);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.onh-form-btn:hover { 
  background: linear-gradient(135deg, #A02040, #B82850);
  color: #f5e6d3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(138,21,56,.5);
  border-color: rgba(212,175,55,.5);
}
.onh-info-card {
  background: linear-gradient(135deg, rgba(138,21,56,.15), rgba(74,20,140,.1));
  border: 2px solid rgba(212,175,55,.25);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3), inset 0 1px 0 rgba(212,175,55,.1);
}
.onh-info-card:last-child { margin-bottom: 0; }
.onh-info-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.onh-info-icon { font-size: 24px; color: #D4AF37; filter: drop-shadow(0 0 8px rgba(212,175,55,.5)); }
.onh-info-title { font-size: 18px; font-weight: 700; color: #f5e6d3; }
.onh-info-content { font-size: 15px; line-height: 1.8; color: #d4c4b0; }
.onh-info-item { margin-bottom: 8px; }
.onh-info-item:last-child { margin-bottom: 0; }
.onh-info-item a { color: #D4AF37; text-decoration: none; transition: color 0.2s; }
.onh-info-item a:hover { color: #F4C430; text-shadow: 0 0 8px rgba(212,175,55,.5); }

/* ===== FAQ ===== */
.onh-faq-section { padding: 40px 24px 80px; }
.onh-faq-item {
  background: linear-gradient(135deg, rgba(138,21,56,.12), rgba(74,20,140,.08));
  border: 2px solid rgba(212,175,55,.2);
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.onh-faq-item:hover { 
  border-color: rgba(212,175,55,.4);
  box-shadow: 0 4px 12px rgba(138,21,56,.3);
}
.onh-faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: background 0.3s;
}
.onh-faq-question:hover { background: rgba(212,175,55,.05); }
.onh-faq-question-text { font-size: 18px; font-weight: 600; color: #f5e6d3; flex: 1; }
.onh-faq-icon { font-size: 20px; color: #D4AF37; transition: transform 0.3s; margin-left: 16px; filter: drop-shadow(0 0 6px rgba(212,175,55,.5)); }
.onh-faq-item.active .onh-faq-icon { transform: rotate(180deg); }
.onh-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.onh-faq-item.active .onh-faq-answer { max-height: 500px; }
.onh-faq-answer-content { padding: 0 24px 24px; font-size: 16px; line-height: 1.7; color: #d4c4b0; }
.onh-contact-prompt {
  padding: 60px 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(138,21,56,.12), rgba(74,20,140,.08));
  border-radius: 24px;
  margin-top: 40px;
  border: 2px solid rgba(212,175,55,.2);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.onh-contact-prompt-text { font-size: 18px; color: #d4c4b0; margin-bottom: 20px; }
.onh-contact-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.2s;
  text-shadow: 0 0 8px rgba(212,175,55,.4);
}
.onh-contact-link:hover { color: #F4C430; text-shadow: 0 0 12px rgba(212,175,55,.6); }
.onh-contact-link::after { content: ' →'; margin-left: 4px; }

/* ===== FOOTER ===== */
.onh-footer {
  border-top: 2px solid rgba(212,175,55,.25);
  padding: 48px 24px 32px;
  background: linear-gradient(180deg, rgba(26,13,31,.95) 0%, rgba(15,5,20,.98) 100%);
  margin-top: 60px;
  box-shadow: 0 -4px 12px rgba(0,0,0,.3);
}
.onh-footgrid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.onh-foot h5 {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(212,175,55,.4);
}
.onh-foot a {
  display: block;
  font-size: 14px;
  color: #d4c4b0;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
}
.onh-foot a:hover { color: #D4AF37; text-shadow: 0 0 8px rgba(212,175,55,.5); }
.onh-copy {
  text-align: center;
  font-size: 12px;
  color: #c9a882;
  padding-top: 24px;
  border-top: 2px solid rgba(212,175,55,.2);
}

/* ===== COOKIE BAR ===== */
.onh-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(26,13,31,.98) 0%, rgba(15,5,20,.98) 100%);
  border-top: 2px solid rgba(212,175,55,.3);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 1000;
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 12px rgba(0,0,0,.4);
}
.onh-cookie-text { flex: 1; font-size: 13px; color: #d4c4b0; line-height: 1.5; }
.onh-cookie-btns { display: flex; gap: 12px; }
.onh-cookie-btn {
  padding: 10px 24px;
  border-radius: 30px;
  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 8px rgba(0,0,0,.3);
}
.onh-cookie-btn.accept { 
  background: linear-gradient(135deg, #8B1538, #A02040);
  color: #f5e6d3;
  border: 2px solid rgba(212,175,55,.3);
}
.onh-cookie-btn.accept:hover { 
  background: linear-gradient(135deg, #A02040, #B82850);
  color: #f5e6d3;
  box-shadow: 0 4px 12px rgba(138,21,56,.5);
  border-color: rgba(212,175,55,.5);
}
.onh-cookie-btn.decline { 
  background: rgba(212,175,55,.15);
  color: #D4AF37;
  border: 2px solid rgba(212,175,55,.4);
}
.onh-cookie-btn.decline:hover { 
  background: rgba(212,175,55,.25);
  border-color: rgba(212,175,55,.6);
  box-shadow: 0 4px 12px rgba(212,175,55,.3);
}

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