:root {
    --primary-color: #FFD700;
    --secondary-color: #000080;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light-gray: #f1f3f5;
    --border-light: #e0e0e0;
}

.page-resources-top-reward-game-strategies {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Default text color for dark body background */
    line-height: 1.7;
    background-color: var(--dark-bg-1); /* Inherited from shared.css, assumed dark */
    padding-top: 120px; /* Space for fixed header on desktop */
}

@media (max-width: 768px) {
    .page-resources-top-reward-game-strategies {
        padding-top: 100px; /* Space for fixed header on mobile */
        font-size: 16px;
        line-height: 1.6;
    }
}

.page-resources-top-reward-game-strategies__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--secondary-color), #000050); /* Dark blue gradient */
    color: var(--text-light);
}

.page-resources-top-reward-game-strategies__hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-top-reward-game-strategies__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-resources-top-reward-game-strategies__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-top-reward-game-strategies__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-top-reward-game-strategies__main-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-color); /* Gold color for main title */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-top-reward-game-strategies__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-resources-top-reward-game-strategies__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-resources-top-reward-game-strategies__cta-button:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-top-reward-game-strategies__section {
    padding: 60px 20px;
    background-color: var(--dark-bg-1); /* Consistent dark background */
    color: var(--text-light);
}

.page-resources-top-reward-game-strategies__intro-section, 
.page-resources-top-reward-game-strategies__overall-strategy, 
.page-resources-top-reward-game-strategies__advanced-tips, 
.page-resources-top-reward-game-strategies__responsible-gaming, 
.page-resources-top-reward-game-strategies__faq-section {
    background-color: #1a1a1a; /* Slightly lighter dark for content sections */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-resources-top-reward-game-strategies__container {
    max-width: 1200px;
    margin: 0 auto;
    background: #2a2a2a; /* Card-like background for main content blocks */
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-top-reward-game-strategies__section-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-resources-top-reward-game-strategies__sub-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.page-resources-top-reward-game-strategies__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-resources-top-reward-game-strategies__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-resources-top-reward-game-strategies__list-item {
    background: #3a3a3a;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-top-reward-game-strategies__list-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-resources-top-reward-game-strategies__list-item p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 0;
}

.page-resources-top-reward-game-strategies__specific-strategies .page-resources-top-reward-game-strategies__card {
    display: flex;
    background: #3a3a3a;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    overflow: hidden;
    align-items: center;
}

.page-resources-top-reward-game-strategies__card-image {
    width: 40%;
    height: 250px;
    object-fit: cover;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-top-reward-game-strategies__card-content {
    width: 60%;
    padding: 25px;
    color: var(--text-light);
}

.page-resources-top-reward-game-strategies__card-content p {
    font-size: 16px;
    margin-bottom: 0;
}

.page-resources-top-reward-game-strategies__center-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Styles */
.page-resources-top-reward-game-strategies__faq-list {
    margin-top: 30px;
}

.page-resources-top-reward-game-strategies__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: #3a3a3a;
}

.page-resources-top-reward-game-strategies__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 20px;
  opacity: 0;
  color: var(--text-light);
}

.page-resources-top-reward-game-strategies__faq-item.active .page-resources-top-reward-game-strategies__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: #4a4a4a;
  border-radius: 0 0 5px 5px;
}

.page-resources-top-reward-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #2a2a2a;
  border: 1px solid #5a5a5a;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-top-reward-game-strategies__faq-question:hover {
  background: #3a3a3a;
  border-color: #6a6a6a;
}

.page-resources-top-reward-game-strategies__faq-question:active {
  background: #4a4a4a;
}

.page-resources-top-reward-game-strategies__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-resources-top-reward-game-strategies__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--text-light);
  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-top-reward-game-strategies__faq-item.active .page-resources-top-reward-game-strategies__faq-toggle {
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-resources-top-reward-game-strategies__main-title {
        font-size: 36px;
    }
    .page-resources-top-reward-game-strategies__section-title {
        font-size: 28px;
    }
    .page-resources-top-reward-game-strategies__sub-title {
        font-size: 22px;
    }
    .page-resources-top-reward-game-strategies__card-image {
        height: 200px;
    }
    .page-resources-top-reward-game-strategies__card-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .page-resources-top-reward-game-strategies__hero-section {
        padding: 40px 15px;
    }
    .page-resources-top-reward-game-strategies__main-title {
        font-size: 30px;
    }
    .page-resources-top-reward-game-strategies__hero-description {
        font-size: 16px;
    }
    .page-resources-top-reward-game-strategies__cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-resources-top-reward-game-strategies__section {
        padding: 40px 15px;
    }
    .page-resources-top-reward-game-strategies__container {
        padding: 25px;
    }
    .page-resources-top-reward-game-strategies__section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .page-resources-top-reward-game-strategies__sub-title {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-resources-top-reward-game-strategies__text-block {
        font-size: 16px;
    }
    .page-resources-top-reward-game-strategies__list-item {
        padding: 15px;
    }
    .page-resources-top-reward-game-strategies__list-title {
        font-size: 18px;
    }
    .page-resources-top-reward-game-strategies__list-item p {
        font-size: 15px;
    }
    .page-resources-top-reward-game-strategies__specific-strategies .page-resources-top-reward-game-strategies__card {
        flex-direction: column;
    }
    .page-resources-top-reward-game-strategies__card-image {
        width: 100%;
        height: 200px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .page-resources-top-reward-game-strategies__card-content {
        width: 100%;
        padding: 20px;
    }
    .page-resources-top-reward-game-strategies__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-resources-top-reward-game-strategies__faq-question h3 {
        font-size: 16px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-resources-top-reward-game-strategies__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-resources-top-reward-game-strategies__faq-answer {
        padding: 0 15px;
    }
    .page-resources-top-reward-game-strategies__faq-item.active .page-resources-top-reward-game-strategies__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-resources-top-reward-game-strategies__main-title {
        font-size: 26px;
    }
    .page-resources-top-reward-game-strategies__hero-description {
        font-size: 15px;
    }
    .page-resources-top-reward-game-strategies__section-title {
        font-size: 22px;
    }
    .page-resources-top-reward-game-strategies__sub-title {
        font-size: 18px;
    }
    .page-resources-top-reward-game-strategies__container {
        padding: 15px;
    }
}