.page-support {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0A192F;
}

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

/* Hero Section */
.page-support-hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
  position: relative;
  overflow: hidden;
}

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

.page-support-hero-section > div {
  position: relative;
  z-index: 1;
}

.page-support-hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-support-hero-description {
  font-size: 1.15em;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.page-support-hero-image-wrapper {
  margin-top: 40px;
  max-width: 900px;
  width: 100%;
}

.page-support-hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.page-support-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-support-btn-primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-support-btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-support-btn-secondary {
  background-color: #1a3a60;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 1em;
}

.page-support-btn-secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-1px);
}

.page-support-btn-outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support-btn-outline:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

/* Section Titles and Descriptions */
.page-support-section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support-section-description {
  font-size: 1.1em;
  color: #C0C0C0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* Categories Section */
.page-support-categories-section {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-support-category-item {
  background-color: #1a3a60;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support-category-item:hover {
  transform: translateY(-5px);
  background-color: #2a4c7a;
}

.page-support-category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-support-category-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-support-category-title a:hover {
  color: #e6c200;
}

.page-support-category-text {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.5;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* CTA Section */
.page-support-cta-section {
  background-color: #0A192F;
  padding: 80px 0;
  text-align: center;
}

.page-support-cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-support-cta-description {
  font-size: 1.2em;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-support-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support-hero-title {
    font-size: 2.8em;
  }
  .page-support-section-title {
    font-size: 2.2em;
  }
  .page-support-cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-support-hero-section {
    padding: 60px 0;
  }
  .page-support-hero-title {
    font-size: 2.4em;
  }
  .page-support-hero-description {
    font-size: 1em;
  }
  .page-support-section-title {
    font-size: 2em;
  }
  .page-support-section-description {
    font-size: 0.95em;
  }
  .page-support-categories-section {
    padding: 60px 0;
  }
  .page-support-categories-grid {
    grid-template-columns: 1fr;
  }
  .page-support-category-item {
    padding: 25px;
  }
  .page-support-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support-cta-title {
    font-size: 2em;
  }
  .page-support-cta-description {
    font-size: 1.1em;
  }
  .page-support-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-support-cta-buttons .page-support-btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-support-hero-section {
    padding: 40px 0;
  }
  .page-support-hero-title {
    font-size: 2em;
  }
  .page-support-hero-description {
    font-size: 0.9em;
  }
  .page-support-section-title {
    font-size: 1.8em;
  }
  .page-support-section-description {
    font-size: 0.9em;
  }
  .page-support-categories-section {
    padding: 40px 0;
  }
  .page-support-category-item {
    padding: 20px;
  }
  .page-support-category-icon {
    width: 50px;
    height: 50px;
  }
  .page-support-category-title {
    font-size: 1.3em;
  }
  .page-support-category-text {
    font-size: 0.9em;
  }
  .page-support-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-support-cta-title {
    font-size: 1.8em;
  }
  .page-support-cta-description {
    font-size: 1em;
  }
  .page-support-cta-buttons .page-support-btn {
    width: 90%;
  }
}