/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  color: rgba(255, 255, 255, 0.9);
  background-color: #1A1A1A;
  line-height: 1.6;
}

.page-support a {
  color: #FFD700;
  text-decoration: none;
}

.page-support a:hover {
  text-decoration: underline;
  color: #b39700;
}

.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-support__btn--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

.page-support__btn--primary:hover {
  background-color: #b39700;
  color: #1A1A1A;
  border-color: #b39700;
}

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

.page-support__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-support__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 15px;
}

.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: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

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

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

.page-support__hero-description {
  font-size: 1.3em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

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

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* FAQs Section */
.page-support__faqs {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

.page-support__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-support__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__faq-answer {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__faq-link {
  display: inline-block;
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid #FFD700;
  padding-bottom: 2px;
}

.page-support__faq-link:hover {
  color: #b39700;
  border-color: #b39700;
}

/* Contact Methods Section */
.page-support__contact-methods {
  padding: 80px 20px;
  background-color: #222222;
}

.page-support__contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-support__contact-item {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-support__contact-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-support__contact-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-support__contact-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

/* Guides Section */
.page-support__guides {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

.page-support__guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-support__guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-support__guide-item h3 {
  padding: 20px 20px 0;
}

.page-support__guide-title {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-support__guide-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-support__guide-title a:hover {
  color: #b39700;
  text-decoration: underline;
}

.page-support__guide-text {
  color: rgba(255, 255, 255, 0.7);
  padding: 0 20px 20px;
  flex-grow: 1;
}

/* Responsible Gambling Section */
.page-support__responsible-gambling {
  padding: 80px 20px;
  background-color: #222222;
}

.page-support__responsible-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #1A1A1A;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-support__responsible-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-support__responsible-text {
  text-align: center;
}

.page-support__responsible-text p {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-support__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-support__hero-content {
    max-width: 50%;
  }

  .page-support__hero-image-wrapper {
    position: static;
    width: 45%;
    height: auto;
    opacity: 1;
  }

  .page-support__hero-image {
    border-radius: 10px;
  }

  .page-support__hero-buttons {
    justify-content: flex-start;
  }

  .page-support__section-title {
    font-size: 3em;
  }

  .page-support__responsible-content {
    flex-direction: row;
    text-align: left;
  }

  .page-support__responsible-text {
    text-align: left;
  }

  .page-support__responsible-image {
    margin-right: 40px;
  }
}

@media (max-width: 767px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }

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

  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__btn {
    width: 100%;
  }

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

  .page-support__section-description {
    font-size: 0.9em;
  }

  .page-support__contact-item, .page-support__faq-item, .page-support__guide-item {
    padding: 20px;
  }

  .page-support__faq-question {
    font-size: 1.2em;
  }

  .page-support__contact-title {
    font-size: 1.3em;
  }

  .page-support__responsible-content {
    flex-direction: column;
  }

  .page-support__responsible-image {
    margin-bottom: 30px;
  }
}