.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background-color: #1a0033;
}

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

.page-support-hero-section {
  background: linear-gradient(135deg, #330066, #5a008c);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-support-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_pattern,gaming,subtle]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-support-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-support-hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-support-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-support-section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #c0c0c0;
}

.page-support-highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-support-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
}

.page-support-button-primary {
  background-color: #FFD700;
  color: #330066;
  border: 2px solid #FFD700;
}

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

.page-support-button-secondary {
  background-color: #330066;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support-button-secondary:hover {
  background-color: #4d0099;
  transform: translateY(-3px);
}

.page-support-faq-section {
  padding: 60px 0;
  background-color: #1a0033;
}

.page-support-faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-support-faq-item {
  background-color: #2a0050;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support-faq-item-title {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-support-faq-item-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support-faq-item-title a:hover {
  color: #fff;
}

.page-support-faq-item-description {
  font-size: 0.95em;
  color: #b0b0b0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support-contact-section {
  padding: 60px 0;
  background-color: #1a0033;
}

.page-support-contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-support-contact-card {
  background-color: #2a0050;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support-contact-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-support-contact-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-support-contact-card-description {
  font-size: 0.95em;
  color: #b0b0b0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support-resources-section {
  padding: 60px 0;
  background-color: #1a0033;
}

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

.page-support-resource-item {
  background-color: #2a0050;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-support-resource-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-support-resource-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-support-resource-item p {
  font-size: 0.95em;
  color: #b0b0b0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-support-resource-item .page-support-button {
  margin: 0 20px 20px;
  text-align: center;
}

.page-support-cta-bottom {
  background: linear-gradient(90deg, #330066, #FFD700);
  padding: 60px 0;
  text-align: center;
  color: #fff;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.page-support-cta-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_light_pattern,gaming,subtle]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-support-cta-title {
  font-size: 3em;
  color: #330066;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.page-support-cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #220044;
  position: relative;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support-hero-title {
    font-size: 2.5em;
  }

  .page-support-section-title {
    font-size: 2em;
  }

  .page-support-hero-description,
  .page-support-section-subtitle {
    font-size: 1em;
  }

  .page-support-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-support-contact-methods,
  .page-support-resource-grid {
    grid-template-columns: 1fr;
  }

  .page-support-cta-title {
    font-size: 2.2em;
  }

  .page-support-cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-support-hero-title {
    font-size: 2em;
  }

  .page-support-section-title {
    font-size: 1.8em;
  }

  .page-support-hero-description,
  .page-support-section-subtitle {
    font-size: 0.9em;
  }

  .page-support-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-support-cta-title {
    font-size: 1.8em;
  }
}