.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Inherit from body or shared.css */
    padding-bottom: 60px; /* Add some padding at the bottom */
}

.page-promotions__hero-section {
    position: relative;
    padding: 80px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background for hero */
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-promotions__hero-section .page-promotions__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-promotions__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #26A9E0; /* Primary brand color for title */
    text-shadow: 0 0 10px rgba(38, 169, 224, 0.5);
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 900px;
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-promotions__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-promotions__section-description {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
}

/* Buttons */
.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
}

.page-promotions__btn-primary {
    background: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
    box-shadow: 0 4px 15px rgba(38, 169, 224, 0.4);
}

.page-promotions__btn-primary:hover {
    background: #1e87b7;
    border-color: #1e87b7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 169, 224, 0.6);
}

.page-promotions__btn-secondary {
    background: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
    box-shadow: 0 4px 15px rgba(38, 169, 224, 0.2);
}

.page-promotions__btn-secondary:hover {
    background: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 169, 224, 0.4);
}

.page-promotions__btn-text {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.page-promotions__btn-text:hover {
    color: #1e87b7;
}

.page-promotions__arrow {
    transition: transform 0.3s ease;
}

.page-promotions__btn-text:hover .page-promotions__arrow {
    transform: translateX(5px);
}

/* Current Promotions Section */
.page-promotions__current-promos {
    padding: 60px 0;
    background-color: #121212; /* Dark background */
}

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

.page-promotions__promo-card {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.page-promotions__promo-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__promo-card-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__promo-card-title a {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__promo-card-title a:hover {
    color: #1e87b7;
}

.page-promotions__promo-card-text {
    color: #cccccc;
    font-size: 0.95em;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Game Specific Promotions Section */
.page-promotions__game-specific-promos {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.page-promotions__game-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.page-promotions__game-promo-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__game-promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.page-promotions__game-promo-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-promotions__game-promo-title a {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__game-promo-title a:hover {
    color: #1e87b7;
}

.page-promotions__game-promo-text {
    color: #cccccc;
    font-size: 0.9em;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
    padding: 60px 0;
    background-color: #121212; /* Dark background */
    text-align: center;
}

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

.page-promotions__step-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-promotions__step-icon {
    width: 60px;
    height: 60px;
    background-color: #26A9E0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(38, 169, 224, 0.5);
}

.page-promotions__step-title {
    font-size: 1.4em;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__step-text {
    color: #cccccc;
    font-size: 0.95em;
    line-height: 1.7;
}

.page-promotions__step-text a {
    color: #26A9E0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promotions__step-text a:hover {
    color: #1e87b7;
}

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

/* Terms Overview Section */
.page-promotions__terms-overview {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin: 50px auto 0 auto;
    max-width: 900px;
}

.page-promotions__terms-list li {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 5px solid #26A9E0;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: #cccccc;
    font-size: 1em;
    line-height: 1.7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Why Choose Section */
.page-promotions__why-choose {
    padding: 60px 0;
    background-color: #121212; /* Dark background */
    text-align: center;
}

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

.page-promotions__feature-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__feature-icon {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: rgba(38, 169, 224, 0.1);
    padding: 0;
    box-shadow: 0 0 10px rgba(38, 169, 224, 0.3);
}

.page-promotions__feature-title {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__feature-text {
    color: #cccccc;
    font-size: 0.95em;
    line-height: 1.7;
}

/* FAQ Section */
.page-promotions__faq {
    padding: 60px 0;
    background-color: #1a1a1a;
}