/* style/blog-top-reliable-exchange-games-guide.css */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --background-dark: #08160F;
    --card-background: #11271B;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-blog-top-reliable-exchange-games-guide {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--background-dark);
    line-height: 1.6;
    padding-bottom: 40px; /* Add some padding at the bottom for overall content */
}

.page-blog-top-reliable-exchange-games-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-top-reliable-exchange-games-guide__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Approximately 10px top padding, not var(--header-offset) */
    padding-bottom: 40px;
    background-color: var(--background-dark);
}

.page-blog-top-reliable-exchange-games-guide__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for desktop */
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 12px;
}

.page-blog-top-reliable-exchange-games-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-top-reliable-exchange-games-guide__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-top-reliable-exchange-games-guide__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive font size */
    color: var(--gold-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.4);
}

.page-blog-top-reliable-exchange-games-guide__intro-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-top-reliable-exchange-games-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-blog-top-reliable-exchange-games-guide__cta-buttons--center {
    margin-top: 40px;
}

.page-blog-top-reliable-exchange-games-guide__btn-primary,
.page-blog-top-reliable-exchange-games-guide__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-blog-top-reliable-exchange-games-guide__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-top-reliable-exchange-games-guide__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-top-reliable-exchange-games-guide__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.2);
}

.page-blog-top-reliable-exchange-games-guide__btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.4);
}

.page-blog-top-reliable-exchange-games-guide__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    padding-top: 40px;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-blog-top-reliable-exchange-games-guide__section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-blog-top-reliable-exchange-games-guide__overview-section,
.page-blog-top-reliable-exchange-games-guide__criteria-section,
.page-blog-top-reliable-exchange-games-guide__games-showcase,
.page-blog-top-reliable-exchange-games-guide__promotions-section,
.page-blog-top-reliable-exchange-games-guide__guide-section,
.page-blog-top-reliable-exchange-games-guide__security-support-section,
.page-blog-top-reliable-exchange-games-guide__faq-section,
.page-blog-top-reliable-exchange-games-guide__conclusion-section {
    padding: 60px 0;
    border-top: 1px solid var(--divider-color);
}

.page-blog-top-reliable-exchange-games-guide__text-block {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-top-reliable-exchange-games-guide__highlight-text {
    color: var(--gold-color);
    font-weight: 600;
}

.page-blog-top-reliable-exchange-games-guide__sub-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-top-reliable-exchange-games-guide__criteria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-blog-top-reliable-exchange-games-guide__criteria-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-top-reliable-exchange-games-guide__criteria-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-blog-top-reliable-exchange-games-guide__card {
    background-color: var(--card-background);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-main);
}

.page-blog-top-reliable-exchange-games-guide__card-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-top-reliable-exchange-games-guide__card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.page-blog-top-reliable-exchange-games-guide__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-top-reliable-exchange-games-guide__game-card {
    background-color: var(--card-background);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-blog-top-reliable-exchange-games-guide__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(87, 227, 141, 0.3);
}

.page-blog-top-reliable-exchange-games-guide__game-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.page-blog-top-reliable-exchange-games-guide__game-image {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-top-reliable-exchange-games-guide__game-title {
    font-size: 1.2rem;
    color: var(--gold-color);
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

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

.page-blog-top-reliable-exchange-games-guide__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-top-reliable-exchange-games-guide__step-card {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-blog-top-reliable-exchange-games-guide__step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 15px;
    display: inline-block;
    background-color: var(--deep-green-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 2px solid var(--primary-color);
}

.page-blog-top-reliable-exchange-games-guide__step-card .page-blog-top-reliable-exchange-games-guide__card-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-top: 15px;
}

.page-blog-top-reliable-exchange-games-guide__step-card .page-blog-top-reliable-exchange-games-guide__card-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

.page-blog-top-reliable-exchange-games-guide__security-support-section .page-blog-top-reliable-exchange-games-guide__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-blog-top-reliable-exchange-games-guide__security-support-section .page-blog-top-reliable-exchange-games-guide__text-content {
    padding-right: 20px;
}

.page-blog-top-reliable-exchange-games-guide__image-wrapper {
    text-align: center;
}

.page-blog-top-reliable-exchange-games-guide__support-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-top-reliable-exchange-games-guide__faq-list {
    margin-top: 40px;
}

.page-blog-top-reliable-exchange-games-guide__faq-item {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-top-reliable-exchange-games-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--deep-green-color);
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-top-reliable-exchange-games-guide__faq-item[open] .page-blog-top-reliable-exchange-games-guide__faq-question {
    border-bottom: 1px solid var(--border-color);
}

.page-blog-top-reliable-exchange-games-guide__faq-qtext {
    flex-grow: 1;
    color: var(--text-main);
}

.page-blog-top-reliable-exchange-games-guide__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold-color);
    margin-left: 15px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-top-reliable-exchange-games-guide__faq-item[open] .page-blog-top-reliable-exchange-games-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-top-reliable-exchange-games-guide__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    background-color: var(--card-background);
}

.page-blog-top-reliable-exchange-games-guide__faq-answer p {
    margin-bottom: 0;
}

/* Hide default details marker */
.page-blog-top-reliable-exchange-games-guide__faq-item summary::-webkit-details-marker,
.page-blog-top-reliable-exchange-games-guide__faq-item summary::marker {
    display: none;
}

/* Responsive styles for tablet and mobile */
@media (max-width: 1024px) {
    .page-blog-top-reliable-exchange-games-guide__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-blog-top-reliable-exchange-games-guide__section-title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }

    .page-blog-top-reliable-exchange-games-guide__criteria-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-top-reliable-exchange-games-guide__security-support-section .page-blog-top-reliable-exchange-games-guide__content-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-top-reliable-exchange-games-guide__security-support-section .page-blog-top-reliable-exchange-games-guide__text-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .page-blog-top-reliable-exchange-games-guide__hero-section {
        padding-top: 10px !important;
        padding-bottom: 20px;
    }

    .page-blog-top-reliable-exchange-games-guide__hero-image-wrapper {
        max-height: 300px;
    }

    .page-blog-top-reliable-exchange-games-guide__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-blog-top-reliable-exchange-games-guide__intro-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .page-blog-top-reliable-exchange-games-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-top-reliable-exchange-games-guide__btn-primary,
    .page-blog-top-reliable-exchange-games-guide__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }

    .page-blog-top-reliable-exchange-games-guide__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        padding-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-top-reliable-exchange-games-guide__section-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .page-blog-top-reliable-exchange-games-guide__overview-section,
    .page-blog-top-reliable-exchange-games-guide__criteria-section,
    .page-blog-top-reliable-exchange-games-guide__games-showcase,
    .page-blog-top-reliable-exchange-games-guide__promotions-section,
    .page-blog-top-reliable-exchange-games-guide__guide-section,
    .page-blog-top-reliable-exchange-games-guide__security-support-section,
    .page-blog-top-reliable-exchange-games-guide__faq-section,
    .page-blog-top-reliable-exchange-games-guide__conclusion-section {
        padding: 40px 0;
    }

    .page-blog-top-reliable-exchange-games-guide__text-block {
        font-size: 0.95rem;
    }

    /* General image responsiveness for content area */
    .page-blog-top-reliable-exchange-games-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
        box-sizing: border-box !important;
    }

    .page-blog-top-reliable-exchange-games-guide__container,
    .page-blog-top-reliable-exchange-games-guide__card,
    .page-blog-top-reliable-exchange-games-guide__game-card,
    .page-blog-top-reliable-exchange-games-guide__step-card,
    .page-blog-top-reliable-exchange-games-guide__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-top-reliable-exchange-games-guide__game-image {
        height: auto; /* Allow auto height for game cards on mobile */
        min-height: 200px;
    }

    .page-blog-top-reliable-exchange-games-guide__games-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 for first 4, then single column */
        gap: 20px;
        padding: 0 15px;
        overflow-x: hidden;
    }

    /* Specific rule for the last two items in a 6-item grid to go full width */
    .page-blog-top-reliable-exchange-games-guide__games-grid .page-blog-top-reliable-exchange-games-guide__game-card:nth-child(n+5) {
        grid-column: span 2; /* Make the 5th and 6th item span full width (2 columns) */
    }

    .page-blog-top-reliable-exchange-games-guide__promotions-grid,
    .page-blog-top-reliable-exchange-games-guide__guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .page-blog-top-reliable-exchange-games-guide__card,
    .page-blog-top-reliable-exchange-games-guide__step-card {
        padding: 20px;
    }

    .page-blog-top-reliable-exchange-games-guide__card-title {
        font-size: 1.1rem;
    }

    .page-blog-top-reliable-exchange-games-guide__card-text {
        font-size: 0.9rem;
    }

    .page-blog-top-reliable-exchange-games-guide__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-blog-top-reliable-exchange-games-guide__faq-answer {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .page-blog-top-reliable-exchange-games-guide__security-support-section .page-blog-top-reliable-exchange-games-guide__text-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-top-reliable-exchange-games-guide__image-wrapper {
        padding: 0 15px;
    }
}