:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #008000; /* Green */
    --dark-bg-1: #0d0d0d; /* From shared.css */
    --text-light: #ffffff;
    --text-dark: #333333;
    --card-bg-dark: rgba(255, 255, 255, 0.08);
    --card-bg-light: #ffffff;
    --border-color-light: #e0e0e0;
}

.page-resources-mobile-betting-app-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Assuming dark-bg-1 is dark */
    background-color: var(--dark-bg-1);
}

/* Fixed header spacing */
.page-resources-mobile-betting-app-guide__hero-section {
    padding-top: 120px; /* Adjust based on shared header height */
}

.page-resources-mobile-betting-app-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-mobile-betting-app-guide__hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a4d0a 100%);
    color: var(--text-light);
    text-align: center;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-resources-mobile-betting-app-guide__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: bold;
}

.page-resources-mobile-betting-app-guide__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #f0f0f0;
}

.page-resources-mobile-betting-app-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-mobile-betting-app-guide__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-resources-mobile-betting-app-guide__cta-button--primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.page-resources-mobile-betting-app-guide__cta-button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-mobile-betting-app-guide__cta-button--secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-mobile-betting-app-guide__cta-button--secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-resources-mobile-betting-app-guide__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-resources-mobile-betting-app-guide__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #cccccc;
}

.page-resources-mobile-betting-app-guide__dark-bg {
    background-color: #1a1a1a; /* Slightly lighter dark for contrast */
    color: var(--text-light);
    padding-bottom: 60px;
}

.page-resources-mobile-betting-app-guide__light-bg {
    background-color: var(--card-bg-light);
    color: var(--text-dark);
    padding-bottom: 60px;
}

.page-resources-mobile-betting-app-guide__card {
    background: var(--card-bg-dark);
    color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-resources-mobile-betting-app-guide__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.page-resources-mobile-betting-app-guide__link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-mobile-betting-app-guide__link:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Advantages Section */
.page-resources-mobile-betting-app-guide__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

.page-resources-mobile-betting-app-guide__advantage-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-resources-mobile-betting-app-guide__advantage-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-mobile-betting-app-guide__advantage-description {
    font-size: 0.95em;
    color: #cccccc;
}

/* Download Guide Section */
.page-resources-mobile-betting-app-guide__download-guide-section {
    background-color: var(--dark-bg-1);
    color: var(--text-light);
    padding-bottom: 60px;
}

.page-resources-mobile-betting-app-guide__platform-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-resources-mobile-betting-app-guide__platform-item {
    background: var(--card-bg-dark);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.page-resources-mobile-betting-app-guide__platform-title {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.page-resources-mobile-betting-app-guide__platform-image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-mobile-betting-app-guide__download-steps {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
    font-size: 1em;
    color: #cccccc;
    text-align: left;
}

.page-resources-mobile-betting-app-guide__download-steps li {
    margin-bottom: 10px;
}

.page-resources-mobile-betting-app-guide__download-steps strong {
    color: var(--primary-color);
}

.page-resources-mobile-betting-app-guide__btn-primary {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.page-resources-mobile-betting-app-guide__btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-mobile-betting-app-guide__note {
    text-align: center;
    font-style: italic;
    margin-top: 50px;
    color: #aaaaaa;
    font-size: 0.9em;
}

/* Registration Section */
.page-resources-mobile-betting-app-guide__registration-section {
    background-color: #1a1a1a;
    color: var(--text-light);
    padding-bottom: 60px;
}

.page-resources-mobile-betting-app-guide__content-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-resources-mobile-betting-app-guide__content-item {
    background: var(--card-bg-dark);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-mobile-betting-app-guide__content-subtitle {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.page-resources-mobile-betting-app-guide__content-item p {
    color: #cccccc;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-resources-mobile-betting-app-guide__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-mobile-betting-app-guide__center-cta {
    text-align: center;
    margin-top: 50px;
}

/* Products Section */
.page-resources-mobile-betting-app-guide__products-section {
    background-color: var(--dark-bg-1);
    color: var(--text-light);
    padding-bottom: 60px;
}

.page-resources-mobile-betting-app-guide__products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-mobile-betting-app-guide__product-item {
    padding: 25px;
}

.page-resources-mobile-betting-app-guide__product-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-mobile-betting-app-guide__product-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-resources-mobile-betting-app-guide__product-link {
    color: inherit;
    text-decoration: none;
}

.page-resources-mobile-betting-app-guide__product-link:hover {
    text-decoration: underline;
}

.page-resources-mobile-betting-app-guide__product-description {
    font-size: 0.9em;
    color: #cccccc;
}

/* FAQ Section */
.page-resources-mobile-betting-app-guide__faq-section {
    background-color: #1a1a1a;
    color: var(--text-light);
    padding-bottom: 60px;
}

.page-resources-mobile-betting-app-guide__faq-list {
    margin-top: 40px;
}

.page-resources-mobile-betting-app-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-mobile-betting-app-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: #cccccc;
  background: #2a2a2a;
}

.page-resources-mobile-betting-app-guide__faq-item.active .page-resources-mobile-betting-app-guide__faq-answer {
  max-height: 2000px !important; 
  padding: 20px 15px !important;
  opacity: 1;
  border-radius: 0 0 5px 5px;
}

.page-resources-mobile-betting-app-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--card-bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-mobile-betting-app-guide__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-resources-mobile-betting-app-guide__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-resources-mobile-betting-app-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-resources-mobile-betting-app-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-mobile-betting-app-guide__faq-item.active .page-resources-mobile-betting-app-guide__faq-toggle {
  color: var(--text-light);
  transform: rotate(45deg);
}

/* Contact Section */
.page-resources-mobile-betting-app-guide__contact-section {
    background-color: var(--dark-bg-1);
    color: var(--text-light);
    padding-bottom: 60px;
}

.page-resources-mobile-betting-app-guide__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-mobile-betting-app-guide__contact-item {
    padding: 30px;
    background: var(--card-bg-dark);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-mobile-betting-app-guide__contact-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-mobile-betting-app-guide__contact-item p {
    color: #cccccc;
    margin-bottom: 25px;
    font-size: 0.95em;
}

.page-resources-mobile-betting-app-guide__btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.page-resources-mobile-betting-app-guide__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-mobile-betting-app-guide__main-title {
        font-size: 2.8em;
    }
    .page-resources-mobile-betting-app-guide__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-resources-mobile-betting-app-guide__hero-section {
        padding-top: 100px !important; /* Mobile fixed header spacing */
        padding-bottom: 60px;
    }
    .page-resources-mobile-betting-app-guide__main-title {
        font-size: 2.2em;
    }
    .page-resources-mobile-betting-app-guide__hero-description {
        font-size: 1em;
    }
    .page-resources-mobile-betting-app-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-resources-mobile-betting-app-guide__cta-button,
    .page-resources-mobile-betting-app-guide__btn-primary,
    .page-resources-mobile-betting-app-guide__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
    }
    .page-resources-mobile-betting-app-guide__section-title {
        font-size: 1.8em;
        padding-top: 40px;
    }
    .page-resources-mobile-betting-app-guide__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-resources-mobile-betting-app-guide__advantages-grid,
    .page-resources-mobile-betting-app-guide__platform-sections,
    .page-resources-mobile-betting-app-guide__content-block,
    .page-resources-mobile-betting-app-guide__products-grid,
    .page-resources-mobile-betting-app-guide__contact-methods {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    .page-resources-mobile-betting-app-guide__card {
        padding: 25px;
    }
    .page-resources-mobile-betting-app-guide__advantage-title {
        font-size: 1.3em;
    }
    .page-resources-mobile-betting-app-guide__platform-item {
        padding: 30px 20px;
    }
    .page-resources-mobile-betting-app-guide__platform-title {
        font-size: 1.6em;
    }
    .page-resources-mobile-betting-app-guide__download-steps {
        padding-left: 20px;
    }
    .page-resources-mobile-betting-app-guide__content-subtitle {
        font-size: 1.5em;
    }
    .page-resources-mobile-betting-app-guide__product-image {
        height: 180px;
    }
    .page-resources-mobile-betting-app-guide__product-title {
        font-size: 1.2em;
    }
    .page-resources-mobile-betting-app-guide__faq-question h3 {
        font-size: 1em;
    }
    .page-resources-mobile-betting-app-guide__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
    .page-resources-mobile-betting-app-guide__faq-item.active .page-resources-mobile-betting-app-guide__faq-answer {
        padding: 15px !important;
    }
    .page-resources-mobile-betting-app-guide__contact-title {
        font-size: 1.4em;
    }

    /* Image responsive */
    .page-resources-mobile-betting-app-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .page-resources-mobile-betting-app-guide__container,
    .page-resources-mobile-betting-app-guide__advantages-section,
    .page-resources-mobile-betting-app-guide__download-guide-section,
    .page-resources-mobile-betting-app-guide__registration-section,
    .page-resources-mobile-betting-app-guide__products-section,
    .page-resources-mobile-betting-app-guide__faq-section,
    .page-resources-mobile-betting-app-guide__contact-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    .page-resources-mobile-betting-app-guide__main-title {
        font-size: 1.8em;
    }
    .page-resources-mobile-betting-app-guide__section-title {
        font-size: 1.6em;
    }
    .page-resources-mobile-betting-app-guide__hero-description {
        font-size: 0.9em;
    }
    .page-resources-mobile-betting-app-guide__cta-button {
        padding: 10px 15px !important;
        font-size: 0.9em !important;
    }
    .page-resources-mobile-betting-app-guide__platform-sections,
    .page-resources-mobile-betting-app-guide__content-block {
        gap: 20px;
    }
    .page-resources-mobile-betting-app-guide__platform-item {
        padding: 20px 15px;
    }
    .page-resources-mobile-betting-app-guide__download-steps {
        font-size: 0.9em;
    }
    .page-resources-mobile-betting-app-guide__product-image {
        height: 150px;
    }
}