/* style/slot-games.css */

/* General styles for the slot games page */
.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main-color); /* Default text color, will be #F2FFF6 for dark background */
    background-color: var(--bg-color); /* #08160F */
}

.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(--text-main-color); /* #F2FFF6 */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-slot-games__text-block {
    font-size: 1.1em;
    color: var(--text-secondary-color); /* #A7D9B8 */
    margin-bottom: 20px;
    text-align: center;
}

.page-slot-games__keyword {
    color: var(--gold-color); /* #F2C14E */
    font-weight: bold;
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 80px 0; /* Small top padding, body handles header offset */
    overflow: hidden;
    background-color: var(--bg-color); /* Fallback */
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Fixed height for image wrapper */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px; /* Ensure image is not too small */
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px; /* Adjust to bring content closer to image base */
    background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, var(--bg-color) 100%);
    border-radius: 15px;
}

.page-slot-games__main-title {
    font-size: clamp(2.2em, 4vw, 3.2em); /* Responsive font size, not fixed large */
    color: var(--text-main-color); /* #F2FFF6 */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.page-slot-games__hero-description {
    font-size: 1.2em;
    color: var(--text-secondary-color); /* #A7D9B8 */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-link,
.page-slot-games__link-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons are responsive */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: var(--text-main-color); /* #F2FFF6 */
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-slot-games__btn-secondary {
    background: transparent;
    color: var(--gold-color); /* #F2C14E */
    border: 2px solid var(--gold-color); /* #F2C14E */
}

.page-slot-games__btn-secondary:hover {
    background: var(--gold-color); /* #F2C14E */
    color: var(--bg-color); /* #08160F */
}

.page-slot-games__btn-link {
    background: transparent;
    color: var(--gold-color); /* #F2C14E */
    border: 1px solid var(--gold-color); /* #F2C14E */
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-slot-games__btn-link:hover {
    background: var(--gold-color); /* #F2C14E */
    color: var(--bg-color); /* #08160F */
}

.page-slot-games__link-inline {
    color: var(--gold-color); /* #F2C14E */
    text-decoration: underline;
    font-weight: bold;
}