@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  /* Premium Dark Palette */
  --hor-bg-main: #0a0d0b;
  --hor-bg-surface: #111512;
  --hor-bg-surface-hover: #181e19;
  
  /* Rich Gold Palette */
  --hor-gold: #cba358;
  --hor-gold-light: #e6c587;
  --hor-gold-dark: #8c6a28;
  --hor-gold-grad: linear-gradient(135deg, #e6c587 0%, #cba358 50%, #8c6a28 100%);
  
  /* Text */
  --hor-text-main: #f0f0f0;
  --hor-text-muted: #8a968f;
  
  /* Borders & Shadows */
  --hor-border: rgba(255, 255, 255, 0.05);
  --hor-border-gold: rgba(203, 163, 88, 0.25);
  --hor-shadow: 0 20px 40px rgba(0,0,0,0.4);
  
  /* Typography */
  --hor-font-head: 'Playfair Display', serif;
  --hor-font-body: 'Montserrat', sans-serif;
  
  --hor-trans: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  font-family: var(--hor-font-body);
  background-color: var(--hor-bg-main);
  color: var(--hor-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hor-font-head);
  font-weight: 500;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--hor-trans);
}

/* Typography Classes */
.hor-title-main { 
  font-size: clamp(3rem, 5vw, 4.5rem); 
  background: var(--hor-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}
.hor-title-sec { 
  font-size: 2.8rem; 
  color: var(--hor-text-main); 
  margin-bottom: 15px; 
  font-weight: 400;
}
.hor-label {
  display: block;
  font-size: 0.75rem;
  color: var(--hor-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}
.hor-section-sub {
  color: var(--hor-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Layout */
.hor-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.hor-section { padding: 100px 0; }

/* Buttons */
.hor-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hor-gold-grad);
  color: #000;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: var(--hor-trans);
  box-shadow: 0 4px 15px rgba(203, 163, 88, 0.2);
}
.hor-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(203, 163, 88, 0.3);
  filter: brightness(1.1);
}
.hor-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--hor-text-main) !important;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid var(--hor-border) !important;
  cursor: pointer;
  transition: var(--hor-trans);
}
.hor-btn-outline:hover {
  border-color: var(--hor-gold) !important;
  color: var(--hor-gold) !important;
  background: rgba(203, 163, 88, 0.05);
}

/* Header */
.hor-site-header {
  background-color: rgba(10, 13, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--hor-border);
}
.hor-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hor-brand-logo {
  font-family: var(--hor-font-head);
  font-size: 1.5rem;
  color: var(--hor-gold);
  font-weight: 400;
  letter-spacing: 1px;
}
.hor-nav-menu ul {
  display: flex;
  list-style: none;
  gap: 40px;
}
.hor-nav-menu a {
  color: var(--hor-text-muted);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hor-nav-menu a:hover {
  color: var(--hor-text-main);
}
.hor-balance-display {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--hor-gold);
  font-weight: 500;
  font-size: 0.9rem;
  background: rgba(203, 163, 88, 0.05);
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid var(--hor-border-gold);
  letter-spacing: 0.5px;
}

/* Hero */
.hor-hero-wrapper {
  position: relative;
  padding: 160px 0 120px 0;
  text-align: center;
  background: radial-gradient(circle at top center, rgba(203, 163, 88, 0.08) 0%, var(--hor-bg-main) 70%);
  border-bottom: 1px solid var(--hor-border);
}
.hor-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hor-hero-badge { margin-bottom: 40px; }
.hor-badge-gold {
  background: transparent;
  color: var(--hor-gold);
  border: 1px solid var(--hor-border-gold);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
}
.hor-hero-desc {
  font-size: 1.15rem;
  margin: 0 auto 50px auto;
  color: var(--hor-text-muted);
  font-weight: 300;
}
.hor-hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}
.hor-hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  border-top: 1px solid var(--hor-border);
  padding-top: 50px;
}
.hor-stat-item { text-align: center; }
.hor-stat-num {
  display: block;
  font-family: var(--hor-font-head);
  font-size: 2.2rem;
  color: var(--hor-text-main);
  font-weight: 400;
  margin-bottom: 8px;
}
.hor-stat-label {
  font-size: 0.75rem;
  color: var(--hor-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* Section Headers */
.hor-section-header { text-align: center; margin-bottom: 70px; }
.hor-divider {
  width: 40px;
  height: 2px;
  background: var(--hor-gold);
  margin: 25px auto;
  border: none;
  opacity: 0.5;
}

/* Games Grid */
.hor-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}
.hor-game-card {
  background: var(--hor-bg-surface);
  border: 1px solid var(--hor-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--hor-trans);
  display: flex;
  flex-direction: column;
}
.hor-game-card:hover {
  transform: translateY(-8px);
  border-color: var(--hor-border-gold);
  box-shadow: var(--hor-shadow);
  background: var(--hor-bg-surface-hover);
}
.hor-game-visual {
  height: 240px;
  background: radial-gradient(circle at center, #1a221c 0%, var(--hor-bg-main) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--hor-border);
}
.hor-game-icon {
  font-size: 4.5rem;
  filter: drop-shadow(0 0 20px rgba(203, 163, 88, 0.2));
  opacity: 0.9;
}
.hor-game-body {
  padding: 40px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.hor-game-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hor-gold);
  margin-bottom: 15px;
  font-weight: 600;
}
.hor-game-body h3 { 
  font-size: 1.8rem; 
  margin-bottom: 15px;
  color: var(--hor-text-main);
}
.hor-game-desc {
  color: var(--hor-text-muted);
  font-size: 0.95rem;
  margin-bottom: 35px;
  flex-grow: 1;
}
.hor-game-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--hor-border);
  padding-top: 25px;
}
.hor-game-players {
  font-size: 0.75rem;
  color: var(--hor-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hor-game-players strong { color: var(--hor-text-main); }
.hor-play-link {
  color: var(--hor-gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
}
.hor-play-link:hover { color: var(--hor-gold-light); }

/* Features Grid (6 items) */
.hor-features-grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.hor-feature-card {
  background: var(--hor-bg-surface);
  border: 1px solid var(--hor-border);
  padding: 45px 35px;
  border-radius: 12px;
  transition: var(--hor-trans);
}
.hor-feature-card:hover {
  background: var(--hor-bg-surface-hover);
  border-color: var(--hor-border-gold);
}
.hor-feature-icon {
  font-size: 2rem;
  margin-bottom: 25px;
  display: inline-block;
  opacity: 0.8;
}
.hor-feature-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--hor-text-main);
}
.hor-feature-card p {
  color: var(--hor-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* CTA Banner */
.hor-cta-section {
  padding: 40px 0 100px 0;
}
.hor-cta-banner {
  background: radial-gradient(circle at center, var(--hor-bg-surface-hover) 0%, var(--hor-bg-surface) 100%);
  border-radius: 16px;
  padding: 80px 40px;
  text-align: center;
  border: 1px solid var(--hor-border);
  position: relative;
  overflow: hidden;
}
.hor-cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hor-gold), transparent);
  opacity: 0.3;
}
.hor-cta-title {
  font-size: 2.8rem;
  color: var(--hor-text-main);
  margin: 15px 0 25px 0;
}
.hor-cta-desc {
  font-size: 1.05rem;
  color: var(--hor-text-muted);
  max-width: 600px;
  margin: 0 auto 40px auto;
}
.hor-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.hor-cta-note {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Legal & Standard Pages Content */
.hor-page-content {
  background: var(--hor-bg-surface);
  padding: 60px;
  border-radius: 12px;
  border: 1px solid var(--hor-border);
  margin-bottom: 40px;
}
.hor-page-content h1 {
  background: var(--hor-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}
.hor-page-content h2 { color: var(--hor-text-main); margin-top: 40px; margin-bottom: 20px; font-size: 1.8rem;}
.hor-page-content p, .hor-page-content li { margin-bottom: 15px; color: var(--hor-text-muted); font-size: 1.05rem; }
.hor-page-content ul { margin-left: 20px; margin-bottom: 20px; }
.hor-page-content strong { color: var(--hor-text-main); }

/* Footer */
.hor-site-footer {
  background-color: var(--hor-bg-main);
  border-top: 1px solid var(--hor-border);
  padding: 80px 0 40px 0;
}
.hor-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}
.hor-footer-col h4 {
  color: var(--hor-text-main);
  margin-bottom: 25px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hor-footer-col ul { list-style: none; }
.hor-footer-col ul li { margin-bottom: 15px; }
.hor-footer-col ul a { color: var(--hor-text-muted); font-size: 0.95rem; }
.hor-footer-col ul a:hover { color: var(--hor-gold); }
.hor-contact-info { margin-top: 40px; color: #666; font-size: 0.85rem; border-top: 1px solid var(--hor-border); padding-top: 20px;}

/* Compliance Block */
.hor-compliance-block {
  border-top: 1px solid var(--hor-border);
  padding-top: 50px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.hor-compliance-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
  font-size: 0.9rem;
  color: var(--hor-text-muted);
  line-height: 1.6;
  text-align: left;
}
.hor-compliance-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--hor-gold);
  color: var(--hor-gold);
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hor-compliance-strong {
  color: var(--hor-text-main);
  font-weight: 600;
}
.hor-compliance-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}
.hor-compliance-logos img {
  height: 32px;
  opacity: 0.4;
  transition: var(--hor-trans);
  filter: grayscale(100%);
}
.hor-compliance-logos a:hover img {
  opacity: 1;
  filter: grayscale(0%);
}
.hor-copyright {
  text-align: center;
  font-size: 0.8rem;
  color: #555;
}

/* Modals (Age & Cookie) */
.hor-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 13, 11, 0.95);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s;
}
.hor-modal-overlay.active {
  visibility: visible;
  opacity: 1;
}
.hor-modal-box {
  background: var(--hor-bg-surface);
  padding: 50px;
  border-radius: 16px;
  max-width: 550px;
  width: 90%;
  text-align: center;
  border: 1px solid var(--hor-border-gold);
  box-shadow: var(--hor-shadow);
}
.hor-modal-title { color: var(--hor-text-main); font-size: 2.2rem; margin-bottom: 15px;}
.hor-modal-desc { margin-bottom: 30px; color: var(--hor-text-muted); font-size: 1.05rem;}
.hor-checkbox-group {
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 15px;
  margin-bottom: 35px;
  background: rgba(255,255,255,0.02);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--hor-border);
}
.hor-checkbox-group input { margin-top: 5px; cursor: pointer; transform: scale(1.3); accent-color: var(--hor-gold);}
.hor-checkbox-group label { font-size: 0.9rem; color: var(--hor-text-muted); cursor: pointer; user-select: none; line-height: 1.5;}

.hor-cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(17, 21, 18, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border-top: 1px solid var(--hor-border);
}
.hor-cookie-banner.show { bottom: 0; }
.hor-cookie-text { font-size: 0.85rem; max-width: 800px; color: var(--hor-text-muted); }

/* Responsive */
@media (max-width: 900px) {
  .hor-footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hor-header-inner { flex-direction: column; gap: 20px; }
  .hor-nav-menu ul { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .hor-compliance-text { flex-direction: column; text-align: center; }
  .hor-hero-stats { flex-direction: column; gap: 40px; }
  .hor-title-main { font-size: 2.8rem; }
}

.hor-icon { font-size: 24px; font-style: normal; }
