/* style/blog-suncity888-chinh-thuc-game-guide.css */

/* Custom Properties (from given color scheme, for consistency) */
:root {
    --color-primary: #11A84E; /* Main color */
    --color-secondary: #22C768; /* Auxiliary color */
    --color-background: #08160F; /* Overall background */
    --color-card-bg: #11271B; /* Card background */
    --color-text-main: #F2FFF6; /* Main text color (light) */
    --color-text-secondary: #A7D9B8; /* Secondary text color (lighter green) */
    --color-border: #2E7A4E; /* Border color */
    --color-glow: #57E38D; /* Glow color */
    --color-gold: #F2C14E; /* Gold accent */
    --color-divider: #1E3A2A; /* Divider color */
    --color-deep-green: #0A4B2C; /* Deep green */
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --button-text-color: #ffffff;
}

.page-blog-suncity888-chinh-thuc-game-guide {
    background-color: var(--color-background); /* Dark background */
    color: var(--color-text-main); /* Light text for main content */
    font-family: 'Arial', sans-serif; /* Example font */
    line-height: 1.6;
    padding-bottom: 60px; /* Space before footer */
}

.page-blog-suncity888-chinh-thuc-game-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-suncity888-chinh-thuc-game-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, text below */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background-color: var(--color-deep-green); /* A slightly different dark green for hero background */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-blog-suncity888-chinh-thuc-game-guide__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px; /* Space between image and text */
}

.page-blog-suncity888-chinh-thuc-game-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%; /* Ensure image is responsive */
    object-fit: cover;
    border-radius: 8px; /* Slightly rounded corners */
}

.page-blog-suncity888-chinh-thuc-game-guide__hero-content {
    max-width: 800px;
    padding: 0 20px;
    box-sizing: border-box;
    color: var(--color-text-main);
}

.page-blog-suncity888-chinh-thuc-game-guide__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive font size for H1 */
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-suncity888-chinh-thuc-game-guide__hero-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

/* General Section Styling */
.page-blog-suncity888-chinh-thuc-game-guide__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--color-divider);
}

.page-blog-suncity888-chinh-thuc-game-guide__section:last-of-type {
    border-bottom: none;
}

.page-blog-suncity888-chinh-thuc-game-guide__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-gold); /* Gold for main section titles */
    text-align: center;
    margin-bottom: 40px;
}

.page-blog-suncity888-chinh-thuc-game-guide__sub-title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 600;
    color: var(--color-text-main);
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-blog-suncity888-chinh-thuc-game-guide__text-block {
    margin-bottom: 20px;
    color: var(--color-text-main);
}

.page-blog-suncity888-chinh-thuc-game-guide__text-block p {
    margin-bottom: 15px;
}

.page-blog-suncity888-chinh-thuc-game-guide__text-block--full-width {
    grid-column: 1 / -1; /* For full width in grid contexts */
}

.page-blog-suncity888-chinh-thuc-game-guide__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--color-text-main);
}

.page-blog-suncity888-chinh-thuc-game-guide__list li {
    margin-bottom: 10px;
}

.page-blog-suncity888-chinh-thuc-game-guide__list ol {
    list-style: decimal;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Buttons */
.page-blog-suncity888-chinh-thuc-game-guide__btn-primary,
.page-blog-suncity888-chinh-thuc-game-guide__btn-secondary,
.page-blog-suncity888-chinh-thuc-game-guide__btn-tertiary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-suncity888-chinh-thuc-game-guide__btn-primary {
    background: var(--button-gradient);
    color: var(--button-text-color);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-suncity888-chinh-thuc-game-guide__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-suncity888-chinh-thuc-game-guide__btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.page-blog-suncity888-chinh-thuc-game-guide__btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--button-text-color);
}

.page-blog-suncity888-chinh-thuc-game-guide__btn-tertiary {
    background-color: var(--color-card-bg);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-blog-suncity888-chinh-thuc-game-guide__btn-tertiary:hover {
    background-color: var(--color-primary);
    color: var(--button-text-color);
    border-color: var(--color-primary);
}

.page-blog-suncity888-chinh-thuc-game-guide__btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Image styling */
.page-blog-suncity888-chinh-thuc-game-guide__image-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 8px;
}

.page-blog-suncity888-chinh-thuc-game-guide__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

/* Grid Layouts */
.page-blog-suncity888-chinh-thuc-game-guide__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-blog-suncity888-chinh-thuc-game-guide__game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-suncity888-chinh-thuc-game-guide__game-card {
    background-color: var(--color-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    color: var(--color-text-main);
    padding-bottom: 20px;
    text-align: center;
}

.page-blog-suncity888-chinh-thuc-game-guide__game-card-image {
    width: 100%;
    height: 180px; /* Fixed height for consistent card appearance */
    object-fit: cover;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 150px; /* Adjusted minimum height for cards */
}

.page-blog-suncity888-chinh-thuc-game-guide__game-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-blog-suncity888-chinh-thuc-game-guide__game-card-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
    padding: 0 15px;
}

.page-blog-suncity888-chinh-thuc-game-guide__game-card .page-blog-suncity888-chinh-thuc-game-guide__btn-tertiary {
    margin-top: auto; /* Push button to the bottom */
    align-self: center;
    width: calc(100% - 30px); /* Adjust button width within card */
}

/* FAQ Section */
.page-blog-suncity888-chinh-thuc-game-guide__faq-list {
    margin-top: 30px;
}

.page-blog-suncity888-chinh-thuc-game-guide__faq-item {
    background-color: var(--color-card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--color-text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-suncity888-chinh-thuc-game-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-main);
    cursor: pointer;
    background-color: var(--color-primary); /* Use primary for summary background */
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.3s ease;
}

.page-blog-suncity888-chinh-thuc-game-guide__faq-question:hover {
    background-color: var(--color-secondary);
}

.page-blog-suncity888-chinh-thuc-game-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-suncity888-chinh-thuc-game-guide__faq-question::marker {
    display: none;
}

.page-blog-suncity888-chinh-thuc-game-guide__faq-qtext {
    flex-grow: 1;
}

.page-blog-suncity888-chinh-thuc-game-guide__faq-toggle {
    font-size: 1.5rem;
    margin-left: 15px;
    color: var(--button-text-color);
}

.page-blog-suncity888-chinh-thuc-game-guide__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--color-text-secondary);
    background-color: var(--color-card-bg);
}

.page-blog-suncity888-chinh-thuc-game-guide__faq-answer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-blog-suncity888-chinh-thuc-game-guide__hero-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }

    .page-blog-suncity888-chinh-thuc-game-guide__section-title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }

    .page-blog-suncity888-chinh-thuc-game-guide__content-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-suncity888-chinh-thuc-game-guide__text-block--full-width {
        grid-column: auto;
    }
    
    .page-blog-suncity888-chinh-thuc-game-guide__image-wrapper {
        order: -1; /* Image on top for smaller screens in content grid */
    }
}

@media (max-width: 768px) {
    .page-blog-suncity888-chinh-thuc-game-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-suncity888-chinh-thuc-game-guide__hero-section {
        padding-bottom: 40px;
    }

    .page-blog-suncity888-chinh-thuc-game-guide__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-blog-suncity888-chinh-thuc-game-guide__hero-description {
        font-size: 1rem;
    }

    .page-blog-suncity888-chinh-thuc-game-guide__section {
        padding: 40px 0;
    }

    .page-blog-suncity888-chinh-thuc-game-guide__section-title {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
        margin-bottom: 30px;
    }

    .page-blog-suncity888-chinh-thuc-game-guide__sub-title {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    .page-blog-suncity888-chinh-thuc-game-guide__container {
        padding: 0 15px;
    }

    /* Images responsiveness */
    .page-blog-suncity888-chinh-thuc-game-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}