/* style/slot-games.css */

/* Base styles for the page content */
.page-slot-games {
    font-family: Arial, sans-serif;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for main content, relies on shared.css for body padding */
}

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

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px; /* Space below content */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for aesthetic */
    overflow: hidden;
}

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

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 900px;
    margin-top: -80px; /* Pull content up slightly over the image's bottom part */
    background: rgba(17, 17, 17, 0.8); /* Card BG with transparency for overlay effect on image */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid #3A2A12; /* Border */
}


.page-slot-games__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em);
    color: #FFD36B; /* Glow */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-slot-games__hero-description {
    font-size: 1.2em;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* General Section Styles */
.page-slot-games__section {
    padding: 60px 0;
    background-color: #0A0A0A; /* Background */
}

.page-slot-games__section:nth-of-type(even) {
    background-color: #111111; /* Card BG */
}

.page-slot-games__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(242, 193, 78, 0.3);
}

.page-slot-games__sub-title {
    font-size: 1.8em;
    color: #FFD36B; /* Glow */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slot-games__text-block {
    font-size: 1.1em;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 20px;
    text-align: justify;
}

.page-slot-games__highlight {
    color: #FFD36B; /* Glow */
    font-weight: bold;
}

/* Lists */
.page-slot-games__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-slot-games__list-item {
    background-color: #111111; /* Card BG */
    border-left: 4px solid #F2C14E; /* Primary color */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #FFF6D6; /* Text Main */
    font-size: 1.05em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-slot-games__list-item strong {
    color: #FFD36B; /* Glow */
}

/* Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #111111; /* Dark text for bright button */
    border: none;
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-slot-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
    filter: brightness(1.1);
}

.page-slot-games__btn-secondary {
    background: transparent;
    color: #F2C14E; /* Primary color */
    border: 2px solid #F2C14E; /* Primary color */
    box-shadow: 0 0 10px rgba(242, 193, 78, 0.2);
}

.page-slot-games__btn-secondary:hover {
    transform: translateY(-3px);
    background-color: #F2C14E; /* Primary color */
    color: #111111; /* Dark text */
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-slot-games__cta-container {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.page-slot-games__products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}