/* style/blog-kk55-game-beginner-guide.css */

/* Base styles for the page */
.page-blog-kk55-game-beginner-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #fff; /* Shared body background is #fff */
}

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

.page-blog-kk55-game-beginner-guide__section {
    padding: 60px 0;
    background-color: #fff; /* Default section background */
}

.page-blog-kk55-game-beginner-guide__dark-bg {
    background-color: #08160F;
    color: #F2FFF6; /* Text Main */
}

.page-blog-kk55-game-beginner-guide__section-title {
    font-size: 2.5em;
    color: #11A84E; /* Main Color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-kk55-game-beginner-guide__dark-bg .page-blog-kk55-game-beginner-guide__section-title {
    color: #F2FFF6; /* Text Main on dark background */
}

.page-blog-kk55-game-beginner-guide__text-block {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #333333;
}

.page-blog-kk55-game-beginner-guide__dark-bg .page-blog-kk55-game-beginner-guide__text-block {
    color: #A7D9B8; /* Text Secondary on dark background */
}

/* Hero Section */
.page-blog-kk55-game-beginner-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #08160F; /* Background for hero section */
    overflow: hidden;
}

.page-blog-kk55-game-beginner-guide__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    order: 1; /* Image first in DOM */
}

.page-blog-kk55-game-beginner-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit height for hero image */
}

.page-blog-kk55-game-beginner-guide__hero-content {
    order: 2; /* Content after image in DOM */
    padding: 40px 20px;
    text-align: center;
    color: #F2FFF6; /* Text Main */
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-kk55-game-beginner-guide__hero-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: bold;
    margin-bottom: 20px;
    color: #F2C14E; /* Gold for main title */
    line-height: 1.2;
}

.page-blog-kk55-game-beginner-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-blog-kk55-game-beginner-guide__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.page-blog-kk55-game-beginner-guide__btn-primary,
.page-blog-kk55-game-beginner-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
    text-align: center;
}

.page-blog-kk55-game-beginner-guide__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
}

.page-blog-kk55-game-beginner-guide__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-kk55-game-beginner-guide__btn-secondary {
    background-color: transparent;
    color: #11A84E;
    border: 2px solid #11A84E;
}

.page-blog-kk55-game-beginner-guide__btn-secondary:hover {
    background-color: #11A84E;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.2);
}

.page-blog-kk55-game-beginner-guide__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-blog-kk55-game-beginner-guide__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Image content */
.page-blog-kk55-game-beginner-guide__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

/* Step List */
.page-blog-kk55-game-beginner-guide__step-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-blog-kk55-game-beginner-guide__step-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    flex: 1 1 calc(33% - 40px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    box-sizing: border-box;
}

.page-blog-kk55-game-beginner-guide__step-item:nth-child(even) {
    background-color: #f0f0f0;
}

.page-blog-kk55-game-beginner-guide__step-title {
    font-size: 1.5em;
    color: #11A84E;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-kk55-game-beginner-guide__step-description {
    color: #555555;
    font-size: 1em;
}

/* Grid 2 Column */
.page-blog-kk55-game-beginner-guide__grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-kk55-game-beginner-guide__card {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-blog-kk55-game-beginner-guide__card-title {
    font-size: 1.4em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-kk55-game-beginner-guide__card-description {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
}

/* Game Category Grid */
.page-blog-kk55-game-beginner-guide__game-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-kk55-game-beginner-guide__game-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-blog-kk55-game-beginner-guide__game-card:hover {
    transform: translateY(-5px);
}

.page-blog-kk55-game-beginner-guide__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-kk55-game-beginner-guide__game-card-title {
    font-size: 1.3em;
    color: #11A84E;
    margin: 20px 15px 10px 15px;
    font-weight: bold;
}

.page-blog-kk55-game-beginner-guide__game-card-title a {
    color: #11A84E;
    text-decoration: none;
}

.page-blog-kk55-game-beginner-guide__game-card-title a:hover {
    text-decoration: underline;
}

.page-blog-kk55-game-beginner-guide__game-card-description {
    font-size: 0.95em;
    color: #555555;
    padding: 0 15px 20px 15px;
}

/* Promo List */
.page-blog-kk55-game-beginner-guide__promo-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.page-blog-kk55-game-beginner-guide__promo-list li {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1.1em;
    position: relative;
    padding-left: 40px;
}

.page-blog-kk55-game-beginner-guide__promo-list li::before {
    content: '⭐'; /* Unicode star */
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

/* Tip List */
.page-blog-kk55-game-beginner-guide__tip-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 900px;
    text-align: left;
}

.page-blog-kk55-game-beginner-guide__tip-list li {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    color: #333333;
    font-size: 1em;
}

.page-blog-kk55-game-beginner-guide__tip-title {
    font-size: 1.3em;
    color: #0A4B2C; /* Deep Green */
    margin-bottom: 10px;
    font-weight: bold;
}

/* FAQ Section */
.page-blog-kk55-game-beginner-guide__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-kk55-game-beginner-guide__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #A7D9B8; /* Text Secondary */
}

.page-blog-kk55-game-beginner-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: #F2FFF6; /* Text Main */
    position: relative;
}

.page-blog-kk55-game-beginner-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-kk55-game-beginner-guide__faq-item details > summary {
    list-style: none;
}

.page-blog-kk55-game-beginner-guide__faq-item details > summary::marker {
    display: none;
}

.page-blog-kk55-game-beginner-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #F2C14E; /* Gold */
}

.page-blog-kk55-game-beginner-guide__faq-item[open] .page-blog-kk55-game-beginner-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-kk55-game-beginner-guide__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
}

.page-blog-kk55-game-beginner-guide__faq-answer p {
    margin-bottom: 15px;
}

.page-blog-kk55-game-beginner-guide__faq-answer .page-blog-kk55-game-beginner-guide__btn-secondary {
    margin-top: 10px;
    display: inline-block;
    padding: 8px 15px;
    font-size: 0.9em;
}

/* CTA Section at bottom */
.page-blog-kk55-game-beginner-guide__cta-section {
    padding: 80px 0;
    background-color: #08160F;
    text-align: center;
}

.page-blog-kk55-game-beginner-guide__cta-section .page-blog-kk55-game-beginner-guide__section-title {
    color: #F2FFF6;
}

.page-blog-kk55-game-beginner-guide__cta-section .page-blog-kk55-game-beginner-guide__text-block {
    color: #A7D9B8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-kk55-game-beginner-guide__grid-2-col {
        grid-template-columns: 1fr;
    }
    .page-blog-kk55-game-beginner-guide__step-item {
        flex: 1 1 calc(50% - 20px);
    }
    .page-blog-kk55-game-beginner-guide__game-category-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog-kk55-game-beginner-guide__section {
        padding: 40px 0;
    }
    .page-blog-kk55-game-beginner-guide__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-blog-kk55-game-beginner-guide__text-block {
        font-size: 1em;
    }
    .page-blog-kk55-game-beginner-guide__hero-content {
        padding: 30px 15px;
    }
    .page-blog-kk55-game-beginner-guide__hero-title {
        font-size: 2.2em;
    }
    .page-blog-kk55-game-beginner-guide__hero-description {
        font-size: 1em;
    }
    .page-blog-kk55-game-beginner-guide__hero-actions,
    .page-blog-kk55-game-beginner-guide__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-kk55-game-beginner-guide__btn-primary,
    .page-blog-kk55-game-beginner-guide__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 0 auto; /* Center buttons */
    }

    .page-blog-kk55-game-beginner-guide__step-item {
        flex: 1 1 100%;
    }
    .page-blog-kk55-game-beginner-guide__grid-2-col {
        grid-template-columns: 1fr;
    }
    .page-blog-kk55-game-beginner-guide__game-category-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile image adaptation */
    .page-blog-kk55-game-beginner-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-kk55-game-beginner-guide__hero-image {
        max-height: 400px;
    }
    .page-blog-kk55-game-beginner-guide__container,
    .page-blog-kk55-game-beginner-guide__hero-section,
    .page-blog-kk55-game-beginner-guide__section,
    .page-blog-kk55-game-beginner-guide__card,
    .page-blog-kk55-game-beginner-guide__step-item,
    .page-blog-kk55-game-beginner-guide__game-card,
    .page-blog-kk55-game-beginner-guide__faq-item,
    .page-blog-kk55-game-beginner-guide__cta-section,
    .page-blog-kk55-game-beginner-guide__hero-actions,
    .page-blog-kk55-game-beginner-guide__cta-actions {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Ensure no horizontal scroll */
    }
    .page-blog-kk55-game-beginner-guide__hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-blog-kk55-game-beginner-guide__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-kk55-game-beginner-guide__promo-list,
    .page-blog-kk55-game-beginner-guide__tip-list,
    .page-blog-kk55-game-beginner-guide__faq-list {
        padding-left: 0;
        padding-right: 0;
    }
    .page-blog-kk55-game-beginner-guide__promo-list li,
    .page-blog-kk55-game-beginner-guide__tip-list li {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-kk55-game-beginner-guide__promo-list li::before {
        left: 0;
    }
}