:root {
    /* Custom colors from requirements */
    --color-primary: #F2C14E;
    --color-secondary: #FFD36B;
    --color-card-bg: #111111;
    --color-background: #0A0A0A;
    --color-text-main: #FFF6D6;
    --color-border: #3A2A12;
    --color-glow: #FFD36B;
    --btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-promo {
    font-family: Arial, sans-serif;
    color: var(--color-text-main); /* Text Main for general content */
    background-color: var(--color-background); /* Page background */
    line-height: 1.6;
    padding-bottom: 60px; /* Space for footer */
}

/* Ensure first section has proper top padding, body handles header offset */
.page-promo__hero-section,
.page-promo__why-super-section,
.page-promo__types-section,
.page-promo__how-to-claim-section,
.page-promo__featured-games-section,
.page-promo__security-section,
.page-promo__faq-section,
.page-promo__cta-final-section {
    padding-top: 60px; /* Standard section padding */
    padding-bottom: 60px;
    position: relative;
    overflow: hidden; /* Prevent content overflow */
}

/* Specific adjustment for hero section top padding if it's the very first element below body padding */
.page-promo__hero-section {
    padding-top: 10px; /* Small top margin, body handles header-offset */
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-promo__video-container {
    width: 100%; /* Desktop width */
    max-width: 1200px;
    margin: 0 auto 30px auto;
    box-sizing: border-box;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9; /* Maintain aspect ratio */
}

.page-promo__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

.page-promo__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promo__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    color: var(--color-secondary);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5); /* Glow effect */
}

.page-promo__hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--color-text-main);
}

.page-promo__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.page-promo__btn-primary,
.page-promo__btn-secondary,
.page-promo__card-link,
.page-promo__step-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    text-align: center;
}

.page-promo__btn-primary {
    background: var(--btn-gradient);
    color: #ffffff;
    border: none;
}

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

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

.page-promo__btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-card-bg); /* Darker text on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
}

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

.page-promo__section-title {
    font-size: 2.5rem;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.3);
}

.page-promo__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: var(--color-text-main);
}

.page-promo__dark-section {
    background-color: var(--color-background);
    color: var(--color-text-main);
}

.page-promo__feature-grid,
.page-promo__promo-grid,
.page-promo__steps-grid,
.page-promo__security-features,
.page-promo__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promo__feature-card,
.page-promo__promo-card,
.page-promo__step-item,
.page-promo__security-item,
.page-promo__category-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-main);
}

.page-promo__feature-card:hover,
.page-promo__promo-card:hover,
.page-promo__step-item:hover,
.page-promo__security-item:hover,
.page-promo__category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 211, 107, 0.3);
}

.page-promo__feature-icon,
.page-promo__step-icon,
.page-promo__security-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 211, 107, 0.5));
}

.page-promo__category-icon {
    width: 30px; /* Specific size for category icons */
    height: 30px;
    margin-bottom: 15px;
    object-fit: contain;
    filter: drop-shadow(0 0 3px rgba(255, 211, 107, 0.5));
}

.page-promo__feature-title,
.page-promo__promo-card-title,
.page-promo__step-title,
.page-promo__security-title,
.page-promo__category-title {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promo__feature-text,
.page-promo__card-text,
.page-promo__step-text,
.page-promo__security-text,
.page-promo__category-text {
    font-size: 1rem;
    color: var(--color-text-main);
    flex-grow: 1; /* Ensure text fills space */
}

.page-promo__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promo__card-link {
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--btn-gradient);
    color: #ffffff;
    border: none;
    font-size: 1rem;
    border-radius: 6px;
}