/* style/resources-s689-latest-game-guides.css */

:root {
    --primary-color: #FFD700;
    --secondary-color: #8B0000;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark-overlay: rgba(255, 255, 255, 0.08);
    --bg-dark-card: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.15);
}

.page-resources-s689-latest-game-guides {
    color: var(--text-light);
    background-color: var(--bg-dark);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-resources-s689-latest-game-guides__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-s689-latest-game-guides__section {
    padding: 80px 0;
    text-align: center;
}

.page-resources-s689-latest-game-guides__section-title {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.page-resources-s689-latest-game-guides__section-intro {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
}

/* Hero Section */
.page-resources-s689-latest-game-guides__hero-section {
    position: relative;
    padding-top: 0; /* Assuming shared.css handles body padding-top */
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3a0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    overflow: hidden;
    text-align: left;
}

.page-resources-s689-latest-game-guides__hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    margin-right: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.page-resources-s689-latest-game-guides__hero-title {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-resources-s689-latest-game-guides__hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-resources-s689-latest-game-guides__hero-image-wrapper {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
}

.page-resources-s689-latest-game-guides__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* CTA Buttons */
.page-resources-s689-latest-game-guides__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-resources-s689-latest-game-guides__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.page-resources-s689-latest-game-guides__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-s689-latest-game-guides__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 20px;
}

.page-resources-s689-latest-game-guides__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-s689-latest-game-guides__cta-group {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.page-resources-s689-latest-game-guides__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Benefits Section */
.page-resources-s689-latest-game-guides__benefits {
    background-color: #1a1a1a;
}

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

.page-resources-s689-latest-game-guides__feature-card {
    background-color: var(--bg-dark-card);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    border: 1px solid var(--border-color);
}

.page-resources-s689-latest-game-guides__feature-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-s689-latest-game-guides__feature-description {
    font-size: 16px;
    color: var(--text-light);
}

/* Game Guides Section */
.page-resources-s689-latest-game-guides__game-guides {
    background-color: #0d0d0d;
}

.page-resources-s689-latest-game-guides__guide-category {
    background-color: var(--bg-dark-card);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.page-resources-s689-latest-game-guides__category-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.page-resources-s689-latest-game-guides__category-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 0 auto 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-resources-s689-latest-game-guides__guide-category p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Advanced Tips Section */
.page-resources-s689-latest-game-guides__advanced-tips {
    background-color: #1a1a1a;
}

.page-resources-s689-latest-game-guides__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-resources-s689-latest-game-guides__tips-list li {
    background-color: var(--bg-dark-card);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.page-resources-s689-latest-game-guides__list-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-s689-latest-game-guides__tips-list p {
    font-size: 16px;
    color: var(--text-light);
}

/* FAQ Section */
.page-resources-s689-latest-game-guides__faq {
    background-color: #0d0d0d;
}

.page-resources-s689-latest-game-guides__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-resources-s689-latest-game-guides__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-s689-latest-game-guides__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: var(--text-light);
}

.page-resources-s689-latest-game-guides__faq-item.active .page-resources-s689-latest-game-guides__faq-answer {
  max-height: 2000px !important; 
  padding: 20px 15px !important;
  opacity: 1;
  background: var(--bg-dark-overlay);
  border-radius: 0 0 5px 5px;
}

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

.page-resources-s689-latest-game-guides__faq-question:hover {
  background: var(--bg-dark-overlay);
  border-color: var(--primary-color);
}

.page-resources-s689-latest-game-guides__faq-question:active {
  background: rgba(255, 215, 0, 0.1);
}

.page-resources-s689-latest-game-guides__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-s689-latest-game-guides__faq-toggle {
  font-size: 28px;
  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: 32px;
  height: 32px;
}

.page-resources-s689-latest-game-guides__faq-item.active .page-resources-s689-latest-game-guides__faq-toggle {
  color: var(--text-light);
  transform: rotate(45deg);
}

/* Latest Articles Section */
.page-resources-s689-latest-game-guides__latest-articles {
    background-color: #1a1a1a;
}

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

.page-resources-s689-latest-game-guides__article-card {
    background-color: var(--bg-dark-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-s689-latest-game-guides__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-s689-latest-game-guides__article-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-resources-s689-latest-game-guides__article-content {
    padding: 20px;
}

.page-resources-s689-latest-game-guides__article-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-resources-s689-latest-game-guides__article-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-s689-latest-game-guides__article-title a:hover {
    color: var(--text-light);
}

.page-resources-s689-latest-game-guides__article-excerpt {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 15px;
}

.page-resources-s689-latest-game-guides__article-date {
    font-size: 14px;
    color: #999999;
}

/* General Image styles for responsive */
.page-resources-s689-latest-game-guides img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-s689-latest-game-guides__hero-section {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .page-resources-s689-latest-game-guides__hero-content {
        margin-right: 0;
        margin-bottom: 40px;
        max-width: 80%;
    }

    .page-resources-s689-latest-game-guides__hero-title {
        font-size: 42px;
    }

    .page-resources-s689-latest-game-guides__hero-image-wrapper {
        max-width: 90%;
    }

    .page-resources-s689-latest-game-guides__section-title {
        font-size: 32px;
    }

    .page-resources-s689-latest-game-guides__section-intro {
        font-size: 16px;
    }

    .page-resources-s689-latest-game-guides__category-title {
        font-size: 28px;
    }

    .page-resources-s689-latest-game-guides__tips-list,
    .page-resources-s689-latest-game-guides__articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-resources-s689-latest-game-guides__hero-section {
        padding-top: 0 !important; /* shared.css handles body padding-top */
        padding-bottom: 30px;
    }

    .page-resources-s689-latest-game-guides__hero-content {
        padding: 20px;
        margin-bottom: 30px;
        max-width: 95%;
    }

    .page-resources-s689-latest-game-guides__hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .page-resources-s689-latest-game-guides__hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .page-resources-s689-latest-game-guides__hero-image-wrapper {
        max-width: 100%;
    }

    /* 通用图片与容器 */
    .page-resources-s689-latest-game-guides img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-resources-s689-latest-game-guides__section,
    .page-resources-s689-latest-game-guides__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-resources-s689-latest-game-guides__section-title {
        font-size: 28px;
    }

    .page-resources-s689-latest-game-guides__section-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }

    /* 按钮与按钮容器 */
    .page-resources-s689-latest-game-guides__cta-button,
    .page-resources-s689-latest-game-guides__btn-primary,
    .page-resources-s689-latest-game-guides__btn-secondary,
    .page-resources-s689-latest-game-guides a[class*="button"],
    .page-resources-s689-latest-game-guides a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 16px;
    }

    .page-resources-s689-latest-game-guides__btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-resources-s689-latest-game-guides__cta-group {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* 其他内容模块 */
    .page-resources-s689-latest-game-guides__features-grid,
    .page-resources-s689-latest-game-guides__tips-list,
    .page-resources-s689-latest-game-guides__articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-resources-s689-latest-game-guides__feature-card,
    .page-resources-s689-latest-game-guides__tips-list li,
    .page-resources-s689-latest-game-guides__article-card {
        padding: 25px;
    }

    .page-resources-s689-latest-game-guides__feature-title,
    .page-resources-s689-latest-game-guides__list-title {
        font-size: 22px;
    }

    .page-resources-s689-latest-game-guides__category-title {
        font-size: 26px;
    }

    /* FAQ */
    .page-resources-s689-latest-game-guides__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-resources-s689-latest-game-guides__faq-question h3 {
        font-size: 16px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-resources-s689-latest-game-guides__faq-toggle {
        margin-left: 10px;
        width: 28px;
        height: 28px;
        font-size: 24px;
    }
    
    .page-resources-s689-latest-game-guides__faq-answer {
        padding: 0 15px;
    }
    
    .page-resources-s689-latest-game-guides__faq-item.active .page-resources-s689-latest-game-guides__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-resources-s689-latest-game-guides__hero-title {
        font-size: 28px;
    }
    .page-resources-s689-latest-game-guides__section-title {
        font-size: 24px;
    }
    .page-resources-s689-latest-game-guides__feature-title,
    .page-resources-s689-latest-game-guides__list-title {
        font-size: 20px;
    }
    .page-resources-s689-latest-game-guides__category-title {
        font-size: 22px;
    }
    .page-resources-s689-latest-game-guides__faq-question h3 {
        font-size: 15px;
    }
    .page-resources-s689-latest-game-guides__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
}