/* General styles for the slot-games page */
.page-slot-games {
    font-family: Arial, sans-serif;
    color: #FFF6D6; /* Main text color for dark background */
    background-color: #0A0A0A; /* Page background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 50px;
    background-color: #0A0A0A;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for desktop */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover; /* Cover for desktop to fill space */
    border-radius: 10px;
}

.page-slot-games__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-slot-games__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Dynamic font size for H1 */
    font-weight: 700;
    color: #F2C14E; /* Brand primary color */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

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

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

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

.page-slot-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-slot-games__section-intro {
    font-size: 1.05rem;
    color: #FFF6D6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 15px;
}

/* Feature Grid */
.page-slot-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.page-slot-games__feature-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__feature-icon {
    width: 100%;
    height: auto;
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-slot-games__feature-title {
    font-size: 1.4rem;
    color: #FFD36B; /* Auxiliary color */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-slot-games__feature-description {
    font-size: 1rem;
    color: #FFF6D6;
}