/* style/promo.css */
/* Base styles for the promo page content */
.page-promo {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

.page-promo__section-title {
    font-size: 2.5rem;
    color: #F2C14E; /* Main color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promo__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #FFF6D6; /* Text Main */
}

/* Button styles */
.page-promo__btn-primary,
.page-promo__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-promo__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #ffffff; /* White text for contrast */
    border: none;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-promo__btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-promo__btn-secondary {
    background: transparent;
    color: #FFF6D6; /* Text Main */
    border: 2px solid #F2C14E; /* Main color for border */
}

.page-promo__btn-secondary:hover {
    background: #F2C14E;
    color: #0A0A0A; /* Dark text on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

/* Links within text */
.page-promo a {
    color: #FFD36B; /* Glow color for links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promo a:hover {
    color: #F2C14E; /* Main color on hover */
}

/* Hero Section */
.page-promo__hero-section {
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    padding-bottom: 80px;
    background: linear-gradient(135deg, #0A0A0A 0%, #111111 100%); /* Dark gradient background for hero */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-promo__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(242, 193, 78, 0.1) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 0;
}

.page-promo__hero-section .page-promo__container {
    display: flex;
    flex-direction: column; /* Default to column for content-image */
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.page-promo__hero-content {
    text-align: center;
    flex: 1;
    order: 2; /* Content below image by default */
}

.page-promo__hero-image-wrapper {
    flex: 1;
    order: 1; /* Image above content by default */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.page-promo__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

.page-promo__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Use clamp for H1 font size */
    color: #F2C14E;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.page-promo__hero-description {
    font-size: 1.3rem;
    color: #FFF6D6;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promo__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General Section Styling */
.page-promo__why-section,
.page-promo__types-section,
.page-promo__claim-section,
.page-promo__terms-section,
.page-promo__games-section,
.page-promo__faq-section,
.page-promo__cta-final-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.page-promo__why-section .page-promo__container,
.page-promo__terms-section .page-promo__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.page-promo__why-content,
.page-promo__terms-content {
    flex: 1;
    text-align: center;
}

.page-promo__why-image-wrapper,
.page-promo__terms-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.page-promo__why-image,
.page-promo__terms-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: block;
}

.page-promo__why-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promo__why-list-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.page-promo__why-list-item::before {
    content: '✅';
    font-size: 1.2rem;
    line-height: 1;
}

.page-promo__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promo__terms-list-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.page-promo__terms-list-item strong {
    color: #F2C14E; /* Main color for strong text */
}

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

.page-promo__card {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-promo__card-title {
    font-size: 1.8rem;
    color: #F2C14E;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promo__card-text {
    font-size: 1rem;
    color: #FFF6D6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promo__card-btn {
    margin-top: auto; /* Push button to bottom */
}

/* Claim Steps Section */
.page-promo__claim-section .page-promo__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

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

.page-promo__step-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promo__step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #F2C14E;
    background-color: #3A2A12; /* Border color for background */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border: 2px solid #F2C14E;
}

.page-promo__step-title {
    font-size: 1.5rem;
    color: #F2C14E;
    margin-bottom: 15px;
}

.page-promo__step-text {
    font-size: 1rem;
    color: #FFF6D6;
}

.page-promo__claim-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.page-promo__claim-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

/* Game Categories Section */
.page-promo__games-section {
    background-color: #111111; /* Card BG */
    padding: 60px 0;
    border-top: 1px solid #3A2A12;
    border-bottom: 1px solid #3A2A12;
}

.page-promo__game-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-promo__game-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #FFF6D6;
    background-color: #0A0A0A; /* Background */
    border: 1px solid #3A2A12;
    border-radius: 8px;
    padding: 15px 25px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.page-promo__game-category-item:hover {
    background-color: #3A2A12; /* Border color on hover */
    color: #F2C14E;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(242, 193, 78, 0.2);
}

.page-promo__game-category-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    object-fit: contain;
    /* No filter allowed here */
}

.page-promo__game-category-name {
    font-size: 0.95rem;
    font-weight: bold;
    white-space: nowrap;
}

.page-promo__games-cta {
    text-align: center;
    margin-top: 30px;
}

/* FAQ Section */
.page-promo__faq-section .page-promo__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.page-promo__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    width: 100%;
}

.page-promo__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promo__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #111111; /* Card BG */
    color: #F2C14E; /* Main color for question text */
    font-weight: bold;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
    background-color: #3A2A12; /* Border color on hover */
}

.page-promo__faq-question-text {
    margin: 0;
    flex-grow: 1;
}

.page-promo__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    width: 30px;
    text-align: center;
    color: #FFD36B; /* Glow color for toggle */
    transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-toggle {
    transform: rotate(45deg); /* Plus to X / minus */
}