/* style/promotions.css */
.page-promotions {
    font-family: Arial, sans-serif;
    color: #e5dfd3; /* Light text for dark backgrounds */
    background-color: #1A202C;
    line-height: 1.6;
}

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

.page-promotions__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Darker gradient for hero */
    padding: 100px 0;
    text-align: center;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: floatEffect 10s infinite ease-in-out;
}

.page-promotions__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    animation: floatEffect 12s infinite reverse ease-in-out;
}

@keyframes floatEffect {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

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

.page-promotions__hero-title .highlight {
    color: #e5dfd3;
}

.page-promotions__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #e5dfd3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__cta-button:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: #e5dfd3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__why-choose-us, .page-promotions__featured-promotions, .page-promotions__all-promotions-list, .page-promotions__how-to-claim, .page-promotions__responsible-gambling {
    padding: 60px 0;
    background-color: #1A202C;
}

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

.page-promotions__feature-item, .page-promotions__promo-card, .page-promotions__step-item {
    background-color: #2a3442; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__feature-item:hover, .page-promotions__promo-card:hover, .page-promotions__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__feature-icon, .page-promotions__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions__feature-title, .page-promotions__promo-title, .page-promotions__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__feature-text, .page-promotions__promo-text, .page-promotions__step-text {
    font-size: 1em;
    color: #e5dfd3;
}

.page-promotions__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #FFD700;
}

.page-promotions__promo-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__promo-button:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
}

.page-promotions__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-promotions__detail-item {
    background-color: #2a3442;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border-left: 5px solid #FFD700;
}

.page-promotions__detail-item:hover {
    transform: translateY(-3px);
}

.page-promotions__detail-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions__detail-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__detail-title a:hover {
    color: #e5c100;
    text-decoration: underline;
}

.page-promotions__detail-description {
    font-size: 0.95em;
    color: #e5dfd3;
    margin-bottom: 15px;
}

.page-promotions__detail-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__detail-button:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
}

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

.page-promotions__step-text a:hover {
    text-decoration: underline;
    color: #e5c100;
}

.page-promotions__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-promotions__cta-bottom p {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 25px;
}

.page-promotions__responsible-gambling {
    background-color: #1a202c;
    padding-bottom: 80px;
}

.page-promotions__responsible-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__responsible-list li {
    background-color: #2a3442;
    margin-bottom: 15px;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #e5dfd3;
    border-left: 4px solid #FFD700;
}

.page-promotions__responsible-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.4));
}

.page-promotions__responsible-text {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #e5dfd3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__features-grid, .page-promotions__promo-grid, .page-promotions__steps-grid, .page-promotions__detail-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__why-choose-us, .page-promotions__featured-promotions, .page-promotions__all-promotions-list, .page-promotions__how-to-claim, .page-promotions__responsible-gambling {
        padding: 40px 0;
    }
    .page-promotions__feature-item, .page-promotions__promo-card, .page-promotions__step-item, .page-promotions__detail-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__features-grid, .page-promotions__promo-grid, .page-promotions__steps-grid, .page-promotions__detail-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__feature-icon, .page-promotions__step-icon {
        width: 60px;
        height: 60px;
    }
    .page-promotions__feature-title, .page-promotions__promo-title, .page-promotions__step-title {
        font-size: 1.4em;
    }
    .page-promotions__responsible-list li {
        font-size: 0.9em;
    }
}