.page-contact {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: var(--body-bg-color, #0A1931);
}

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

.page-contact__hero-section {
  text-align: center;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.page-contact__hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  background: rgba(10, 25, 49, 0.7); /* Semi-transparent dark background for text readability */
  padding: 40px;
  border-radius: 10px;
}

.page-contact__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-contact__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-contact__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

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

.page-contact__channel-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-contact__channel-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-contact__channel-icon {
  width: 250px; /* Min 200px */
  height: 187px; /* Min 200px, maintaining aspect ratio */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-contact__channel-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact__channel-text {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-contact__channel-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__channel-button:hover {
  background-color: #e6c200;
}

.page-contact__form-section {
  padding: 80px 0;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-contact__form-group {
  margin-bottom: 20px;
}

.page-contact__form-label {
  display: block;
  font-size: 1.1em;
  color: #FFD700;
  margin-bottom: 8px;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-size: 1em;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #aaaaaa;
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__form-button {
  display: block;
  width: 100%;
  background-color: #FFD700;
  color: #0A1931;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__form-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-contact__social-media-section {
  padding: 80px 0;
  text-align: center;
}

.page-contact__social-links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.page-contact__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #0A1931;
  font-size: 1.2em;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-link:hover {
  background-color: #e6c200;
  transform: scale(1.1);
}

.page-contact__social-link--facebook::before {
  content: 'f'; /* Placeholder for Font Awesome or similar icon */
  font-family: 'Font Awesome 5 Brands'; /* Assuming Font Awesome is used globally */
}

.page-contact__social-link--twitter::before {
  content: '';
  font-family: 'Font Awesome 5 Brands';
}

.page-contact__social-link--instagram::before {
  content: '';
  font-family: 'Font Awesome 5 Brands';
}

.page-contact__responsible-gaming-section {
  padding: 80px 0;
  text-align: center;
  background-color: rgba(255, 215, 0, 0.05);
}

.page-contact__responsible-gaming-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  border: none;
  cursor: pointer;
}

.page-contact__responsible-gaming-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-contact__location-section {
  padding: 80px 0;
  text-align: center;
}

.page-contact__location-image {
  width: 600px; /* Min 200px */
  height: 360px; /* Min 200px, maintaining aspect ratio */
  object-fit: cover;
  border-radius: 12px;
  margin: 40px auto;
  display: block;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-contact__address-text {
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.page-contact__cta-section {
  background: linear-gradient(135deg, #0A1931, #2c3e50);
  padding: 80px 20px;
  text-align: center;
}

.page-contact__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-contact__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px) scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 3em;
  }
  .page-contact__section-title {
    font-size: 2.2em;
  }
  .page-contact__cta-title {
    font-size: 2.5em;
  }
  .page-contact__location-image {
    width: 100%;
    height: auto;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 60px 15px 30px;
    min-height: 400px;
  }
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-contact__section-title {
    font-size: 2em;
    padding-top: 40px;
  }
  .page-contact__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-contact__channels-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__channel-card {
    padding: 25px;
  }
  .page-contact__channel-icon {
    width: 200px; /* Min 200px */
    height: 150px; /* Min 200px, maintaining aspect ratio */
  }
  .page-contact__channel-title {
    font-size: 1.5em;
  }
  .page-contact__channel-text {
    font-size: 0.95em;
  }
  .page-contact__contact-form {
    padding: 30px;
  }
  .page-contact__form-label {
    font-size: 1em;
  }
  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 10px;
    width: calc(100% - 20px);
  }
  .page-contact__form-button {
    font-size: 1em;
    padding: 12px;
  }
  .page-contact__social-links {
    gap: 15px;
  }
  .page-contact__social-link {
    width: 45px;
    height: 45px;
    font-size: 1.1em;
  }
  .page-contact__responsible-gaming-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-contact__location-image {
    width: 100%;
    height: auto;
    max-width: 400px;
  }
  .page-contact__address-text {
    font-size: 1em;
  }
  .page-contact__cta-title {
    font-size: 2em;
  }
  .page-contact__cta-description {
    font-size: 1em;
  }
  .page-contact__cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }

  /* Ensure content area images do not overflow on mobile */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-container {
    padding: 25px;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__channel-icon {
    width: 200px; /* Min 200px */
    height: 150px; /* Min 200px, maintaining aspect ratio */
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}