/* style/resources-shbet-latest-login-address.css */

:root {
  --shbet-primary-color: #26A9E0;
  --shbet-secondary-color: #FFFFFF;
  --shbet-login-button-color: #EA7C07;
  --shbet-text-dark: #333333;
  --shbet-text-light: #ffffff;
  --shbet-bg-dark: #1a1a2e; /* From shared.css body background */
}

.page-resources-shbet-latest-login-address {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--shbet-text-light); /* Default text color for dark body bg */
  background-color: var(--shbet-bg-dark);
}

.page-resources-shbet-latest-login-address__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-shbet-latest-login-address__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-shbet-latest-login-address__dark-bg {
  background-color: var(--shbet-primary-color);
  color: var(--shbet-text-light);
}

.page-resources-shbet-latest-login-address__light-bg {
  background-color: var(--shbet-secondary-color);
  color: var(--shbet-text-dark);
}

.page-resources-shbet-latest-login-address__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--shbet-text-light);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-resources-shbet-latest-login-address__section-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

/* Hero Section */
.page-resources-shbet-latest-login-address__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  min-height: 700px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #26A9E0 100%);
  color: var(--shbet-text-light);
  text-align: center;
}

.page-resources-shbet-latest-login-address__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-shbet-latest-login-address__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(20%); /* Allowed for style, not color change */
}

.page-resources-shbet-latest-login-address__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-resources-shbet-latest-login-address__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--shbet-secondary-color);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-resources-shbet-latest-login-address__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.page-resources-shbet-latest-login-address__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-resources-shbet-latest-login-address__btn-primary,
.page-resources-shbet-latest-login-address__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-shbet-latest-login-address__btn-primary {
  background-color: var(--shbet-login-button-color);
  color: var(--shbet-secondary-color);
  border: 2px solid var(--shbet-login-button-color);
}

.page-resources-shbet-latest-login-address__btn-primary:hover {
  background-color: darken(var(--shbet-login-button-color), 10%);
  border-color: darken(var(--shbet-login-button-color), 10%);
  transform: translateY(-2px);
}

.page-resources-shbet-latest-login-address__btn-secondary {
  background-color: transparent;
  color: var(--shbet-secondary-color);
  border: 2px solid var(--shbet-secondary-color);
}

.page-resources-shbet-latest-login-address__btn-secondary:hover {
  background-color: var(--shbet-secondary-color);
  color: var(--shbet-primary-color);
  transform: translateY(-2px);
}

.page-resources-shbet-latest-login-address__button-center {
  margin-top: 30px;
}

/* Advantages Section */
.page-resources-shbet-latest-login-address__advantages-section {
  background-color: var(--shbet-bg-dark);
  color: var(--shbet-text-light);
}

.page-resources-shbet-latest-login-address__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-shbet-latest-login-address__card {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--shbet-text-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-resources-shbet-latest-login-address__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.page-resources-shbet-latest-login-address__card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--shbet-secondary-color);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-resources-shbet-latest-login-address__card-text {
  font-size: 1em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  flex-grow: 1;
}

/* How-to Login Section */
.page-resources-shbet-latest-login-address__how-to-login-section {
  background-color: var(--shbet-primary-color);
  color: var(--shbet-text-light);
}

.page-resources-shbet-latest-login-address__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-shbet-latest-login-address__step-item {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  height: 100%;
}

.page-resources-shbet-latest-login-address__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--shbet-login-button-color);
  color: var(--shbet-secondary-color);
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-resources-shbet-latest-login-address__step-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--shbet-secondary-color);
}

.page-resources-shbet-latest-login-address__step-text {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.8);
}

.page-resources-shbet-latest-login-address__image-center {
  margin-top: 40px;
  text-align: center;
}

.page-resources-shbet-latest-login-address__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  display: block;
  margin: 0 auto;
  min-width: 200px;
  min-height: 200px;
}

/* Troubleshooting Section */
.page-resources-shbet-latest-login-address__troubleshooting-section {
  background-color: var(--shbet-bg-dark);
  color: var(--shbet-text-light);
}

.page-resources-shbet-latest-login-address__troubleshooting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* App Download Section */
.page-resources-shbet-latest-login-address__app-download-section {
  background-color: var(--shbet-primary-color);
  color: var(--shbet-text-light);
}

.page-resources-shbet-latest-login-address__app-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-resources-shbet-latest-login-address__app-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-resources-shbet-latest-login-address__app-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-resources-shbet-latest-login-address__app-image {
  flex: 0 0 auto;
  width: 400px;
  max-width: 100%;
  height: auto;
}

/* Game Showcase Section */
.page-resources-shbet-latest-login-address__game-showcase-section {
  background-color: var(--shbet-bg-dark);
  color: var(--shbet-text-light);
}

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

.page-resources-shbet-latest-login-address__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-shbet-latest-login-address__card-title a {
  color: var(--shbet-secondary-color);
  text-decoration: none;
  font-size: 1.4em;
  transition: color 0.3s ease;
}

.page-resources-shbet-latest-login-address__card-title a:hover {
  color: var(--shbet-login-button-color);
}

/* Video Section */
.page-resources-shbet-latest-login-address__video-section {
  background-color: var(--shbet-primary-color);
  color: var(--shbet-text-light);
}

.page-resources-shbet-latest-login-address__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  margin: 40px auto 0;
}

.page-resources-shbet-latest-login-address__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  display: block;
  max-width: 100%;
}

/* FAQ Section */
.page-resources-shbet-latest-login-address__faq-section {
  background-color: var(--shbet-bg-dark);
  color: var(--shbet-text-light);
}

.page-resources-shbet-latest-login-address__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-resources-shbet-latest-login-address__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-resources-shbet-latest-login-address__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: var(--shbet-secondary-color);
  transition: background-color 0.3s ease;
}

.page-resources-shbet-latest-login-address__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-shbet-latest-login-address__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--shbet-login-button-color);
}

.page-resources-shbet-latest-login-address__faq-item.active .page-resources-shbet-latest-login-address__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-shbet-latest-login-address__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.page-resources-shbet-latest-login-address__faq-item.active .page-resources-shbet-latest-login-address__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 20px;
}

.page-resources-shbet-latest-login-address__faq-answer p {
  margin: 0;
  color: inherit;
}

/* Final CTA Section */
.page-resources-shbet-latest-login-address__cta-final {
  background: linear-gradient(90deg, #26A9E0 0%, #1a1a2e 100%);
  padding: 80px 0;
}

.page-resources-shbet-latest-login-address__cta-final .page-resources-shbet-latest-login-address__section-title {
  color: var(--shbet-secondary-color);
}

.page-resources-shbet-latest-login-address__cta-final .page-resources-shbet-latest-login-address__section-description {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-shbet-latest-login-address__hero-title {
    font-size: 3em;
  }
  .page-resources-shbet-latest-login-address__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-shbet-latest-login-address__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: 600px;
  }
  .page-resources-shbet-latest-login-address__hero-content {
    padding: 15px;
  }
  .page-resources-shbet-latest-login-address__hero-title {
    font-size: 2.5em;
  }
  .page-resources-shbet-latest-login-address__hero-description {
    font-size: 1.1em;
  }
  .page-resources-shbet-latest-login-address__section-title {
    font-size: 2em;
  }
  .page-resources-shbet-latest-login-address__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-resources-shbet-latest-login-address__advantage-grid,
  .page-resources-shbet-latest-login-address__steps-grid,
  .page-resources-shbet-latest-login-address__troubleshooting-grid,
  .page-resources-shbet-latest-login-address__game-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-resources-shbet-latest-login-address__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-shbet-latest-login-address__btn-primary,
  .page-resources-shbet-latest-login-address__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-shbet-latest-login-address__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-resources-shbet-latest-login-address__section,
  .page-resources-shbet-latest-login-address__card,
  .page-resources-shbet-latest-login-address__app-image,
  .page-resources-shbet-latest-login-address__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-resources-shbet-latest-login-address img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-shbet-latest-login-address video,
  .page-resources-shbet-latest-login-address__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-shbet-latest-login-address__app-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-resources-shbet-latest-login-address__app-info {
    text-align: center;
  }
  .page-resources-shbet-latest-login-address__card-image {
    height: 200px;
  }
  .page-resources-shbet-latest-login-address__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-shbet-latest-login-address__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-resources-shbet-latest-login-address__faq-item.active .page-resources-shbet-latest-login-address__faq-answer {
    padding: 15px 20px 20px;
  }
  .page-resources-shbet-latest-login-address__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

@media (max-width: 480px) {
  .page-resources-shbet-latest-login-address__hero-title {
    font-size: 2em;
  }
  .page-resources-shbet-latest-login-address__section-title {
    font-size: 1.8em;
  }
  .page-resources-shbet-latest-login-address__hero-description {
    font-size: 1em;
  }
  .page-resources-shbet-latest-login-address__step-title {
    font-size: 1.5em;
  }
}