/* style/original.css */

:root {
  --okbet-primary: #F2C14E;
  --okbet-secondary: #FFD36B;
  --okbet-card-bg: #111111;
  --okbet-bg: #0A0A0A;
  --okbet-text-main: #FFF6D6;
  --okbet-border: #3A2A12;
  --okbet-glow: #FFD36B;
  --okbet-btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-original {
  background-color: var(--okbet-bg);
  color: var(--okbet-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-original__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-original__section {
  padding: 60px 0;
}

.page-original__dark-section {
  background-color: var(--okbet-card-bg);
}

.page-original__main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--okbet-primary);
  text-align: center;
  margin-bottom: 20px;
}

.page-original__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--okbet-primary);
  text-align: center;
  margin-bottom: 20px;
}

.page-original__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--okbet-text-main);
}

.page-original__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}