/* style/slot-games-jackpot-slots.css */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-light: #FFFFFF;
    --bg-dark: #26A9E0;
    --btn-login: #EA7C07;
}

.page-slot-games-jackpot-slots {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: var(--bg-light);
}

.page-slot-games-jackpot-slots__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-slot-games-jackpot-slots__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    padding-bottom: 60px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
}

.page-slot-games-jackpot-slots__hero-image {
    width: 100%;
    height: auto;
    max-height: 700px; /* Limit height for aesthetic */
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.3;
}

.page-slot-games-jackpot-slots__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-slot-games-jackpot-slots__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games-jackpot-slots__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games-jackpot-slots__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--btn-login); /* Using specific login color for CTA */
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-slot-games-jackpot-slots__cta-button:hover {
    background: #e06c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-slot-games-jackpot-slots__introduction-section,
.page-slot-games-jackpot-slots__top-games-section,
.page-slot-games-jackpot-slots__how-to-play-section,
.page-slot-games-jackpot-slots__benefits-section,
.page-slot-games-jackpot-slots__tips-section,
.page-slot-games-jackpot-slots__faq-section,
.page-slot-games-jackpot-slots__call-to-action {
    padding: 80px 0;
    text-align: center;
}

.page-slot-games-jackpot-slots__light-bg {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-slot-games-jackpot-slots__dark-bg {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-slot-games-jackpot-slots__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-slot-games-jackpot-slots__dark-bg .page-slot-games-jackpot-slots__section-title {
    color: var(--text-light);
}

.page-slot-games-jackpot-slots__section-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Feature Grid */
.page-slot-games-jackpot-slots__features-grid,
.page-slot-games-jackpot-slots__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games-jackpot-slots__feature-item,
.page-slot-games-jackpot-slots__step-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
}

.page-slot-games-jackpot-slots__dark-bg .page-slot-games-jackpot-slots__feature-item,
.page-slot-games-jackpot-slots__dark-bg .page-slot-games-jackpot-slots__step-item {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-slots__feature-item:hover,
.page-slot-games-jackpot-slots__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games-jackpot-slots__feature-item img,
.page-slot-games-jackpot-slots__step-item img {
    max-width: 100%;
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}