/* style/poker.css */

/* Variables for colors */
:root {
  --okbet-primary-color: #F2C14E;
  --okbet-secondary-color: #FFD36B;
  --okbet-card-bg: #111111;
  --okbet-background-color: #0A0A0A;
  --okbet-text-main: #FFF6D6;
  --okbet-border-color: #3A2A12;
  --okbet-glow-color: #FFD36B;
  --okbet-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

/* General page styling */
.page-poker {
  font-family: Arial, sans-serif;
  color: var(--okbet-text-main); /* Ensure text is readable on dark background */
  background-color: var(--okbet-background-color); /* Matches body background */
}

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

.page-poker__section-title {
  font-size: 2.5em;
  color: var(--okbet-primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-poker__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: var(--okbet-text-main);
}

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 70vh;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
}

.page-poker__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-poker__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-poker__hero-title {
  font-size: clamp(2.5em, 5vw, 4.5em); /* Responsive font size for H1 */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--okbet-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-poker__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-poker__btn-primary,
.page-poker__btn-secondary,
.page-poker__btn-tertiary,
.page-poker__btn-small,
.page-poker__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-poker__btn-primary {
  background: var(--okbet-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-poker__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-poker__btn-secondary {
  background: var(--okbet-card-bg);
  color: var(--okbet-primary-color);
  border: 2px solid var(--okbet-primary-color);
}

.page-poker__btn-secondary:hover {
  background: var(--okbet-primary-color);
  color: var(--okbet-card-bg);
  transform: translateY(-3px);
}

.page-poker__btn-tertiary {
  background: var(--okbet-secondary-color);
  color: var(--okbet-background-color);
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 5px;
}

.page-poker__btn-tertiary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-poker__btn-small {
  background: var(--okbet-button-gradient);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  margin-top: 15px;
}

.page-poker__btn-small:hover {
  filter: brightness(1.1);
}

.page-poker__btn-link {
  background: none;
  color: var(--okbet-primary-color);
  border: 1px solid var(--okbet-primary-color);
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  margin-top: 15px;
}

.page-poker__btn-link:hover {
  background: var(--okbet-primary-color);
  color: var(--okbet-card-bg);
}

/* Why OKBET Section */
.page-poker__why-okbet-section {
  padding: 80px 0;
  background-color: var(--okbet-card-bg);
}

.page-poker__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-poker__feature-card {
  background: #1a1a1a;
  border: 1px solid var(--okbet-border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-poker__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  display: block;
}

.page-poker__feature-title {
  font-size: 1.5em;
  color: var(--okbet-primary-color);
  margin-bottom: 15px;
}

.page-poker__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--okbet-text-main);
}

/* Games Section */
.page-poker__games-section {
  padding: 80px 0;
  background-color: var(--okbet-background-color);
}

.page-poker__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-poker__game-card {
  background: var(--okbet-card-bg);
  border: 1px solid var(--okbet-border-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}

.page-poker__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-poker__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-poker__game-title {
  font-size: 1.6em;
  color: var(--okbet-secondary-color);
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-poker__game-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--okbet-text-main);
  padding: 0 20px;
  flex-grow: 1;
}

/* Strategy Section */
.page-poker__strategy-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-poker__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-poker__strategy-item {
  background: var(--okbet-card-bg);
  border: 1px solid var(--okbet-border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-poker__strategy-title {
  font-size: 1.4em;
  color: var(--okbet-primary-color);
  margin-bottom: 10px;
}

.page-poker__strategy-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--okbet-text-main);
}

.page-poker__strategy-cta {
  margin-top: 60px;
}

/* Bonuses Section */
.page-poker__bonuses-section {
  padding: 80px 0;
  background-color: var(--okbet-background-color);
}

.page-poker__bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-poker__bonus-card {
  background: var(--okbet-card-bg);
  border: 1px solid var(--okbet-border-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}

.page-poker__bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-poker__bonus-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-poker__bonus-title {
  font-size: 1.6em;
  color: var(--okbet-secondary-color);
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-poker__bonus-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--okbet-text-main);
  padding: 0 20px;
  flex-grow: 1;
}

/* How to Start Section */
.page-poker__how-to-start-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-poker__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  counter-reset: step-counter;
}

.page-poker__step-card {
  background: var(--okbet-card-bg);
  border: 1px solid var(--okbet-border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--okbet-button-gradient);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px var(--okbet-glow-color);
}

.page-poker__step-title {
  font-size: 1.5em;
  color: var(--okbet-primary-color);
  margin-bottom: 15px;
}

.page-poker__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--okbet-text-main);
  flex-grow: 1;
}

.page-poker__final-cta {
  margin-top: 60px;
}

/* FAQ Section */
.page-poker__faq-section {
  padding: 80px 0;
  background-color: var(--okbet-background-color);
}

.page-poker__faq-list {
  margin-top: 50px;
}