:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-color-light: #f5f5f5;
  --bg-color-dark: #26A9E0;
  --login-button-color: #EA7C07;
}

.page-vip-club-exclusive-support-events {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-color, var(--bg-color-light));
}

.page-vip-club-exclusive-support-events__section {
  padding: 60px 20px;
  margin-bottom: 0;
}

.page-vip-club-exclusive-support-events__section:last-of-type {
  padding-bottom: 60px;
}

.page-vip-club-exclusive-support-events__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-vip-club-exclusive-support-events__heading {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-vip-club-exclusive-support-events__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-color-dark);
}

.page-vip-club-exclusive-support-events__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 1.05em;
  color: var(--text-color-dark);
}

.page-vip-club-exclusive-support-events__list li {
  margin-bottom: 10px;
}

.page-vip-club-exclusive-support-events__dark-bg {
  background-color: var(--bg-color-dark);
  color: var(--text-color-light);
}

.page-vip-club-exclusive-support-events__dark-bg .page-vip-club-exclusive-support-events__heading,
.page-vip-club-exclusive-support-events__dark-bg .page-vip-club-exclusive-support-events__paragraph,
.page-vip-club-exclusive-support-events__dark-bg .page-vip-club-exclusive-support-events__list li {
  color: var(--text-color-light);
}

.page-vip-club-exclusive-support-events__light-bg {
  background-color: var(--bg-color-light);
  color: var(--text-color-dark);
}

.page-vip-club-exclusive-support-events__text-highlight {
  color: var(--login-button-color);
  font-weight: bold;
}

/* Hero Section */
.page-vip-club-exclusive-support-events__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  overflow: hidden;
}

.page-vip-club-exclusive-support-events__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-vip-club-exclusive-support-events__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-vip-club-exclusive-support-events__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-club-exclusive-support-events__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-vip-club-exclusive-support-events__hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-color-light);
  line-height: 1.1;
}

.page-vip-club-exclusive-support-events__hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-color-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club-exclusive-support-events__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--login-button-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club-exclusive-support-events__cta-button:hover {
  background: #d86c06; /* Slightly darker orange */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-vip-club-exclusive-support-events__cta-button--large {
  padding: 18px 50px;
  font-size: 1.4em;
}

.page-vip-club-exclusive-support-events__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-vip-club-exclusive-support-events__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-vip-club-exclusive-support-events__text-block {
  flex: 1;
  min-width: 300px;
}