/* style/slot-games.css */

/* Global styles for page-slot-games scope */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--background-color, #FFFFFF); /* Inherit from shared, default to white */
}

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

.page-slot-games__section-title {
    font-size: 36px;
    color: #26A9E0; /* Primary brand color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-slot-games__text-block {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__image-content {
    text-align: center;
    margin: 30px 0;
}

.page-slot-games__image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games__cta-center {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Button Styles */
.page-slot-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games__btn-primary {
    background: #26A9E0; /* Primary brand color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-slot-games__btn-primary:hover {
    background: #1e87b7; /* Darker shade for hover */
    border-color: #1e87b7;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__btn-secondary {
    background: #ffffff;
    color: #26A9E0; /* Primary brand color */
    border: 2px solid #26A9E0;
}

.page-slot-games__btn-secondary:hover {
    background: #f0f8ff; /* Light background for hover */
    color: #1e87b7;
    border-color: #1e87b7;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* HERO Section */
.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, #e0f2f7, #ffffff); /* Light gradient background */
    overflow: hidden; /* Prevent image overflow */
}

.page-slot-games__hero-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-slot-games__hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.page-slot-games__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9); /* Slightly transparent white background for text readability */
    border-radius: 12px;
    margin-top: -80px; /* Overlap with image for better design */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-slot-games__hero-title {
    font-size: 48px;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.page-slot-games__hero-description {
    font-size: 20px;
    color: #555555;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Backgrounds for contrast */
.page-slot-games__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

.page-slot-games__dark-bg {
    background-color: #26A9E0; /* Primary color as background */
    color: #ffffff; /* White text for contrast */
}

.page-slot-games__dark-bg .page-slot-games__section-title,
.page-slot-games__dark-bg .page-slot-games__card-title a,
.page-slot-games__dark-bg .page-slot-games__benefit-title,
.page-slot-games__dark-bg .page-slot-games__info-title,
.page-slot-games__dark-bg .page-slot-games__step-title {
    color: #ffffff; /* Ensure white text for titles on dark background */
}

/* Intro Section */
.page-slot-games__intro-section {
    padding: 80px 0;
}

/* Game Types Section */
.page-slot-games__game-types-section {
    padding: 80px 0;
}

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

.page-slot-games__game-card,
.page-slot-games__promo-card,
.page-slot-games__news-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-slot-games__game-card:hover,
.page-slot-games__promo-card:hover,
.page-slot-games__news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-slot-games__game-card img,
.page-slot-games__promo-card img,
.page-slot-games__news-card img {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-slot-games__card-title {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 20px 10px;
    color: #26A9E0; /* Primary brand color */
}

.page-slot-games__card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.page-slot-games__card-title a:hover {
    color: #1e87b7; /* Darker shade for hover */
}

.page-slot-games__card-description {
    font-size: 15px;
    color: #555555;
    padding: 0 20px 20px;
    flex-grow: 1; /* Allow description to take available space */
}


/* App Benefits Section */
.page-slot-games__app-benefits-section {
    padding: 80px 0;
}

.page-slot-games__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__benefit-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games__benefit-item img {
    
    
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 50%; /* Make them circular if needed, or keep square */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-slot-games__benefit-title {
    font-size: 22px;
    font-weight: bold;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-slot-games__benefit-description {
    font-size: 15px;
    color: #555555;
}

/* Download Guide Section */
.page-slot-games__download-guide-section {
    padding: 80px 0;
}

.page-slot-games__step-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-slot-games__step-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-slot-games__step-title {
    font-size: 24px;
    font-weight: bold;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-slot-games__step-description {
    font-size: 16px;
    color: #555555;
    max-width: 800px;
}

/* Promotions Section */
.page-slot-games__promotions-section {
    padding: 80px 0;
}

/* Security & Support Section */
.page-slot-games__security-support-section {
    padding: 80px 0;
}

.page-slot-games__info-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-slot-games__info-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-slot-games__info-title {
    font-size: 22px;
    font-weight: bold;
    color: #26A9E0;
    margin-bottom: 10px;
}