/* style/slot-games.css */

/* Base styles for the slot games page */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #1a1a1a; /* Inherits from body, but explicitly set for sections */
}

.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.8em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.page-slot-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
    text-align: center;
}

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

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

.page-slot-games__text-dark {
  color: #333333; /* Dark text for light background sections */
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #8B0000, #4d0000);
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
}

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

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.page-slot-games__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold title */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-slot-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    line-height: 1.5;
}

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

/* Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    box-sizing: border-box;
}

.page-slot-games__btn-primary {
    background-color: #FFD700;
    color: #1a1a1a; /* Dark text for gold button */
    border: 2px solid #FFD700;
}

.page-slot-games__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
    background-color: #8B0000;
    color: #ffffff;
    border: 2px solid #8B0000;
}

.page-slot-games__btn-secondary:hover {
    background-color: #6a0000;
    border-color: #6a0000;
    transform: translateY(-2px);
}

.page-slot-games__btn-dark-text {
  color: #333333;
}

/* Section backgrounds */
.page-slot-games__dark-bg {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.page-slot-games__light-bg {
    background-color: #f8f8f8;
    padding: 60px 0;
    color: #333333;
}

/* Introduction Section */
.page-slot-games__introduction-section .page-slot-games__image-content {
    display: block;
    margin: 40px auto 0;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

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

.page-slot-games__card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 215, 0, 0.1);
}

.page-slot-games__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-slot-games__card-text {
    font-size: 1em;
    color: #e0e0e0;
}

.page-slot-games__card-text a {
    color: #FFD700;
    text-decoration: underline;
}

/* Guide Section */
.page-slot-games__guide-section {
    text-align: center;
}

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

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

.page-slot-games__guide-item:hover {
    transform: translateY(-5px);
}

.page-slot-games__guide-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-slot-games__guide-subtitle {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #333333;
}

/* Featured Games Section */
.page-slot-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}