/* style/promotions.css */
:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --site-bg-dark: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
}

.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for dark background */
    background-color: var(--site-bg-dark);
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions__section-title {
    font-size: 36px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.page-promotions__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, main offset handled by body */
    background-color: var(--site-bg-dark);
    overflow: hidden;
}

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

.page-promotions__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 211, 107, 0.3);
}

.page-promotions__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

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

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for responsive font size */
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-promotions__hero-description {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #000000; /* Ensuring contrast with button background */
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1); /* Slight brightness change, not color filter */
}

/* Intro Section */
.page-promotions__intro-section {
    padding: 60px 0;
    background-color: var(--site-bg-dark);
    color: var(--text-main);
}

.page-promotions__intro-section p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__feature-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__feature-item img {
    
    
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.page-promotions__feature-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-promotions__feature-item p {
    font-size: 15px;
    color: var(--text-main);
}

/* Quick Access Section */
.page-promotions__quick-access-section {
    padding: 60px 0;
    background-color: var(--card-bg);
    text-align: center;
}

.page-promotions__quick-access-section p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Games Section */
.page-promotions__games-section {
    padding: 60px 0;
    background-color: var(--site-bg-dark);
}

.page-promotions__games-section p {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__game-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-promotions__game-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    padding: 20px 20px 10px;
}

.page-promotions__game-card p {
    font-size: 15px;
    color: var(--text-main);
    padding: 0 20px 20px;
    text-align: left;
}

.page-promotions__btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    margin: 0 20px 20px;
    transition: all 0.3s ease;
}

.page-promotions__btn-secondary:hover {
    background: var(--secondary-color);
    color: #000000;
    box-shadow: 0 3px 10px rgba(255, 211, 107, 0.4);
}

/* Promotions List Section */
.page-promotions__promotions-list-section {
    padding: 60px 0;
    background-color: var(--card-bg);
}

.page-promotions__promotions-list-section p {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__promo-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__promo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-promotions__promo-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    padding: 20px 20px 10px;
}

.page-promotions__promo-card p {
    font-size: 15px;
    color: var(--text-main);
    padding: 0 20px 20px;
    text-align: left;
}

.page-promotions__btn-primary {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #000000; /* Ensuring contrast with button background */
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    margin: 0 20px 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-promotions__btn-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 3px 10px rgba(255, 211, 107, 0.4);
}

/* Security and Support Section */
.page-promotions__security-support-section {
    padding: 60px 0;
    background-color: var(--site-bg-dark);
}

.page-promotions__security-support-section p {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__info-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-promotions__info-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-promotions__info-item p {
    font-size: 15px;
    color: var(--text-main);
}

.page-promotions__contact-cta {
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 60px 0;
    background-color: var(--card-bg);
}

.page-promotions__faq-section p {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__faq-list {
    margin-top: 40px;
}

details.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}

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

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
    background: rgba(255, 211, 107, 0.05); /* Slight hover effect */
}

.page-promotions__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--primary-color);
}

.page-promotions__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

details.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg); /* Rotate for 'x' effect */
}

details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 20px;
    background: var(--site-bg-dark);
    border-radius: 0 0 10px 10px;
    color: var(--text-main);
}

.page-promotions__faq-answer p {
    text-align: left;
    margin-bottom: 0;
}

/* Latest Blog Section */
.page-promotions__latest-blog-section {
    padding: 60px 0;
    background-color: var(--site-bg-dark);
}

.page-promotions__latest-blog-section p {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__blog-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-promotions__blog-content {
    padding: 20px;
}

.page-promotions__blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.page-promotions__blog-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__blog-content h3 a:hover {
    color: var(--secondary-color);
}

.page-promotions__blog-content p {
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 15px;
    text-align: left;
}

.page-promotions__blog-date {
    font-size: 14px;
    color: #888;
    display: block;
}

.page-promotions__view-all-posts {
    text-align: center;
    margin-top: 40px;
}

/* Common styles for sections */
.page-promotions__dark-section {
    background-color: var(--card-bg);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions__section-title {
        font-size: 32px;
    }
    .page-promotions__main-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    .page-promotions__hero-description {
        font-size: 17px;
    }
    .page-promotions__cta-button {
        padding: 12px 30px;
        font-size: 17px;
    }
    .page-promotions__feature-item,
    .page-promotions__game-card,
    .page-promotions__promo-card,
    .page-promotions__info-item {
        padding: 25px;
    }
    .page-promotions__game-card img,
    .page-promotions__promo-card img,
    .page-promotions__blog-card img {
        
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__hero-image img {
        border-radius: 4px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-promotions__hero-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .page-promotions__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-promotions__button-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__button-group .page-promotions__cta-button {
        width: 100%;
    }
    .page-promotions__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-promotions__intro-section,
    .page-promotions__quick-access-section,
    .page-promotions__games-section,
    .page-promotions__promotions-list-section,
    .page-promotions__security-support-section,
    .page-promotions__faq-section,
    .page-promotions__latest-blog-section {
        padding: 40px 0;
    }
    .page-promotions__container {
        padding: 0 15px;
    }
    .page-promotions__feature-grid,
    .page-promotions__game-cards-grid,
    .page-promotions__promo-cards-grid,
    .page-promotions__info-grid,
    .page-promotions__blog-cards-grid {
        gap: 20px;
        margin-top: 30px;
    }
    .page-promotions__feature-item,
    .page-promotions__game-card,
    .page-promotions__promo-card,
    .page-promotions__info-item {
        padding: 20px;
    }
    .page-promotions__feature-item h3,
    .page-promotions__game-card h3,
    .page-promotions__promo-card h3,
    .page-promotions__info-item h3 {
        font-size: 20px;
    }
    .page-promotions__game-card img,
    .page-promotions__promo-card img,
    .page-promotions__blog-card img {
        
    }
    details.page-promotions__faq-item summary.page-promotions__faq-question {
        padding: 15px;
    }
    .page-promotions__faq-qtext {
        font-size: 16px;
    }
    .page-promotions__faq-toggle {
        font-size: 24px;
        width: 24px;
    }
    details.page-promotions__faq-item .page-promotions__faq-answer {
        padding: 0 15px 15px;
    }
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__cta-buttons,
    .page-promotions__button-group,
    .page-promotions__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__btn-primary, .page-promotions__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .page-promotions__section-title {
        font-size: 24px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    .page-promotions__hero-description {
        font-size: 15px;
    }
    .page-promotions__cta-button {
        font-size: 15px;
        padding: 10px 25px;
    }
    .page-promotions__feature-item h3,
    .page-promotions__game-card h3,
    .page-promotions__promo-card h3,
    .page-promotions__info-item h3 {
        font-size: 18px;
    }
    .page-promotions__feature-item p,
    .page-promotions__game-card p,
    .page-promotions__promo-card p,
    .page-promotions__info-item p,
    .page-promotions__blog-content p {
        font-size: 14px;
    }
    .page-promotions__blog-content h3 {
        font-size: 18px;
    }
    .page-promotions__blog-date {
        font-size: 13px;
    }
}