/* style/slot-games.css */
.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
}

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

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    padding: var(--header-offset, 120px) 0 60px; /* Adjusted padding-top for header offset */
    background: linear-gradient(135deg, #003366, #001a33);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-slot-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-slot-games__hero-section .page-slot-games__container {
    position: relative;
    z-index: 2;
}

.page-slot-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Auxiliary color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.page-slot-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
}

.page-slot-games__btn-primary {
    background: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-slot-games__btn-primary:hover {
    background: #e6b800;
    transform: translateY(-3px);
}

.page-slot-games__btn-secondary {
    background: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-slot-games__btn-secondary:hover {
    background: #FFCC00;
    color: #003366;
    transform: translateY(-3px);
}

.page-slot-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

/* General Section Styling */
.page-slot-games__section {
    padding: 80px 0;
}

.page-slot-games__dark-bg {
    background: #003366;
    color: #ffffff;
}

.page-slot-games__light-bg {
    background: #ffffff;
    color: #333333;
}

.page-slot-games__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #003366;
}

.page-slot-games__section-title--light {
    color: #FFCC00;
}

.page-slot-games__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.page-slot-games__section-description--light {
    color: #f0f0f0;
}

/* Content Grid */
.page-slot-games__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-slot-games__content-grid--reverse {
    direction: rtl;
}

.page-slot-games__content-grid--reverse > * {
    direction: ltr;
}

.page-slot-games__text-block {
    line-height: 1.8;
}

.page-slot-games__text-block p {
    margin-bottom: 15px;
}

.page-slot-games__text-block--light p {
    color: #f0f0f0;
}

.page-slot-games__text-block a {
    color: #FFCC00;
    text-decoration: underline;
}

.page-slot-games__text-block a:hover {
    color: #e6b800;
}

.page-slot-games__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Game Cards Grid */
.page-slot-games__game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-slot-games__game-card {
    background: #ffffff;
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-slot-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-slot-games__card-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-slot-games__card-description {
    font-size: 0.95em;
    color: #555555;
    padding: 0 15px;
    margin-bottom: 20px;
}

/* Features Grid */
.page-slot-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}