:root {
    --primary-color: #113B7A;
    --secondary-color: #1D5FD1;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-bg: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --deep-navy: #08162B;
}

/* Base styles for the page content */
.page-blog-choosing-the-right-game {
    color: var(--text-main); /* Dark body background, so use light text */
    background-color: var(--deep-navy);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-choosing-the-right-game__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-blog-choosing-the-right-game__section {
    padding: 60px 20px;
    text-align: center;
}

.page-blog-choosing-the-right-game__section-title {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--gold-color);
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-choosing-the-right-game p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-blog-choosing-the-right-game strong {
    color: var(--text-main);
}

.page-blog-choosing-the-right-game ul {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 800px;
    text-align: left;
}

.page-blog-choosing-the-right-game ul li {
    background: var(--card-bg);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.page-blog-choosing-the-right-game ul li::before {
    content: '✅';
    margin-right: 10px;
    font-size: 18px;
}

/* HERO Section */
.page-blog-choosing-the-right-game__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--deep-navy);
}

.page-blog-choosing-the-right-game__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-blog-choosing-the-right-game__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-choosing-the-right-game__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid var(--glow-color);
    box-shadow: 0 0 15px rgba(79, 168, 255, 0.5);
}

.page-blog-choosing-the-right-game__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-blog-choosing-the-right-game__main-title {
    font-size: clamp(32px, 5vw, 50px);
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(79, 168, 255, 0.7);
}

.page-blog-choosing-the-right-game__intro-text {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-blog-choosing-the-right-game__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: none;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-choosing-the-right-game__cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    opacity: 0.9;
}

/* Grid Layouts */
.page-blog-choosing-the-right-game__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-choosing-the-right-game__grid--two-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Styles */
.page-blog-choosing-the-right-game__card,
.page-blog-choosing-the-right-game__tip-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-blog-choosing-the-right-game__card:hover,
.page-blog-choosing-the-right-game__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-choosing-the-right-game__card-title,
.page-blog-choosing-the-right-game__tip-title {
    font-size: 24px;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.page-blog-choosing-the-right-game__card img,
.page-blog-choosing-the-right-game__game-card img,
.page-blog-choosing-the-right-game__blog-card img {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--divider-color);
}

/* Game Card Styles */
.page-blog-choosing-the-right-game__game-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-choosing-the-right-game__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-choosing-the-right-game__game-title {
    font-size: 22px;
    color: var(--text-main);
    margin: 15px 0;
    font-weight: bold;
}

.page-blog-choosing-the-right-game__btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: var(--text-main);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: none;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-choosing-the-right-game__btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--text-main);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.page-blog-choosing-the-right-game__cta-section {
    background: var(--primary-color);
    padding: 80px 20px;
    margin-top: 60px;
    border-top: 2px solid var(--glow-color);
    border-bottom: 2px solid var(--glow-color);
    box-shadow: inset 0 0 20px rgba(79, 168, 255, 0.3);
}

.page-blog-choosing-the-right-game__cta-content {
    max-width: 900px;
}

.page-blog-choosing-the-right-game__cta-content .page-blog-choosing-the-right-game__section-title {
    color: var(--text-main);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.page-blog-choosing-the-right-game__cta-content p {
    color: var(--text-secondary);
    font-size: 18px;
}

/* FAQ Section */
details.page-blog-choosing-the-right-game__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-blog-choosing-the-right-game__faq-item summary.page-blog-choosing-the-right-game__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--text-main);
    font-weight: bold;
    font-size: 17px;
}

details.page-blog-choosing-the-right-game__faq-item summary.page-blog-choosing-the-right-game__faq-question::-webkit-details-marker {
    display: none;
}

details.page-blog-choosing-the-right-game__faq-item summary.page-blog-choosing-the-right-game__faq-question:hover {
    background: var(--primary-color);
}

.page-blog-choosing-the-right-game__faq-qtext {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main);
}

.page-blog-choosing-the-right-game__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--gold-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

details[open].page-blog-choosing-the-right-game__faq-item .page-blog-choosing-the-right-game__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-choosing-the-right-game__faq-answer {
    padding: 0 25px 25px;
    background: var(--deep-navy);
    border-radius: 0 0 8px 8px;
    color: var(--text-secondary);
    text-align: left;
}

.page-blog-choosing-the-right-game__faq-answer p {
    margin-top: 15px;
    color: var(--text-secondary);
}

/* Related Blogs Section */
.page-blog-choosing-the-right-game__blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-choosing-the-right-game__blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-blog-choosing-the-right-game__blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-choosing-the-right-game__blog-card img {
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-blog-choosing-the-right-game__blog-title {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-choosing-the-right-game__blog-title a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-choosing-the-right-game__blog-title a:hover {
    color: var(--gold-color);
}

.page-blog-choosing-the-right-game__blog-date {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.page-blog-choosing-the-right-game__blog-excerpt {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-blog-choosing-the-right-game__read-more {
    display: inline-block;
    color: var(--gold-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: color 0.3s ease;
}

.page-blog-choosing-the-right-game__read-more:hover {
    color: var(--glow-color);
}

.page-blog-choosing-the-right-game__view-all {
    margin-top: 40px;
}

.page-blog-choosing-the-right-game__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: none;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-choosing-the-right-game__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-choosing-the-right-game {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-choosing-the-right-game__section {
        padding: 40px 15px;
    }

    .page-blog-choosing-the-right-game__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-choosing-the-right-game__hero-image img {
        border-radius: 4px;
    }

    .page-blog-choosing-the-right-game__main-title {
        font-size: 30px;
    }

    .page-blog-choosing-the-right-game__intro-text {
        font-size: 16px;
    }

    .page-blog-choosing-the-right-game__cta-button,
    .page-blog-choosing-the-right-game__btn-primary,
    .page-blog-choosing-the-right-game__btn-secondary,
    .page-blog-choosing-the-right-game a[class*="button"],
    .page-blog-choosing-the-right-game 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-left: 15px;
        padding-right: 15px;
    }

    .page-blog-choosing-the-right-game__cta-buttons,
    .page-blog-choosing-the-right-game__button-group,
    .page-blog-choosing-the-right-game__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-blog-choosing-the-right-game img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }

    .page-blog-choosing-the-right-game__section,
    .page-blog-choosing-the-right-game__card,
    .page-blog-choosing-the-right-game__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-choosing-the-right-game__section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .page-blog-choosing-the-right-game__card,
    .page-blog-choosing-the-right-game__tip-card,
    .page-blog-choosing-the-right-game__game-card {
        padding: 20px;
    }

    .page-blog-choosing-the-right-game__card-title,
    .page-blog-choosing-the-right-game__tip-title {
        font-size: 20px;
    }

    details.page-blog-choosing-the-right-game__faq-item summary.page-blog-choosing-the-right-game__faq-question {
        padding: 15px;
        font-size: 16px;
    }

    .page-blog-choosing-the-right-game__faq-qtext {
        font-size: 16px;
    }

    .page-blog-choosing-the-right-game__faq-answer {
        padding: 0 15px 15px;
    }

    .page-blog-choosing-the-right-game__blog-title {
        font-size: 18px;
    }
}