/* style/blog-game-guides-tips.css */
.page-blog-game-guides-tips {
    color: #333333; /* Dark text for default light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-blog-game-guides-tips__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000000; /* Dark background for hero text contrast */
    color: #FFFFFF;
    overflow: hidden;
}

.page-blog-game-guides-tips__hero-container {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
    max-width: 900px;
}

.page-blog-game-guides-tips__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FCBC45; /* Login button color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-game-guides-tips__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-blog-game-guides-tips__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-blog-game-guides-tips__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    white-space: nowrap;
}

.page-blog-game-guides-tips__button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-blog-game-guides-tips__button--register:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
}

.page-blog-game-guides-tips__button--login,
.page-blog-game-guides-tips__button--play-now,
.page-blog-game-guides-tips__button--download {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-blog-game-guides-tips__button--login:hover,
.page-blog-game-guides-tips__button--play-now:hover,
.page-blog-game-guides-tips__button--download:hover {
    background-color: #e0a53a;
    transform: translateY(-2px);
}

.page-blog-game-guides-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-top: -120px; /* Adjust to pull image up behind hero text */
    filter: brightness(0.6); /* Darken image for better text readability */
}

.page-blog-game-guides-tips__content-area,
.page-blog-game-guides-tips__introduction,
.page-blog-game-guides-tips__game-categories,
.page-blog-game-guides-tips__advanced-tips,
.page-blog-game-guides-tips__responsible-gaming,
.page-blog-game-guides-tips__faq,
.page-blog-game-guides-tips__cta-download,
.page-blog-game-guides-tips__contact-support {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.page-blog-game-guides-tips__section-title {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-blog-game-guides-tips__paragraph {
    font-size: 1.1em;
    color: #333333;
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-game-guides-tips__image-container {
    text-align: center;
    margin: 40px 0;
}

.page-blog-game-guides-tips__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-blog-game-guides-tips__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-game-guides-tips__category-card {
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-game-guides-tips__category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-blog-game-guides-tips__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-blog-game-guides-tips__card-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
}

.page-blog-game-guides-tips__card-title a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.page-blog-game-guides-tips__card-title a:hover {
    color: #FCBC45;
}

.page-blog-game-guides-tips__card-description {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-game-guides-tips__card-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-blog-game-guides-tips__card-link:hover {
    background-color: #333333;
}

.page-blog-game-guides-tips__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-game-guides-tips__list-item {
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
}

.page-blog-game-guides-tips__list-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 10px;
}

.page-blog-game-guides-tips__list-description {
    font-size: 1.05em;
    color: #444444;
}

.page-blog-game-guides-tips__call-to-action {
    text-align: center;
    background-color: #000000;
    color: #FFFFFF;
    padding: 40px 20px;
    border-radius: 12px;
    margin-top: 50px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-game-guides-tips__call-to-action-text {
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: bold;
    color: #FCBC45;
}

.page-blog-game-guides-tips__responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-blog-game-guides-tips__responsible-item {
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-blog-game-guides-tips__responsible-icon {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-blog-game-guides-tips__responsible-subtitle {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 10px;
}

.page-blog-game-guides-tips__responsible-text {
    font-size: 1em;
    color: #555555;
}

.page-blog-game-guides-tips__button--learn-more,
.page-blog-game-guides-tips__button--view-all-faq,
.page-blog-game-guides-tips__button--contact-us {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    background-color: #000000;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-blog-game-guides-tips__button--learn-more:hover,
.page-blog-game-guides-tips__button--view-all-faq:hover,
.page-blog-game-guides-tips__button--contact-us:hover {
    background-color: #333333;
}

.page-blog-game-guides-tips__faq-item {
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
}

.page-blog-game-guides-tips__faq-question {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-blog-game-guides-tips__faq-answer {
    font-size: 1.05em;
    color: #444444;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px solid #E0E0E0;
    margin-top: 10px;
}

.page-blog-game-guides-tips__faq-answer.page-blog-game-guides-tips__faq-answer--active {
    display: block;
}

.page-blog-game-guides-tips__faq-answer a {
    color: #FCBC45;
    text-decoration: none;
}

.page-blog-game-guides-tips__faq-answer a:hover {
    text-decoration: underline;
}

.page-blog-game-guides-tips__cta-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin-top: 60px;
}

.page-blog-game-guides-tips__cta-container {
    max-width: 800px;
}

.page-blog-game-guides-tips__cta-title {
    font-size: 2.8em;
    color: #FCBC45;
    margin-bottom: 20px;
}

.page-blog-game-guides-tips__cta-description {
    font-size: 1.2em;
    color: #F0F0F0;
    margin-bottom: 40px;
}

.page-blog-game-guides-tips__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-blog-game-guides-tips__hero-title {
        font-size: 2.5em;
    }
    .page-blog-game-guides-tips__section-title {
        font-size: 2em;
    }
    .page-blog-game-guides-tips__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-blog-game-guides-tips__hero-section {
        padding: 40px 15px;
    }
    .page-blog-game-guides-tips__hero-title {
        font-size: 2em;
    }
    .page-blog-game-guides-tips__hero-description {
        font-size: 1em;
    }
    .page-blog-game-guides-tips__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-game-guides-tips__button {
        width: 100%;
        max-width: 280px;
    }
    .page-blog-game-guides-tips__content-area,
    .page-blog-game-guides-tips__introduction,
    .page-blog-game-guides-tips__game-categories,
    .page-blog-game-guides-tips__advanced-tips,
    .page-blog-game-guides-tips__responsible-gaming,
    .page-blog-game-guides-tips__faq,
    .page-blog-game-guides-tips__cta-download,
    .page-blog-game-guides-tips__contact-support {
        padding: 40px 15px;
    }
    .page-blog-game-guides-tips__section-title {
        font-size: 1.8em;
    }
    .page-blog-game-guides-tips__paragraph {
        font-size: 0.95em;
    }
    .page-blog-game-guides-tips__card-title {
        font-size: 1.3em;
    }
    .page-blog-game-guides-tips__list-title {
        font-size: 1.5em;
    }
    .page-blog-game-guides-tips__call-to-action-text {
        font-size: 1.2em;
    }
    .page-blog-game-guides-tips__responsible-subtitle {
        font-size: 1.4em;
    }
    .page-blog-game-guides-tips__faq-question {
        font-size: 1.4em;
    }
    .page-blog-game-guides-tips__cta-title {
        font-size: 1.8em;
    }
    .page-blog-game-guides-tips__cta-description {
        font-size: 1em;
    }
    /* Mobile specific image sizing for content area images */
    .page-blog-game-guides-tips img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-blog-game-guides-tips__hero-title {
        font-size: 1.8em;
    }
    .page-blog-game-guides-tips__section-title {
        font-size: 1.6em;
    }
    .page-blog-game-guides-tips__cta-title {
        font-size: 1.6em;
    }
}