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

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

/* --- General Layout --- */
.page-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-live__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-live__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 15px;
}

.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Primary Button */
.page-live__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-live__btn-primary:hover {
  background: linear-gradient(180deg, #FFE080 0%, #E6B02B 100%);
}

/* Secondary Button */
.page-live__btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border);
}

.page-live__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-live__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-live__cta-buttons--center {
  justify-content: center;
}

/* --- Hero Section --- */
.page-live__hero-section {
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
  padding-top: var(--header-offset, 120px);
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-live__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-live__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  object-fit: cover;
}

.page-live__hero-text-block {
  text-align: center;
  max-width: 900px;
  color: #ffffff;
}

.page-live__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.page-live__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ffffff;
}

/* --- About Section --- */
.page-live__about-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  color: var(--text-main);
}

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

.page-live__feature-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-main);
}

/* --- Games Section --- */
.page-live__games-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  color: var(--text-main);
}

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

.page-live__game-category-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
}

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

.page-live__game-category-card p {
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-live__game-category-card .page-live__card-title {
  padding: 0 20px;
}

/* --- Promo Section --- */
.page-live__promo-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  color: var(--text-main);
}

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

.page-live__promo-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-main);
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-live__promo-card .page-live__card-title,
.page-live__promo-card p {
  padding: 0 20px;
}

.page-live__promo-card .page-live__btn-primary,
.page-live__promo-card .page-live__btn-secondary {
  margin-top: 20px;
  align-self: center;
}

/* --- Getting Started Section --- */
.page-live__getting-started-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  color: var(--text-main);
}

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

.page-live__step-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__step-card .page-live__btn-primary,
.page-live__step-card .page-live__btn-secondary {
  margin-top: 20px;
  align-self: center;
}

/* --- Mobile App Section --- */
.page-live__mobile-app-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  color: var(--text-main);
}

.page-live__mobile-app-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-live__mobile-app-text {
  flex: 1;
}

.page-live__mobile-app-image {
  flex-shrink: 0;
  width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* --- FAQ Section --- */
.page-live__faq-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  color: var(--text-main);
}

.page-live__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__faq-item {
  background-color: var(--card-bg);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: var(--card-bg);
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
}

.page-live__faq-item:last-of-type .page-live__faq-question {
  border-bottom: none;
}

.page-live__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-live__faq-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
  color: var(--text-main);
}

.page-live__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-main);
  transition: transform 0.3s ease;
}

.page-live__faq-item.active .page-live__faq-toggle {
  transform: rotate(45deg);
}

.page-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: var(--card-bg);
  color: var(--text-main);
}