:root {
    --page-promo-bg: #0A0A0A;
    --page-promo-card-bg: #111111;
    --page-promo-text-main: #FFF6D6;
    --page-promo-border: #3A2A12;
    --page-promo-glow: #FFD36B;
    --page-promo-primary-color: #F2C14E; /* Main brand color */
    --page-promo-secondary-color: #FFD36B; /* Auxiliary brand color */
    --page-promo-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --page-promo-white: #ffffff;
    --page-promo-dark-text: #333333;
}

.page-promo {
    background-color: var(--page-promo-bg);
    color: var(--page-promo-text-main); /* Ensure text is visible on dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* General Section Styling */
.page-promo__section {
    padding: 60px 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.page-promo__dark-section {
    background-color: var(--page-promo-card-bg); /* Use card BG for dark sections */
    color: var(--page-promo-text-main);
}

.page-promo__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Add internal padding for content */
    box-sizing: border-box;
}

.page-promo__section-title {
    font-size: clamp(2em, 3vw, 2.8em); /* Use clamp for H1/H2 font-size */
    color: var(--page-promo-primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-promo__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--page-promo-text-main);
}

/* Hero Section */
.page-promo__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above, text below */
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom */
    background-color: var(--page-promo-bg);
    overflow: hidden;
}

.page-promo__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image wrapper */
    margin-bottom: 30px; /* Space between image and content */
}

.page-promo__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(242, 193, 78, 0.4); /* Glow effect */
    filter: none; /* Ensure no CSS filter */
}

.page-promo__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 15px;
}

.page-promo__main-title {
    font-size: clamp(2.5em, 4.5vw, 3.5em); /* H1 font size with clamp */
    color: var(--page-promo-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 0.03em;
}

.page-promo__hero-description {
    font-size: 1.2em;
    color: var(--page-promo-text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promo__btn-primary,
.page-promo__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px; /* Ensure minimum button width */
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-promo__btn-primary {
    background: var(--page-promo-button-gradient);
    color: var(--page-promo-white); /* White text on gradient button */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-promo__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-promo__btn-secondary {
    background: transparent;
    color: var(--page-promo-primary-color);
    border: 2px solid var(--page-promo-primary-color);
}

.page-promo__btn-secondary:hover {
    background: var(--page-promo-primary-color);
    color: var(--page-promo-white);
    transform: translateY(-3px);
}

/* Video Section */
.page-promo__video-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    background-color: var(--page-promo-bg);
    text-align: center;
}

.page-promo__video-container {
    width: 100%; /* Desktop width */
    max-width: 960px; /* Max width for video */
    margin: 30px auto 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(242, 193, 78, 0.5);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    box-sizing: border-box; /* Ensure padding/border included in width */
}

.page-promo__video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}

.page-promo__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Current Promotions Grid */
.page-promo__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promo__promo-card {
    background-color: var(--page-promo-card-bg);
    border: 1px solid var(--page-promo-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(242, 193, 78, 0.2);
}

.page-promo__promo-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    filter: none; /* Ensure no CSS filter */
}

.page-promo__promo-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-promo__promo-card-title {
    font-size: 1.5em;
    color: var(--page-promo-primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promo__promo-card-text {
    font-size: 1em;
    color: var(--page-promo-text-main);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* How to Claim Section */
.page-promo__how-to-claim {
    background-color: var(--page-promo-bg);
}

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

.page-promo__claim-step {
    background-color: var(--page-promo-card-bg);
    border: 1px solid var(--page-promo-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promo__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--page-promo-primary-color);
    margin-bottom: 15px;
    background: var(--page-promo-button-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-promo__step-title {
    font-size: 1.3em;
    color: var(--page-promo-primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promo__step-text {
    font-size: 0.95em;
    color: var(--page-promo-text-main);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promo__step-link {
    color: var(--page-promo-secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promo__step-link:hover {
    color: var(--page-promo-primary-color);
    text-decoration: underline;
}

.page-promo__claim-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.3);
    margin-top: 40px;
    filter: none; /* Ensure no CSS filter */
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px;
}

/* Terms and Conditions */
.page-promo__terms-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-promo__terms-list li {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--page-promo-primary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1em;
    color: var(--page-promo-text-main);
}

.page-promo__terms-list li:last-child {
    margin-bottom: 0;
}

/* Why Choose Section */
.page-promo__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-promo__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(242, 193, 78, 0.2);
}

.page-promo__feature-title {
    font-size: 1.4em;
    color: var(--page-promo-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promo__feature-text {
    font-size: 0.95em;
    color: var(--page-promo-text-main);
}

/* Featured Games with Promotions */
.page-promo__game-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}