/* style/blog-f1680-web-latest-promotions-games.css */

:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --text-main-color: #1F2D3D;
    --background-color: #F4F7FB;
    --card-bg-color: #FFFFFF;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
}

.page-blog-f1680-web-latest-promotions-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color); /* Assuming body background is light for contrast */
    background-color: var(--background-color);
    line-height: 1.6;
}

.page-blog-f1680-web-latest-promotions-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-blog-f1680-web-latest-promotions-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-blog-f1680-web-latest-promotions-games__section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-f1680-web-latest-promotions-games__section-description {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* HERO Section */
.page-blog-f1680-web-latest-promotions-games__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(--background-color);
}

.page-blog-f1680-web-latest-promotions-games__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-blog-f1680-web-latest-promotions-games__hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-f1680-web-latest-promotions-games__hero-image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-blog-f1680-web-latest-promotions-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-blog-f1680-web-latest-promotions-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-f1680-web-latest-promotions-games__intro-text {
    font-size: 1.1rem;
    color: var(--text-main-color);
    max-width: 700px;
    margin: 0 auto 30px;
}

.page-blog-f1680-web-latest-promotions-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.page-blog-f1680-web-latest-promotions-games__btn-primary,
.page-blog-f1680-web-latest-promotions-games__btn-secondary,
.page-blog-f1680-web-latest-promotions-games__card-button {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-blog-f1680-web-latest-promotions-games__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.3);
}

.page-blog-f1680-web-latest-promotions-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
}

.page-blog-f1680-web-latest-promotions-games__btn-secondary {
    background: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-blog-f1680-web-latest-promotions-games__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.2);
}

.page-blog-f1680-web-latest-promotions-games__btn-large {
    padding: 18px 45px;
    font-size: 20px;
}

/* Promotions & Games Grid */
.page-blog-f1680-web-latest-promotions-games__promotions-grid,
.page-blog-f1680-web-latest-promotions-games__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-f1680-web-latest-promotions-games__promotion-card,
.page-blog-f1680-web-latest-promotions-games__game-card {
    background: var(--card-bg-color);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-blog-f1680-web-latest-promotions-games__promotion-card:hover,
.page-blog-f1680-web-latest-promotions-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-blog-f1680-web-latest-promotions-games__promotion-card img,
.page-blog-f1680-web-latest-promotions-games__game-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Ensure minimum image size */
    min-height: 200px; /* Ensure minimum image size */
}

.page-blog-f1680-web-latest-promotions-games__card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main-color);
    margin: 20px 20px 10px;
    line-height: 1.3;
}

.page-blog-f1680-web-latest-promotions-games__card-title a {
    color: var(--text-main-color);
    text-decoration: none;
}

.page-blog-f1680-web-latest-promotions-games__card-title a:hover {
    color: var(--primary-color);
}

.page-blog-f1680-web-latest-promotions-games__card-text {
    font-size: 16px;
    color: #666;
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-f1680-web-latest-promotions-games__card-button {
    margin: 0 20px 20px;
    align-self: flex-start;
    padding: 12px 25px;
    font-size: 16px;
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 3px 10px rgba(47, 107, 255, 0.2);
}

.page-blog-f1680-web-latest-promotions-games__card-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.3);
}

.page-blog-f1680-web-latest-promotions-games__view-all-promotions,
.page-blog-f1680-web-latest-promotions-games__view-all-games {
    margin-top: 20px;
}

/* Why Choose Section */
.page-blog-f1680-web-latest-promotions-games__why-choose {
    background-color: var(--card-bg-color);
}

.page-blog-f1680-web-latest-promotions-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-blog-f1680-web-latest-promotions-games__feature-item {
    padding: 30px;
    background: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-f1680-web-latest-promotions-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-blog-f1680-web-latest-promotions-games__feature-item img {
    
    
    margin-bottom: 20px;
    min- /* Ensure minimum image size */
    min- /* Ensure minimum image size */
    display: inline-block;
}

.page-blog-f1680-web-latest-promotions-games__feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-blog-f1680-web-latest-promotions-games__feature-text {
    font-size: 16px;
    color: #666;
}

/* FAQ Section */
.page-blog-f1680-web-latest-promotions-games__faq {
    background-color: var(--background-color);
}

.page-blog-f1680-web-latest-promotions-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

details.page-blog-f1680-web-latest-promotions-games__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

details.page-blog-f1680-web-latest-promotions-games__faq-item summary.page-blog-f1680-web-latest-promotions-games__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;
}

details.page-blog-f1680-web-latest-promotions-games__faq-item summary.page-blog-f1680-web-latest-promotions-games__faq-question::-webkit-details-marker {
    display: none;
}

details.page-blog-f1680-web-latest-promotions-games__faq-item summary.page-blog-f1680-web-latest-promotions-games__faq-question:hover {
    background: #f8f8f8;
}

.page-blog-f1680-web-latest-promotions-games__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-main-color);
}

.page-blog-f1680-web-latest-promotions-games__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
}

details.page-blog-f1680-web-latest-promotions-games__faq-item .page-blog-f1680-web-latest-promotions-games__faq-answer {
    padding: 0 25px 20px;
    background: #fdfdfd;
    border-top: 1px solid #eee;
    border-radius: 0 0 8px 8px;
    font-size: 16px;
    color: #555;
}

/* Call to Action Section */
.page-blog-f1680-web-latest-promotions-games__call-to-action {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
}

.page-blog-f1680-web-latest-promotions-games__call-to-action .page-blog-f1680-web-latest-promotions-games__section-title {
    color: #ffffff;
    margin-bottom: 25px;
}

.page-blog-f1680-web-latest-promotions-games__call-to-action .page-blog-f1680-web-latest-promotions-games__section-description {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-blog-f1680-web-latest-promotions-games__call-to-action .page-blog-f1680-web-latest-promotions-games__btn-primary {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-blog-f1680-web-latest-promotions-games__call-to-action .page-blog-f1680-web-latest-promotions-games__btn-primary:hover {
    background: #e0e0e0;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-f1680-web-latest-promotions-games__section-title {
        font-size: 32px;
    }
    .page-blog-f1680-web-latest-promotions-games__section-description {
        font-size: 16px;
    }
    .page-blog-f1680-web-latest-promotions-games__hero-image-wrapper img {
        border-radius: 8px;
    }
    .page-blog-f1680-web-latest-promotions-games__card-title {
        font-size: 20px;
    }
    .page-blog-f1680-web-latest-promotions-games__card-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .page-blog-f1680-web-latest-promotions-games {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-f1680-web-latest-promotions-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-f1680-web-latest-promotions-games__hero-image-wrapper img {
        border-radius: 4px;
    }
    .page-blog-f1680-web-latest-promotions-games__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 10px;
    }
    .page-blog-f1680-web-latest-promotions-games__intro-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-blog-f1680-web-latest-promotions-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-f1680-web-latest-promotions-games__btn-primary,
    .page-blog-f1680-web-latest-promotions-games__btn-secondary,
    .page-blog-f1680-web-latest-promotions-games__card-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 16px;
    }
    .page-blog-f1680-web-latest-promotions-games__btn-large {
        padding: 15px 30px;
        font-size: 18px;
    }

    .page-blog-f1680-web-latest-promotions-games__section {
        padding: 40px 0;
    }
    .page-blog-f1680-web-latest-promotions-games__section-title {
        font-size: 28px;
    }
    .page-blog-f1680-web-latest-promotions-games__section-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .page-blog-f1680-web-latest-promotions-games__promotions-grid,
    .page-blog-f1680-web-latest-promotions-games__games-grid,
    .page-blog-f1680-web-latest-promotions-games__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-f1680-web-latest-promotions-games__promotion-card img,
    .page-blog-f1680-web-latest-promotions-games__game-card img {
        
    }

    .page-blog-f1680-web-latest-promotions-games__card-title {
        font-size: 18px;
        margin: 15px 15px 8px;
    }
    .page-blog-f1680-web-latest-promotions-games__card-text {
        font-size: 14px;
        padding: 0 15px;
        margin-bottom: 15px;
    }
    .page-blog-f1680-web-latest-promotions-games__card-button {
        margin: 0 15px 15px;
    }

    .page-blog-f1680-web-latest-promotions-games__feature-item {
        padding: 25px;
    }
    .page-blog-f1680-web-latest-promotions-games__feature-title {
        font-size: 20px;
    }
    .page-blog-f1680-web-latest-promotions-games__feature-item img {
        
        
    }

    details.page-blog-f1680-web-latest-promotions-games__faq-item summary.page-blog-f1680-web-latest-promotions-games__faq-question {
        padding: 15px 20px;
    }
    .page-blog-f1680-web-latest-promotions-games__faq-qtext {
        font-size: 16px;
    }
    .page-blog-f1680-web-latest-promotions-games__faq-toggle {
        font-size: 24px;
    }
    details.page-blog-f1680-web-latest-promotions-games__faq-item .page-blog-f1680-web-latest-promotions-games__faq-answer {
        padding: 0 20px 15px;
    }

    .page-blog-f1680-web-latest-promotions-games__call-to-action {
        padding: 60px 20px;
    }

    /* Ensure all images and containers fit screen */
    .page-blog-f1680-web-latest-promotions-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-f1680-web-latest-promotions-games__container,
    .page-blog-f1680-web-latest-promotions-games__hero-container,
    .page-blog-f1680-web-latest-promotions-games__promotions-grid,
    .page-blog-f1680-web-latest-promotions-games__games-grid,
    .page-blog-f1680-web-latest-promotions-games__features-grid,
    .page-blog-f1680-web-latest-promotions-games__faq-list,
    .page-blog-f1680-web-latest-promotions-games__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-f1680-web-latest-promotions-games__cta-buttons {
      flex-wrap: wrap !important;
      gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-blog-f1680-web-latest-promotions-games__section-title {
        font-size: 24px;
    }
    .page-blog-f1680-web-latest-promotions-games__main-title {
        font-size: clamp(1.8rem, 10vw, 2.2rem);
    }
    .page-blog-f1680-web-latest-promotions-games__card-title {
        font-size: 16px;
    }
    .page-blog-f1680-web-latest-promotions-games__feature-title {
        font-size: 18px;
    }
    .page-blog-f1680-web-latest-promotions-games__faq-qtext {
        font-size: 15px;
    }
}