/* style/blog-gacam67-promotions-guide.css */
/* Trang专属样式 */

/* Custom Properties for Colors */
:root {
    --color-primary: #113B7A; /* Main color */
    --color-secondary: #1D5FD1; /* Auxiliary color */
    --color-button-gradient-start: #2B73F6;
    --color-button-gradient-end: #1144A6;
    --color-card-bg: #10233F;
    --color-text-main: #F3F8FF;
    --color-text-secondary: #AFC4E8;
    --color-border: #244D84;
    --color-glow: #4FA8FF;
    --color-gold: #F2C14E;
    --color-divider: #1B3357;
    --color-deep-navy: #08162B; /* Body background from shared.css */
}

/* Base styles for the page content */
.page-blog-gacam67-promotions-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--color-text-main); /* Text color for dark body background */
    background-color: var(--color-deep-navy); /* Ensure consistency if body bg is not fully inherited */
}

/* Headings */
.page-blog-gacam67-promotions-guide h1,
.page-blog-gacam67-promotions-guide h2,
.page-blog-gacam67-promotions-guide h3 {
    color: var(--color-text-main);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-blog-gacam67-promotions-guide h1 {
    /* No fixed font-size for H1, relying on content and responsiveness */
    font-weight: 800;
    color: var(--color-gold); /* Gold for main title */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-gacam67-promotions-guide h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Responsive font size for H2 */
    text-align: center;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.page-blog-gacam67-promotions-guide h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--color-text-main);
}

/* Paragraphs and lists */
.page-blog-gacam67-promotions-guide p {
    margin-bottom: 15px;
    color: var(--color-text-main);
}
.page-blog-gacam67-promotions-guide__text-block--secondary {
    color: var(--color-text-secondary);
}

/* Links */
.page-blog-gacam67-promotions-guide a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-gacam67-promotions-guide a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Container for content */
.page-blog-gacam67-promotions-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Section specific styles */
.page-blog-gacam67-promotions-guide__light-bg {
    background-color: #ffffff; /* Example light background */
    color: #333333; /* Dark text on light background */
}
.page-blog-gacam67-promotions-guide__light-bg h1,
.page-blog-gacam67-promotions-guide__light-bg h2,
.page-blog-gacam67-promotions-guide__light-bg h3,
.page-blog-gacam67-promotions-guide__light-bg p {
    color: #333333;
}
.page-blog-gacam67-promotions-guide__light-bg a {
    color: var(--color-primary);
}
.page-blog-gacam67-promotions-guide__light-bg a:hover {
    color: var(--color-secondary);
}

.page-blog-gacam67-promotions-guide__dark-bg {
    background-color: var(--color-card-bg); /* Use specified card bg for dark sections */
    color: var(--color-text-main);
}

/* HERO主图区域 */
.page-blog-gacam67-promotions-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    /* 页头由 shared 的 body { padding-top: var(--header-offset); } 承担；此处仅用小额顶距，禁止 var(--header-offset) 以免双倍空白 */
    padding-top: 10px;
    background: var(--color-deep-navy); /* Ensure consistent background */
}

.page-blog-gacam67-promotions-guide__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-blog-gacam67-promotions-guide__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-gacam67-promotions-guide__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-blog-gacam67-promotions-guide__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-blog-gacam67-promotions-guide__description {
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

.page-blog-gacam67-promotions-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-blog-gacam67-promotions-guide__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-blog-gacam67-promotions-guide__cta-button--primary {
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-blog-gacam67-promotions-guide__cta-button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-gacam67-promotions-guide__cta-button--secondary {
    background: #ffffff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.page-blog-gacam67-promotions-guide__cta-button--secondary:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-gacam67-promotions-guide__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Card styles */
.page-blog-gacam67-promotions-guide__card {
    background: var(--color-card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--color-border);
    min-width: 200px; /* Min card width */
    box-sizing: border-box;
}
.page-blog-gacam67-promotions-guide__card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-gold);
}
.page-blog-gacam67-promotions-guide__card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    flex-grow: 1; /* Allow paragraph to grow */
}
.page-blog-gacam67-promotions-guide__card img {
    border-radius: 8px;
    margin-bottom: 15px;
    max-width: 100%;
    height: auto;
    display: block;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

/* Quick Links Section */
.page-blog-gacam67-promotions-guide__link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.page-blog-gacam67-promotions-guide__link-cards .page-blog-gacam67-promotions-guide__card {
    padding: 30px;
}
.page-blog-gacam67-promotions-guide__link-cards .page-blog-gacam67-promotions-guide__btn-primary {
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 1rem;
    width: 100%;
}


/* Core Games Section */
.page-blog-gacam67-promotions-guide__game-category {
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 10px;
    background: #f0f0f0; /* Light background for game categories */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #333333;
}
.page-blog-gacam67-promotions-guide__game-category h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--color-primary);
}
.page-blog-gacam67-promotions-guide__game-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.page-blog-gacam67-promotions-guide__game-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}
.page-blog-gacam67-promotions-guide__game-content p {
    color: #555555;
    font-size: 1rem;
}
.page-blog-gacam67-promotions-guide__btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: #ffffff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}
.page-blog-gacam67-promotions-guide__btn-secondary:hover {
    background: var(--color-primary);
    color: #ffffff;
}

/* Promotions Section */
.page-blog-gacam67-promotions-guide__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.page-blog-gacam67-promotions-guide__promo-card {
    padding: 25px;
}
.page-blog-gacam67-promotions-guide__promo-card img {
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}
.page-blog-gacam67-promotions-guide__promo-title {
    font-size: 1.25rem;
    margin-top: 15px;
    margin-bottom: 10px;
    color: var(--color-text-main);
}
.page-blog-gacam67-promotions-guide__promo-card p {
    color: var(--color-text-secondary);
}

/* Security & Customer Service Section */
.page-blog-gacam67-promotions-guide__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}
.page-blog-gacam67-promotions-guide__feature-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #333333;
    border: 1px solid #e0e0e0;
}
.page-blog-gacam67-promotions-guide__feature-item img {
    width: 200px; /* Ensure it's at least 200px */
    height: 200px; /* Ensure it's at least 200px */
    margin-bottom: 20px;
    object-fit: contain; /* Contain for icons/logos, not cover */
}
.page-blog-gacam67-promotions-guide__feature-item h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.page-blog-gacam67-promotions-guide__feature-item p {
    color: #555555;
    font-size: 0.95rem;
}

/* FAQ Section */
details.page-blog-gacam67-promotions-guide__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    background: var(--color-card-bg);
}
details.page-blog-gacam67-promotions-guide__faq-item summary.page-blog-gacam67-promotions-guide__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;
    color: var(--color-text-main);
}
details.page-blog-gacam67-promotions-guide__faq-item summary.page-blog-gacam67-promotions-guide__faq-question::-webkit-details-marker {
    display: none;
}
details.page-blog-gacam67-promotions-guide__faq-item summary.page-blog-gacam67-promotions-guide__faq-question:hover {
    background: rgba(var(--color-primary), 0.1); /* Lighter hover for dark bg */
}
.page-blog-gacam67-promotions-guide__faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--color-text-main);
}
.page-blog-gacam67-promotions-guide__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-gold); /* Gold for the toggle icon */
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}
details.page-blog-gacam67-promotions-guide__faq-item .page-blog-gacam67-promotions-guide__faq-answer {
    padding: 0 20px 20px;
    background: var(--color-deep-navy); /* Slightly darker for answer background */
    border-radius: 0 0 5px 5px;
    color: var(--color-text-secondary);
}
.page-blog-gacam67-promotions-guide__faq-answer p {
    color: var(--color-text-secondary);
}

/* Latest Blog Section */
.page-blog-gacam67-promotions-guide__blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.page-blog-gacam67-promotions-guide__blog-card {
    padding: 20px;
    background: #f9f9f9; /* Light background for blog cards */
    color: #333333;
    text-align: left;
    border: 1px solid #e0e0e0;
}
.page-blog-gacam67-promotions-guide__blog-card img {
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}
.page-blog-gacam67-promotions-guide__blog-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.page-blog-gacam67-promotions-guide__blog-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-primary);
    flex-grow: 1;
}
.page-blog-gacam67-promotions-guide__blog-title a {
    color: var(--color-primary);
}
.page-blog-gacam67-promotions-guide__blog-title a:hover {
    color: var(--color-secondary);
}
.page-blog-gacam67-promotions-guide__blog-meta {
    font-size: 0.85rem;
    color: #777777;
    margin-bottom: 10px;
}
.page-blog-gacam67-promotions-guide__blog-card p {
    color: #555555;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 20px;
}
.page-blog-gacam67-promotions-guide__read-more {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: bold;
    margin-top: auto; /* Push to bottom */
}
.page-blog-gacam67-promotions-guide__read-more:hover {
    text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-gacam67-promotions-guide__hero-image img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .page-blog-gacam67-promotions-guide__hero-section {
        padding-top: 10px !important; /* Mobile small padding-top */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-blog-gacam67-promotions-guide__hero-image img {
        border-radius: 4px;
        height: 300px; /* Adjust height for mobile */
        object-fit: cover;
    }
    
    .page-blog-gacam67-promotions-guide__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-blog-gacam67-promotions-guide__description {
        font-size: 1rem;
    }

    .page-blog-gacam67-promotions-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-blog-gacam67-promotions-guide__cta-button {
        padding: 12px 20px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    /* Ensure all images are responsive and don't overflow */
    .page-blog-gacam67-promotions-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important; /* Enforce min size */
        min-height: 200px !important; /* Enforce min size */
    }

    /* Container responsiveness */
    .page-blog-gacam67-promotions-guide__container,
    .page-blog-gacam67-promotions-guide__quick-links-section .page-blog-gacam67-promotions-guide__link-cards,
    .page-blog-gacam67-promotions-guide__promotions-section .page-blog-gacam67-promotions-guide__promo-grid,
    .page-blog-gacam67-promotions-guide__security-cs-section .page-blog-gacam67-promotions-guide__features-grid,
    .page-blog-gacam67-promotions-guide__latest-blog-section .page-blog-gacam67-promotions-guide__blog-grid {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* FAQ mobile adjustments */
    details.page-blog-gacam67-promotions-guide__faq-item summary.page-blog-gacam67-promotions-guide__faq-question { padding: 15px; }
    .page-blog-gacam67-promotions-guide__faq-qtext { font-size: 15px; }

    /* Feature item image size adjustment for mobile */
    .page-blog-gacam67-promotions-guide__feature-item img {
        width: 100% !important; /* Overriding to enforce 100% width on mobile */
        height: auto !important;
        max-width: 250px !important; /* But limit max width for better display */
        margin-left: auto;
        margin-right: auto;
    }
    
    .page-blog-gacam67-promotions-guide__game-content {
        flex-direction: column;
    }
    .page-blog-gacam67-promotions-guide__game-content img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

/* Global image styles to ensure minimum size and no small icons */
.page-blog-gacam67-promotions-guide img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* default object-fit for most images */
}

/* Overriding feature item img for min size */
.page-blog-gacam67-promotions-guide__feature-item img {
    width: 200px;
    height: 200px;
    object-fit: contain; /* Contain for icons/logos, not cover */
}

/* Contrast fix classes (as requested) */
.page-blog-gacam67-promotions-guide__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-gacam67-promotions-guide__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}