:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --card-bg: #111111;
    --background-color: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    /* --header-offset: 122px; */ /* This value comes from shared.css */
}

.page-game-guides {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--background-color);
}

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

.page-game-guides__section {
    padding: 60px 0;
}

.page-game-guides__section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-guides__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-game-guides__sub-title {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-game-guides__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px;
    background-color: var(--background-color);
}

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

.page-game-guides__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-game-guides__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-game-guides__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-game-guides__main-title {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
}

.page-game-guides__hero-description {
    font-size: 18px;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-game-guides__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-game-guides__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-game-guides__cta-button--large {
    padding: 18px 50px;
    font-size: 20px;
}

.page-game-guides__content-block {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides__content-block p,
.page-game-guides__content-block li {
    color: var(--text-main);
    margin-bottom: 10px;
}

.page-game-guides__content-block ol,
.page-game-guides__content-block ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-game-guides__content-block li {
    list-style-type: disc;
    margin-bottom: 8px;
}

.page-game-guides__content-block ol li {
    list-style-type: decimal;
}

.page-game-guides__link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-game-guides__link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-game-guides__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(242, 193, 78, 0.3);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-game-guides__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 193, 78, 0.4);
}

.page-game-guides__game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-guides__game-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-game-guides__game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-game-guides__card-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-game-guides__game-card p {
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-game-guides__btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--background-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 211, 107, 0.3);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-game-guides__btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 211, 107, 0.5);
}

.page-game-guides__strategy-item {
    margin-bottom: 30px;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-game-guides__strategy-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-game-guides__strategy-item p {
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.5;
}

.page-game-guides__faq-list {
    margin-top: 30px;
}

details.page-game-guides__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-game-guides__faq-item summary.page-game-guides__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(--primary-color);
    font-weight: bold;
}

details.page-game-guides__faq-item summary.page-game-guides__faq-question::-webkit-details-marker {
    display: none;
}

details.page-game-guides__faq-item summary.page-game-guides__faq-question:hover {
    background: rgba(var(--primary-color-rgb), 0.1);
}

.page-game-guides__faq-qtext {
    flex: 1;
    font-size: 17px;
    line-height: 1.5;
    text-align: left;
}

.page-game-guides__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
}

details.page-game-guides__faq-item .page-game-guides__faq-answer {
    padding: 0 25px 20px;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 8px 8px;
    color: var(--text-main);
}

.page-game-guides__faq-answer p {
    margin-top: 10px;
    color: var(--text-main);
}

.page-game-guides__conclusion p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-guides__main-title {
        font-size: 40px;
    }
    .page-game-guides__section-title {
        font-size: 30px;
    }
    .page-game-guides__sub-title {
        font-size: 22px;
    }
    .page-game-guides__game-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-guides__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-game-guides__hero-image img {
        border-radius: 4px;
    }
    .page-game-guides__main-title {
        font-size: 32px;
        line-height: 1.2;
    }
    .page-game-guides__hero-description {
        font-size: 16px;
    }
    .page-game-guides__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-game-guides__cta-button--large {
        padding: 15px 40px;
        font-size: 18px;
    }
    .page-game-guides__section {
        padding: 40px 0;
    }
    .page-game-guides__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-game-guides__sub-title {
        font-size: 20px;
    }
    .page-game-guides__container {
        padding: 0 15px;
    }
    .page-game-guides__content-block {
        padding: 20px;
        margin-bottom: 20px;
    }
    .page-game-guides__game-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-game-guides__game-card img {
        
    }
    .page-game-guides__game-card, .page-game-guides__strategy-item {
        padding: 20px;
    }
    .page-game-guides__game-card p, .page-game-guides__strategy-item p {
        font-size: 14px;
    }
    .page-game-guides__btn-primary, .page-game-guides__btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    details.page-game-guides__faq-item summary.page-game-guides__faq-question {
        padding: 15px;
    }
    .page-game-guides__faq-qtext {
        font-size: 15px;
    }
    .page-game-guides__faq-toggle {
        font-size: 24px;
    }
    details.page-game-guides__faq-item .page-game-guides__faq-answer {
        padding: 0 15px 15px;
    }
    .page-game-guides img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-game-guides__section,
    .page-game-guides__card,
    .page-game-guides__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-game-guides__cta-buttons,
    .page-game-guides__button-group,
    .page-game-guides__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-game-guides__cta-buttons {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-game-guides__main-title {
        font-size: 28px;
    }
    .page-game-guides__section-title {
        font-size: 24px;
    }
    .page-game-guides__hero-description {
        font-size: 14px;
    }
    .page-game-guides__cta-button {
        font-size: 14px;
        padding: 10px 25px;
    }
    .page-game-guides__cta-button--large {
        font-size: 16px;
        padding: 12px 30px;
    }
    .page-game-guides__sub-title {
        font-size: 18px;
    }
    .page-game-guides__game-card-grid {
        gap: 15px;
    }
    .page-game-guides__game-card img {
        
    }
    .page-game-guides__card-title {
        font-size: 18px;
    }
    .page-game-guides__faq-qtext {
        font-size: 14px;
    }
    .page-game-guides__faq-toggle {
        font-size: 20px;
    }
}