/* style/promo-new-player-bonus.css */

/* Base styles for the page content, ensuring header offset */
.page-promo-new-player-bonus {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark text for default light body background */
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for the page sections */
}

.page-promo-new-player-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-promo-new-player-bonus__hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px; /* Adjusted padding, header offset is on main */
    background-color: #007bff; /* Primary brand color */
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-promo-new-player-bonus__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-promo-new-player-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promo-new-player-bonus__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e9ecef;
}

.page-promo-new-player-bonus__hero-cta-button {
    display: inline-block;
    background-color: #ffc107; /* Accent color */
    color: #000000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Ensure buttons are large enough */
    min-height: 50px;
    line-height: 20px; /* Adjust line-height for vertical centering */
}

.page-promo-new-player-bonus__hero-cta-button:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-promo-new-player-bonus__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-promo-new-player-bonus__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Overlay to ensure text readability */
    display: block;
}

/* Introduction Section */
.page-promo-new-player-bonus__introduction-section {
    padding: 80px 0;
    text-align: center;
    background-color: #ffffff;
}

.page-promo-new-player-bonus__introduction-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #007bff;
    font-weight: bold;
}

.page-promo-new-player-bonus__introduction-text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555555;
}

.page-promo-new-player-bonus__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promo-new-player-bonus__feature-card {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promo-new-player-bonus__feature-card:hover {
    transform: translateY(-5px);
}

.page-promo-new-player-bonus__feature-card img {
    width: 100%; /* Ensure images take full width of card */
    max-width: 400px; /* Max width for feature images, min 200px already ensured by HTML width/height */
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block; /* Ensure no extra space below img */
    margin-left: auto;
    margin-right: auto;
    min-width: 200px; /* Enforce min width */
    min-height: 200px; /* Enforce min height */
}

.page-promo-new-player-bonus__feature-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promo-new-player-bonus__feature-description {
    font-size: 1em;
    color: #666666;
}

/* How to Claim Section */
.page-promo-new-player-bonus__how-to-claim-section {
    padding: 80px 0;
    background-color: #e9f5ff;
    text-align: center;
}

.page-promo-new-player-bonus__how-to-claim-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #007bff;
    font-weight: bold;
}

.page-promo-new-player-bonus__how-to-claim-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555555;
}

.page-promo-new-player-bonus__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promo-new-player-bonus__step-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-promo-new-player-bonus__step-card:hover {
    transform: translateY(-5px);
}