:root {
  --ph333-primary: #F2C14E;
  --ph333-accent: #FFD36B;
  --ph333-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --ph333-card-bg: #111111;
  --ph333-page-bg: #0A0A0A;
  --ph333-text-main: #FFF6D6;
  --ph333-border: #3A2A12;
  --ph333-glow: #FFD36B;
  --header-offset: 120px;
  --mobile-header-offset: 100px;
}

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

.page-live-baccarat__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-live-baccarat__section-padding {
  padding: 60px 0;
}

.page-live-baccarat__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  color: var(--ph333-primary);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-live-baccarat__sub-title {
  font-size: clamp(1.5em, 3vw, 2em);
  color: var(--ph333-primary);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-live-baccarat__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--ph333-text-main);
  text-align: center;
}

.page-live-baccarat__text-block a {
  color: var(--ph333-accent);
  text-decoration: underline;
}

.page-live-baccarat__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-live-baccarat__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--ph333-text-main);
}

.page-live-baccarat__list li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--ph333-accent);
  font-size: 0.9em;
  line-height: 1;
}

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

.page-live-baccarat__btn-primary {
  background: var(--ph333-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-live-baccarat__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-live-baccarat__btn-secondary {
  background: #222222;
  color: var(--ph333-primary);
  border: 2px solid var(--ph333-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-live-baccarat__btn-secondary:hover {
  background: var(--ph333-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.6);
}

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

.page-live-baccarat__cta-buttons--center {
  justify-content: center;
  margin-top: 40px;
}

.page-live-baccarat img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-live-baccarat__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset);
  background-color: #000000;
}

.page-live-baccarat__hero-image-wrapper {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.page-live-baccarat__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.page-live-baccarat__hero-content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 10px;
  margin-top: -80px;
}

.page-live-baccarat__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: var(--ph333-primary);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-live-baccarat__hero-description {
  font-size: 1.3em;
  color: var(--ph333-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live-baccarat__image-content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-live-baccarat__image-wrapper,
.page-live-baccarat__text-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-live-baccarat__content-image {
  border: 1px solid var(--ph333-border);
  box-shadow: 0 0 20px rgba(242, 193, 78, 0.2);
}

.page-live-baccarat__dark-section {
  background-color: var(--ph333-card-bg);
  color: var(--ph333-text-main);
}

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

.page-live-baccarat__card {
  background-color: var(--ph333-card-bg);
  border: 1px solid var(--ph333-border);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  color: var(--ph333-text-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-baccarat__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 211, 107, 0.3);
}

.page-live-baccarat__card-title {
  font-size: 1.4em;
  color: var(--ph333-primary);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live-baccarat__card-text {
  font-size: 1em;
  color: var(--ph333-text-main);
}

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

.page-live-baccarat__feature-card {
  background-color: var(--ph333-card-bg);
  border: 1px solid var(--ph333-border);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-live-baccarat__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.3);
}

.page-live-baccarat__feature-icon {
  width: 100%;
  height: auto;
  max-height: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-live-baccarat__feature-title {
  font-size: 1.3em;
  color: var(--ph333-primary);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live-baccarat__feature-description {
  color: var(--ph333-text-main);
  font-size: 0.95em;
}

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

.page-live-baccarat__promo-card {
  background-color: var(--ph333-card-bg);
  border: 1px solid var(--ph333-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease;
}

.page-live-baccarat__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.3);
}

.page-live-baccarat__promo-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 0;
  min-width: 200px;
  min-height: 200px;
}

.page-live-baccarat__promo-title {
  font-size: 1.4em;
  color: var(--ph333-primary);
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-live-baccarat__promo-description {
  color: var(--ph333-text-main);
  font-size: 0.95em;
  margin-bottom: 20px;
  padding: 0 20px;
}