/* style/promotions.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #222222;
    --border-color: #e0e0e0;
}

.page-promotions {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

.page-promotions .section-title {
    font-size: 38px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    padding-top: 40px;
}

.page-promotions .section-description {
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-promotions .hero-promotions {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

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

.page-promotions .hero-promotions img {
    width: 100%;
    max-width: 1000px; /* Adjust as needed */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    object-fit: cover;
}

.page-promotions .hero-content {
    color: var(--text-light);
    max-width: 900px;
}

.page-promotions .hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-promotions .hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-promotions .hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-promotions .cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-promotions .primary-button {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-promotions .primary-button:hover {
    background: var(--text-light);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.page-promotions .secondary-button {
    background: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-promotions .secondary-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Promotion Categories */
.page-promotions .promotion-categories {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.page-promotions .category-card {
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions .category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions .category-card .card-title {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions .category-card .card-title a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-promotions .category-card .card-title a:hover {
    color: var(--primary-color);
}

.page-promotions .category-card .card-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions .category-card .card-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions .category-card .card-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* How To Claim Section */
.page-promotions .how-to-claim {
    padding: 80px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-promotions .how-to-claim .section-title {
    color: var(--primary-color);
}

.page-promotions .how-to-claim .section-description {
    color: var(--text-light);
}

.page-promotions .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-promotions .step-item {
    background: #333;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions .step-item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-promotions .step-item h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions .step-item p {
    font-size: 16px;
    color: var(--text-light);
}

.page-promotions .step-item p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-promotions .step-item p a:hover {
    color: var(--text-light);
}

/* Terms & Conditions Section */
.page-promotions .terms-conditions {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.page-promotions .terms-content {
    background: var(--text-light);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions .terms-content h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions .terms-content h3:first-of-type {
    margin-top: 0;
}

.page-promotions .terms-content p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.page-promotions .terms-conditions .cta-button {
    margin-top: 30px;
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.page-promotions .terms-conditions .cta-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Why Win68 Promotions Section */
.page-promotions .why-win68-promotions {
    padding: 80px 0;
    background-color: #f0f0f0;
}

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

.page-promotions .feature-item {
    background: var(--text-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-promotions .feature-item:hover {
    transform: translateY(-8px);
}

.page-promotions .feature-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-promotions .feature-item h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-promotions .feature-item p {
    font-size: 16px;
    color: var(--text-dark);
}

/* FAQ Section */
.page-promotions .faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.page-promotions .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-promotions .faq-question:hover {
    background: #f0f0f0;
}

.page-promotions .faq-question h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 0;
    flex-grow: 1;
}

.page-promotions .faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    line-height: 1;
    width: 30px;
    text-align: center;
}

.page-promotions .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-promotions .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.page-promotions .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding: 20px 25px;
    border: 1px solid var(--border-color);
    border-top: none;
}

.page-promotions .faq-answer p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
}

.page-promotions .faq-answer p a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-promotions .faq-answer p a:hover {
    color: var(--primary-color);
}

/* Latest News Section */
.page-promotions .latest-news {
    padding: 80px 0;
    background-color: #e8e8e8;
}

.page-promotions .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promotions .news-card {
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions .news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions .news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.page-promotions .news-card .card-title {
    font-size: 22px;
    color: var(--secondary-color);
    padding: 20px 20px 10px;
    font-weight: bold;
    flex-grow: 1;
}

.page-promotions .news-card .card-title a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-promotions .news-card .card-title a:hover {
    color: var(--primary-color);
}

.page-promotions .news-card .card-text {
    font-size: 15px;
    color: var(--text-dark);
    padding: 0 20px 20px;
}

.page-promotions .news-card .card-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 0 0 12px 12px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.page-promotions .news-card .card-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.page-promotions .view-all-news {
    text-align: center;
    margin-top: 50px;
}

.page-promotions .view-all-news .cta-button {
    background: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.page-promotions .view-all-news .cta-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Floating Buttons */
.page-promotions .floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-promotions .floating-button {
    display: block;
    width: 120px;
    padding: 12px 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.page-promotions .floating-button.login-button {
    background: var(--secondary-color);
    color: var(--text-light);
}

.page-promotions .floating-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions .hero-title {
        font-size: 40px;
    }
    .page-promotions .hero-description {
        font-size: 18px;
    }
    .page-promotions .section-title {
        font-size: 32px;
    }
    .page-promotions .section-description {
        font-size: 16px;
    }
    .page-promotions .category-card img {
        height: 180px;
    }
    .page-promotions .faq-question h3 {
        font-size: 18px;
    }
    .page-promotions .news-card img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-promotions .hero-promotions {
        padding: 40px 15px;
    }
    .page-promotions .hero-promotions img {
        margin-bottom: 30px;
    }
    .page-promotions .hero-title {
        font-size: 32px;
    }
    .page-promotions .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-promotions .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions .cta-button {
        padding: 12px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 250px;
    }
    .page-promotions .section-title {
        font-size: 28px;
        padding-top: 30px;
    }
    .page-promotions .section-description {
        margin-bottom: 30px;
    }
    .page-promotions .promotion-categories, .page-promotions .how-to-claim, .page-promotions .terms-conditions, .page-promotions .why-win68-promotions, .page-promotions .faq-section, .page-promotions .latest-news {
        padding: 50px 0;
    }
    .page-promotions .category-grid, .page-promotions .steps-grid, .page-promotions .features-grid, .page-promotions .news-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions .category-card, .page-promotions .step-item, .page-promotions .feature-item, .page-promotions .news-card {
        padding: 20px;
    }
    .page-promotions .category-card img {
        height: 150px;
    }
    .page-promotions .terms-content {
        padding: 30px;
    }
    .page-promotions .terms-content h3 {
        font-size: 24px;
    }
    .page-promotions .faq-question {
        padding: 15px 20px;
    }
    .page-promotions .faq-question h3 {
        font-size: 16px;
    }
    .page-promotions .faq-toggle {
        font-size: 24px;
    }
    .page-promotions .faq-answer {
        padding: 15px 20px;
    }
    .page-promotions .news-card img {
        height: 180px;
    }
    .page-promotions .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    .page-promotions .floating-button {
        width: 100px;
        padding: 10px 0;
        font-size: 14px;
    }
}