/* style/slot-games.css */
/* Base styles for the slot games page */
.page-slot-games {
    font-family: Arial, sans-serif;
    background-color: var(--color-bg-main, #08160F); /* Using variable from shared.css or fallback */
    color: var(--color-text-main, #F2FFF6); /* Light text on dark background */
    line-height: 1.6;
}

.page-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-slot-games__section-title {
    font-size: 2.5em;
    color: var(--color-text-main, #F2FFF6);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-slot-games__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Using clamp for responsive H1 font size */
    color: var(--color-text-main, #F2FFF6);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    max-width: 900px; /* Constrain width for better readability */
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__description {
    font-size: 1.1em;
    color: var(--color-text-secondary, #A7D9B8);
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__text-block {
    font-size: 1em;
    color: var(--color-text-main, #F2FFF6);
    margin-bottom: 20px;
}

.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    padding-top: 10px; /* Small top padding as body handles header offset */
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for aesthetic */
    overflow: hidden;
    margin-bottom: 40px; /* Space between image and content */
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-slot-games__hero-content {
    position: relative; /* Ensure content is above any potential background */
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.page-slot-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    box-sizing: border-box; /* Crucial for button responsiveness */
}

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-slot-games__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-slot-games__btn-secondary {
    background: transparent;
    color: var(--color-text-main, #F2FFF6);
    border: 2px solid var(--color-border, #2E7A4E);
}

.page-slot-games__btn-secondary:hover {
    background: var(--color-border, #2E7A4E);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-slot-games__info-section,
.page-slot-games__guide-section,
.page-slot-games__support-section,
.page-slot-games__faq-section {
    padding: 80px 0;
}

.page-slot-games__dark-section {
    background-color: var(--color-card-bg, #11271B); /* Darker green background */
    padding: 80px 0;
}

.page-slot-games__features-grid,
.page-slot-games__steps-grid,
.page-slot-games__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-slot-games__feature-card,
.page-slot-games__step-card,
.page-slot-games__game-card,
.page-slot-games__text-card {
    background-color: var(--color-card-bg, #11271B);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Align content to top */
    color: var(--color-text-main, #F2FFF6);
}

.page-slot-games__card-title {
    font-size: 1.5em;
    color: var(--color-gold, #F2C14E); /* Gold for titles */
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-slot-games__game-title,
.page-slot-games__step-title {
    font-size: 1.3em;
    color: var(--color-text-main, #F2FFF6);
    margin-bottom: 10px;
    font-weight: bold;
}