/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0A192F; /* Primary dark blue background */
    line-height: 1.6;
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A192F 0%, #2a3d5e 100%); /* Gradient with primary color */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-promotions__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    position: relative;
}

.page-promotions__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-promotions__section-subtitle {
    font-size: 1.2em;
    text-align: center;
    color: #B0B0B0;
    margin-bottom: 40px;
}

.page-promotions__intro {
    padding: 60px 0;
    background-color: #1A2A43; /* Slightly lighter dark blue */
}

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

.page-promotions__intro-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions__intro-item:hover {
    transform: translateY(-10px);
}

.page-promotions__intro-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-promotions__intro-item p {
    color: #E0E0E0;
}

.page-promotions__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.page-promotions__promo-categories {
    padding: 80px 0;
    background-color: #0A192F;
}

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

.page-promotions__category-card {
    background-color: #1A2A43;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    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 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__category-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-promotions__category-card h3 {
    color: #FFD700;
    font-size: 1.8em;
    padding: 20px 20px 10px;
}

.page-promotions__category-card p {
    color: #B0B0B0;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-promotions__category-link {
    display: block;
    background-color: #FFD700;
    color: #0A192F;
    text-align: center;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-radius: 0 0 10px 10px;
}

.page-promotions__category-link:hover {
    background-color: #e6c200;
}

.page-promotions__how-to-claim {
    padding: 80px 0;
    background-color: #1A2A43;
}

.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-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-promotions__step-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-promotions__step-item p {
    color: #E0E0E0;
}

.page-promotions__step-item a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__step-item a:hover {
    text-decoration: underline;
}

.page-promotions__cta-button--bottom {
    margin-top: 50px;
    text-align: center;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__terms-section {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-promotions__terms-section p {
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-promotions__terms-list {
    list-style-type: disc;
    margin-left: 25px;
    color: #E0E0E0;
}

.page-promotions__terms-list li {
    margin-bottom: 10px;
}

.page-promotions__terms-list li strong {
    color: #FFD700;
}

.page-promotions__app-download {
    padding: 80px 0;
    background-color: #1A2A43;
    text-align: center;
}

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

.page-promotions__app-cta-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions__app-image {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-promotions__app-image--qr {
    max-width: 150px;
}

.page-promotions__app-cta-item p {
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-promotions__faq {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-promotions__faq-item {
    background-color: #1A2A43;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-promotions__faq-item p {
    color: #E0E0E0;
}

.page-promotions__contact {
    padding: 80px 0;
    background-color: #1A2A43;
    text-align: center;
}

.page-promotions__contact p {
    color: #E0E0E0;
    margin-bottom: 30px;
}

.highlight {
    color: #FFD700;
}

.okwinbet-text {
    color: #FFD700;
}

.okwin-text {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2.5em;
    }

    .page-promotions__hero-description {
        font-size: 1.1em;
    }

    .page-promotions__section-title {
        font-size: 2em;
    }

    .page-promotions__intro-grid,
    .page-promotions__category-grid,
    .page-promotions__steps-grid,
    .page-promotions__app-cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        padding: 60px 0;
    }

    .page-promotions__hero-title {
        font-size: 2em;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
    }

    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}