/* style/poker.css */

/* Base styles for the poker page */
.page-poker {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main color on dark body background */
  background-color: #0A0A0A; /* Body background */
}

/* General container for content */
.page-poker__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Section titles */
.page-poker__section-title {
  font-size: clamp(2em, 5vw, 2.8em); /* Responsive font size for H2 */
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #FFD36B; /* Glow color for titles */
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.4);
}

/* Card titles (H3) */
.page-poker__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD36B; /* Glow color for card titles */
}

/* Text blocks */
.page-poker__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6; /* Text Main */
}

/* Highlighted text */
.page-poker__highlight {
  color: #FFD36B; /* Glow color for highlights */
  font-weight: bold;
}

/* Links within content */
.page-poker a {
  color: #F2C14E; /* Main color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-poker a:hover {
  color: #FFD36B; /* Glow color on hover */
  text-decoration: underline;
}

/* Buttons */
.page-poker__btn-primary,
.page-poker__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%; /* Ensure responsiveness */
}