/* style/blog-oke179-promotions-guide.css */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg-color: #11271B;
    --background-color-page: #08160F; /* Specific page background, separate from global body */
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-blog-oke179-promotions-guide {
    background-color: var(--background-color-page);
    color: var(--text-main-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-oke179-promotions-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* body handles top padding, this is extra visual space */
    overflow: hidden;
    text-align: center;
    background-color: var(--deep-green-color);
}

.page-blog-oke179-promotions-guide__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.page-blog-oke179-promotions-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.7;
}

.page-blog-oke179-promotions-guide__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    margin-top: 40px; /* Space between image and content */
}

.page-blog-oke179-promotions-guide__main-title {
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
    max-width: 100%;
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
}

.page-blog-oke179-promotions-guide__intro-description {
    color: var(--text-secondary-color);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-blog-oke179-promotions-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.page-blog-oke179-promotions-guide__btn-primary,
.page-blog-oke179-promotions-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-blog-oke179-promotions-guide__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-blog-oke179-promotions-guide__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 100, 0.3);
}

.page-blog-oke179-promotions-guide__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-oke179-promotions-guide__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.3);
}

.page-blog-oke179-promotions-guide__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-blog-oke179-promotions-guide__section {
    padding: 60px 0;
    background-color: var(--background-color-page);
    border-bottom: 1px solid var(--divider-color);
}

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

.page-blog-oke179-promotions-guide__section-title {
    color: var(--gold-color);
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-blog-oke179-promotions-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-blog-oke179-promotions-guide p {
    margin-bottom: 15px;
    color: var(--text-main-color);
}

.page-blog-oke179-promotions-guide__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 10px;
    object-fit: cover;
}

.page-blog-oke179-promotions-guide__step-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-blog-oke179-promotions-guide__list-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-oke179-promotions-guide__list-title {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-blog-oke179-promotions-guide__sub-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-secondary-color);
    margin-bottom: 15px;
}

.page-blog-oke179-promotions-guide__note-box {
    background-color: var(--deep-green-color);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
}

.page-blog-oke179-promotions-guide__note-title {
    color: var(--gold-color);
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-blog-oke179-promotions-guide__promo-grid,
.page-blog-oke179-promotions-guide__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-oke179-promotions-guide__promo-card,
.page-blog-oke179-promotions-guide__game-card,
.page-blog-oke179-promotions-guide__transaction-card,
.page-blog-oke179-promotions-guide__support-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-oke179-promotions-guide__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-blog-oke179-promotions-guide__card-title {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-blog-oke179-promotions-guide__card-description {
    color: var(--text-secondary-color);
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-oke179-promotions-guide__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-blog-oke179-promotions-guide__transaction-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-oke179-promotions-guide__support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-oke179-promotions-guide__faq-list {
    margin-top: 30px;
}

.page-blog-oke179-promotions-guide__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-oke179-promotions-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1em;
    background-color: var(--deep-green-color);
    border-bottom: 1px solid var(--divider-color);
    list-style: none;
}

.page-blog-oke179-promotions-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-oke179-promotions-guide__faq-qtext {
    flex-grow: 1;
}

.page-blog-oke179-promotions-guide__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--gold-color);
    transition: transform 0.3s ease;
}

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

.page-blog-oke179-promotions-guide__faq-answer {
    padding: 0 25px 20px;
    color: var(--text-secondary-color);
    line-height: 1.7;
    font-size: 0.95em;
}

.page-blog-oke179-promotions-guide__faq-answer p {
    margin-bottom: 0;
}

.page-blog-oke179-promotions-guide__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-blog-oke179-promotions-guide__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-blog-oke179-promotions-guide__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-blog-oke179-promotions-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-oke179-promotions-guide__hero-section {
        padding-bottom: 40px;
    }

    .page-blog-oke179-promotions-guide__hero-content {
        margin-top: 20px;
        padding: 0 15px;
    }

    .page-blog-oke179-promotions-guide__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
        margin-bottom: 15px;
    }

    .page-blog-oke179-promotions-guide__intro-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-blog-oke179-promotions-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-oke179-promotions-guide__btn-primary,
    .page-blog-oke179-promotions-guide__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-blog-oke179-promotions-guide__section {
        padding: 40px 0;
    }

    .page-blog-oke179-promotions-guide__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-oke179-promotions-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-oke179-promotions-guide__image-content,
    .page-blog-oke179-promotions-guide__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-oke179-promotions-guide__promo-grid,
    .page-blog-oke179-promotions-guide__game-grid,
    .page-blog-oke179-promotions-guide__transaction-steps,
    .page-blog-oke179-promotions-guide__support-channels {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-oke179-promotions-guide__list-item,
    .page-blog-oke179-promotions-guide__promo-card,
    .page-blog-oke179-promotions-guide__game-card,
    .page-blog-oke179-promotions-guide__transaction-card,
    .page-blog-oke179-promotions-guide__support-item,
    .page-blog-oke179-promotions-guide__faq-item {
        padding: 20px;
    }

    .page-blog-oke179-promotions-guide__list-title {
        font-size: 1.3em;
    }

    .page-blog-oke179-promotions-guide__note-title,
    .page-blog-oke179-promotions-guide__card-title {
        font-size: 1.2em;
    }

    .page-blog-oke179-promotions-guide__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-blog-oke179-promotions-guide__faq-answer {
        padding: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .page-blog-oke179-promotions-guide__main-title {
        font-size: clamp(1.6em, 7vw, 2.2em);
    }

    .page-blog-oke179-promotions-guide__section-title {
        font-size: 1.6em;
    }
}