/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Default text color on dark backgrounds */
  background-color: #1A237E; /* Main background color */
  line-height: 1.6;
  direction: ltr;
}

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

/* Hero Section */
.page-support__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A237E 0%, #303F9F 100%); /* Deeper indigo gradient */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-support__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
  font-size: 1.2em;
  color: #FFFFFF;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15; /* Subtle background image */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(50%); /* Desaturate and darken for background effect */
  transform: scale(1.1); /* Slightly zoom in to cover edges */
}

/* General Section Styling */
.page-support__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-support__section-intro {
  font-size: 1.1em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Category Grid */
.page-support__categories {
  background-color: #282F8E; /* Slightly lighter indigo for contrast */
  padding: 60px 0;
}

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

.page-support__category-item {
  background-color: #1A237E; /* Dark indigo for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-support__category-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 0 5px #FFD700); /* Gold glow for icons */
}

.page-support__category-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for category titles */
  margin-bottom: 15px;
}

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

.page-support__category-title a:hover {
  color: #FFF;
  text-decoration: underline;
}

.page-support__category-description {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 25px;
  flex-grow: 1; /* Allows description to take available space */
}

/* Call to Action Section */
.page-support__cta {
  background-color: #FFD700; /* Gold background for CTA */
  padding: 80px 20px;
  text-align: center;
  color: #1A237E; /* Dark indigo text on gold */
}

.page-support__cta-title {
  font-size: 2.8em;
  color: #1A237E;
  margin-bottom: 20px;
}

.page-support__cta-description {
  font-size: 1.2em;
  color: #333333; /* Slightly darker text for better contrast on gold */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsible Gambling Section */
.page-support__responsible-gambling {
  padding: 60px 0;
  background-color: #1A237E; /* Back to main dark indigo */
}

/* Buttons */
.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__btn--primary {
  background-color: #FFD700;
  color: #1A237E;
}

.page-support__btn--primary:hover {
  background-color: #E0B800; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-support__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__section-title, .page-support__cta-title {
    font-size: 2.2em;
  }
  .page-support__category-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support__hero {
    padding: 60px 20px;
  }
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title, .page-support__cta-title {
    font-size: 1.8em;
  }
  .page-support__section-intro, .page-support__cta-description {
    font-size: 0.95em;
  }
  .page-support__category-item {
    padding: 25px;
  }
  .page-support__category-title {
    font-size: 1.4em;
  }
  .page-support__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__section-title, .page-support__cta-title {
    font-size: 1.5em;
  }
  .page-support__category-grid {
    grid-template-columns: 1fr;
  }
  .page-support__category-icon {
    width: 60px;
    height: 60px;
  }
  .page-support__category-title {
    font-size: 1.2em;
  }
}