/* 须含：HERO(含849px contain)、产品展示、section-title、article-body、按钮等桌面样式 + 完整 @media 768px 块 */
.page-blog-79king12-slot-strategy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main color */
    background-color: var(--page-bg, #F4F7FB); /* Using custom color #F4F7FB as default page background */
}

.page-blog-79king12-slot-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-blog-79king12-slot-strategy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image on top, text below */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, assuming body has header offset */
    padding-bottom: 50px;
    background-color: #F4F7FB; /* Consistent with page background */
    overflow: hidden;
}

.page-blog-79king12-slot-strategy__hero-image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-blog-79king12-slot-strategy__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Default to cover for desktop */
    min-height: 300px; /* Ensure a minimum height */
    max-height: 600px; /* Max height for desktop */
}

.page-blog-79king12-slot-strategy__hero-content {
    max-width: 900px;
    padding: 0 15px;
}

.page-blog-79king12-slot-strategy__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Use clamp for H1 */
    font-weight: 700;
    color: #1F2D3D;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-blog-79king12-slot-strategy__hero-description {
    font-size: 1.25rem;
    color: #1F2D3D;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-79king12-slot-strategy__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

/* General Buttons */
.page-blog-79king12-slot-strategy__btn-primary,
.page-blog-79king12-slot-strategy__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%; /* Important for responsiveness */
    box-sizing: border-box; /* Important for responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

.page-blog-79king12-slot-strategy__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff; /* White text on brand blue gradient */
    border: none;
}

.page-blog-79king12-slot-strategy__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-blog-79king12-slot-strategy__btn-secondary {
    background: #ffffff;
    color: #2F6BFF; /* Brand blue text on white background */
    border: 2px solid #2F6BFF;
}

.page-blog-79king12-slot-strategy__btn-secondary:hover {
    background: #e0eaff;
    color: #2F6BFF;
    border-color: #2F6BFF;
}

/* Content Sections */
.page-blog-79king12-slot-strategy__section-padding {
    padding: 60px 0;
}

.page-blog-79king12-slot-strategy__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
}

.page-blog-79king12-slot-strategy__section-title--light {
    color: #ffffff; /* White text for dark sections */
}

.page-blog-79king12-slot-strategy__article-body {
    font-size: 1rem;
    color: #1F2D3D;
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-79king12-slot-strategy__article-body p {
    margin-bottom: 1.2em;
}

.page-blog-79king12-slot-strategy__article-body strong {
    color: #2F6BFF;
}

.page-blog-79king12-slot-strategy__article-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2F6BFF;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-79king12-slot-strategy__article-figure {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Dark Section Styling */
.page-blog-79king12-slot-strategy__dark-section {
    background: #2F6BFF; /* Main brand color as background */
    color: #ffffff; /* White text on dark background */
}

.page-blog-79king12-slot-strategy__dark-section .page-blog-79king12-slot-strategy__section-title {
    color: #ffffff;
}

.page-blog-79king12-slot-strategy__dark-section .page-blog-79king12-slot-strategy__article-body {
    color: #f0f0f0;
}

.page-blog-79king12-slot-strategy__dark-section .page-blog-79king12-slot-strategy__feature-list .page-blog-79king12-slot-strategy__feature-title {
    color: #A5C4FF; /* Glow color for titles */
}

/* Feature List */
.page-blog-79king12-slot-strategy__feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-79king12-slot-strategy__feature-item {
    background: rgba(255, 255, 255, 0.1); /* Slightly transparent white on blue */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.page-blog-79king12-slot-strategy__feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #A5C4FF; /* Use Glow color */
    margin-top: 0;
    margin-bottom: 15px;
}

.page-blog-79king12-slot-strategy__feature-item p {
    font-size: 0.95rem;
    color: #f0f0f0;
}

/* Game Type Cards */
.page-blog-79king12-slot-strategy__grid-layout,
.page-blog-79king12-slot-strategy__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-79king12-slot-strategy__game-type-card,
.page-blog-79king12-slot-strategy__promo-card {
    background: #FFFFFF; /* Card BG color */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-blog-79king12-slot-strategy__game-type-card img,
.page-blog-79king12-slot-strategy__promo-card img {
    width: 100%;
    height: 200px; /* Fixed height for card images */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #D6E2FF;
}

.page-blog-79king12-slot-strategy__game-type-card .page-blog-79king12-slot-strategy__card-title,
.page-blog-79king12-slot-strategy__promo-card .page-blog-79king12-slot-strategy__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1F2D3D;
    margin: 20px 15px 10px;
}

.page-blog-79king12-slot-strategy__game-type-card p,
.page-blog-79king12-slot-strategy__promo-card p {
    font-size: 0.95rem;
    color: #1F2D3D;
    padding: 0 15px 20px;
    flex-grow: 1; /* Push link to bottom */
}

.page-blog-79king12-slot-strategy__promo-link {
    display: block;
    padding: 15px;
    background-color: #F4F7FB; /* Background color */
    color: #2F6BFF; /* Primary color for link text */
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border-top: 1px solid #D6E2FF; /* Border color */
}

.page-blog-79king12-slot-strategy__promo-link:hover {
    background-color: #e0eaff;
}

/* CTA Section */
.page-blog-79king12-slot-strategy__cta-section {
    text-align: center;
    margin-top: 50px;
}

.page-blog-79king12-slot-strategy__cta-register-section {
    background-color: #F4F7FB;
    text-align: center;
}

.page-blog-79king12-slot-strategy__description {
    font-size: 1.1rem;
    color: #1F2D3D;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-blog-79king12-slot-strategy__steps-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 600px;
    text-align: left;
    counter-reset: step-counter;
}

.page-blog-79king12-slot-strategy__step-item {
    background: #FFFFFF; /* Card BG color */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    padding: 18px 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #1F2D3D;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 50px;
}

.page-blog-79king12-slot-strategy__step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #2F6BFF; /* Primary color */
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.page-blog-79king12-slot-strategy__button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* FAQ Section */
details.page-blog-79king12-slot-strategy__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF; /* Border color */
  overflow: hidden;
  background: #FFFFFF; /* Card BG color */
}
details.page-blog-79king12-slot-strategy__faq-item summary.page-blog-79king12-slot-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-79king12-slot-strategy__faq-item summary.page-blog-79king12-slot-strategy__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-79king12-slot-strategy__faq-item summary.page-blog-79king12-slot-strategy__faq-question:hover {
  background: #f5f8ff; /* Lighter hover background */
}
.page-blog-79king12-slot-strategy__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D; /* Text Main color */
}
.page-blog-79king12-slot-strategy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #2F6BFF; /* Primary color for toggle */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-79king12-slot-strategy__faq-item .page-blog-79king12-slot-strategy__faq-answer {
  padding: 0 20px 20px;
  background: #F4F7FB; /* Background color */
  border-radius: 0 0 5px 5px;
  color: #1F2D3D;
}
.page-blog-79king12-slot-strategy__faq-answer p {
    margin-bottom: 0;
}

/* Final CTA Section */
.page-blog-79king12-slot-strategy__final-cta-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Brand gradient */
    color: #ffffff;
}

.page-blog-79king12-slot-strategy__final-cta-section .page-blog-79king12-slot-strategy__section-title {
    color: #ffffff;
}

.page-blog-79king12-slot-strategy__final-cta-section .page-blog-79king12-slot-strategy__description {
    color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-79king12-slot-strategy__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-79king12-slot-strategy__hero-description {
        font-size: 1.15rem;
    }
    .page-blog-79king12-slot-strategy__section-title {
        font-size: clamp(1.6rem, 3.8vw, 2.5rem);
    }
    .page-blog-79king12-slot-strategy__article-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .page-blog-79king12-slot-strategy__hero-section {
        padding-bottom: 30px;
    }
    .page-blog-79king12-slot-strategy__hero-image img {
        object-fit: contain !important; /* Prevent cropping */
        aspect-ratio: unset !important; /* Remove aspect ratio */
        min-height: 250px;
        max-height: 400px;
    }
    .page-blog-79king12-slot-strategy__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-blog-79king12-slot-strategy__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-blog-79king12-slot-strategy__hero-cta {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        width: 100%; /* Ensure container takes full width */
        max-width: 300px; /* Optional: limit max width for stacked buttons */
        margin: 0 auto;
        padding: 0 15px;
    }

    /* General Buttons */
    .page-blog-79king12-slot-strategy__btn-primary,
    .page-blog-79king12-slot-strategy__btn-secondary,
    .page-blog-79king12-slot-strategy a[class*="button"],
    .page-blog-79king12-slot-strategy 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: 1rem;
    }

    /* Button Group Container for mobile */
    .page-blog-79king12-slot-strategy__button-group,
    .page-blog-79king12-slot-strategy__hero-cta {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column; /* Stack buttons */
        gap: 15px;
    }
    
    /* Content Sections */
    .page-blog-79king12-slot-strategy__section-padding {
        padding: 40px 0;
    }
    .page-blog-79king12-slot-strategy__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 30px;
    }
    .page-blog-79king12-slot-strategy__article-body {
        font-size: 0.95rem;
    }
    .page-blog-79king12-slot-strategy__article-subtitle {
        font-size: 1.2rem;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-blog-79king12-slot-strategy__article-figure {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto;
    }

    /* Feature List */
    .page-blog-79king12-slot-strategy__feature-list {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }
    .page-blog-79king12-slot-strategy__feature-item {
        padding: 20px;
    }
    .page-blog-79king12-slot-strategy__feature-title {
        font-size: 1.2rem;
    }
    .page-blog-79king12-slot-strategy__feature-item p {
        font-size: 0.9rem;
    }

    /* Game Type Cards / Promo Cards */
    .page-blog-79king12-slot-strategy__grid-layout,
    .page-blog-79king12-slot-strategy__promo-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }
    .page-blog-79king12-slot-strategy__game-type-card img,
    .page-blog-79king12-slot-strategy__promo-card img {
         /* Slightly smaller fixed height for mobile */
    }
    .page-blog-79king12-slot-strategy__game-type-card .page-blog-79king12-slot-strategy__card-title,
    .page-blog-79king12-slot-strategy__promo-card .page-blog-79king12-slot-strategy__card-title {
        font-size: 1.2rem;
    }
    .page-blog-79king12-slot-strategy__game-type-card p,
    .page-blog-79king12-slot-strategy__promo-card p {
        font-size: 0.9rem;
    }

    /* Steps List */
    .page-blog-79king12-slot-strategy__steps-list {
        margin-bottom: 30px;
    }
    .page-blog-79king12-slot-strategy__step-item {
        font-size: 1rem;
        padding: 15px 15px 15px 45px;
    }
    .page-blog-79king12-slot-strategy__step-item::before {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        left: 10px;
    }

    /* FAQ Section */
    details.page-blog-79king12-slot-strategy__faq-item summary.page-blog-79king12-slot-strategy__faq-question {
        padding: 15px;
    }
    .page-blog-79king12-slot-strategy__faq-qtext {
        font-size: 1rem;
    }
    .page-blog-79king12-slot-strategy__faq-toggle {
        font-size: 20px;
        width: 24px;
        margin-left: 10px;
    }
}