:root {
    --king88-primary: #11A84E; /* 主色调 */
    --king88-secondary: #22C768; /* 辅助色 */
    --king88-button-gradient-start: #2AD16F; /* 按钮渐变开始 */
    --king88-button-gradient-end: #13994A; /* 按钮渐变结束 */
    --king88-card-bg: #11271B; /* Card BG */
    --king88-background: #08160F; /* 背景 */
    --king88-text-main: #F2FFF6; /* Text Main */
    --king88-text-secondary: #A7D9B8; /* Text Secondary */
    --king88-border: #2E7A4E; /* 边框 */
    --king88-glow: #57E38D; /* Glow */
    --king88-gold: #F2C14E; /* Gold */
    --king88-divider: #1E3A2A; /* Divider */
    --king88-deep-green: #0A4B2C; /* Deep Green */
}

.page-promotions-first-deposit-bonus {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--king88-text-main); /* Default text color for the main page content */
    background-color: var(--king88-background); /* Explicitly set page background */
}

.page-promotions-first-deposit-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-promotions-first-deposit-bonus__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, text below */
    align-items: center;
    padding: 60px 0;
    padding-top: 10px; /* Small top padding as per requirement */
    background-color: var(--king88-background); /* Ensure consistency */
    overflow: hidden; /* Prevent content overflow */
}

.page-promotions-first-deposit-bonus__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 40px; /* Space between image and text */
}

.page-promotions-first-deposit-bonus__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-promotions-first-deposit-bonus__hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    box-sizing: border-box;
    color: var(--king88-text-main);
}

.page-promotions-first-deposit-bonus__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--king88-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-promotions-first-deposit-bonus__description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--king88-text-secondary);
}

.page-promotions-first-deposit-bonus__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.page-promotions-first-deposit-bonus__btn-primary,
.page-promotions-first-deposit-bonus__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions-first-deposit-bonus__btn-primary {
    background: linear-gradient(180deg, var(--king88-button-gradient-start) 0%, var(--king88-button-gradient-end) 100%);
    color: var(--king88-text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-promotions-first-deposit-bonus__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-promotions-first-deposit-bonus__btn-secondary {
    background: transparent;
    color: var(--king88-secondary);
    border: 2px solid var(--king88-secondary);
}

.page-promotions-first-deposit-bonus__btn-secondary:hover {
    background: var(--king88-secondary);
    color: var(--king88-text-main);
}

/* Section Titles */
.page-promotions-first-deposit-bonus__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--king88-gold);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

/* Intro Section */
.page-promotions-first-deposit-bonus__intro-section {
    padding: 80px 0;
    background-color: var(--king88-background);
    color: var(--king88-text-main);
}

.page-promotions-first-deposit-bonus__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--king88-text-secondary);
    text-align: justify;
}

.page-promotions-first-deposit-bonus__highlight {
    color: var(--king88-gold);
    font-weight: 700;
}

.page-promotions-first-deposit-bonus__text-block a {
    color: var(--king88-secondary);
    text-decoration: underline;
}
.page-promotions-first-deposit-bonus__text-block a:hover {
    color: var(--king88-primary);
}


/* Details Section */
.page-promotions-first-deposit-bonus__details-section {
    padding: 80px 0;
    background-color: var(--king88-deep-green);
    color: var(--king88-text-main);
}

.page-promotions-first-deposit-bonus__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-first-deposit-bonus__card {
    background-color: var(--king88-card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--king88-text-main);
    border: 1px solid var(--king88-border);
}

.page-promotions-first-deposit-bonus__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit-bonus__card-image {
    width: 100%;
    height: 200px; /* Adjusted to meet min 200px height requirement */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-promotions-first-deposit-bonus__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--king88-gold);
    margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__card-text {
    font-size: 1rem;
    color: var(--king88-text-secondary);
}

/* How To Claim Section */
.page-promotions-first-deposit-bonus__how-to-claim {
    padding: 80px 0;
    background-color: var(--king88-background);
    color: var(--king88-text-main);
}

.page-promotions-first-deposit-bonus__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-first-deposit-bonus__step-item {
    background-color: var(--king88-card-bg);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--king88-border);
}

.page-promotions-first-deposit-bonus__step-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--king88-primary);
    margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__step-text {
    font-size: 1.05rem;
    color: var(--king88-text-secondary);
}

.page-promotions-first-deposit-bonus__step-text a {
    color: var(--king88-secondary);
    text-decoration: underline;
}
.page-promotions-first-deposit-bonus__step-text a:hover {
    color: var(--king88-primary);
}


/* Games Section */
.page-promotions-first-deposit-bonus__games-section {
    padding: 80px 0;
    background-color: var(--king88-deep-green);
    color: var(--king88-text-main);
}

.page-promotions-first-deposit-bonus__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}