/* style/slots-game-features.css */
.page-slots-game-features {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0A244A; /* Main dark blue background */
    line-height: 1.6;
}

.page-slots-game-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-slots-game-features__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-slots-game-features__btn--primary {
    background-color: #FFD700; /* Accent gold */
    color: #0A244A; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

.page-slots-game-features__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-slots-game-features__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
}

.page-slots-game-features__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A244A;
}

/* Hero Section */
.page-slots-game-features__hero {
    background: linear-gradient(135deg, #0A244A 0%, #1A3E73 100%); /* Dark blue gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    color: #FFFFFF;
}

.page-slots-game-features__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,patterns]'); /* Abstract background pattern */
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-slots-game-features__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.page-slots-game-features__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold title */
    line-height: 1.2;
}

.page-slots-game-features__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-slots-game-features__hero-image-wrapper {
    position: absolute;
    right: -10%;
    bottom: -10%;
    width: 400px;
    height: 400px;
    opacity: 0.3;
    z-index: 0;
}

.page-slots-game-features__hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* General Section Styling */
.page-slots-game-features__section {
    padding: 60px 0;
    text-align: center;
}

.page-slots-game-features__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold title */
    margin-bottom: 20px;
}

.page-slots-game-features__section-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #CCCCCC;
}

/* Why Important Section */
.page-slots-game-features__why-important {
    background-color: #1A3E73; /* Slightly lighter blue */
}

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

.page-slots-game-features__feature-item {
    background-color: #0A244A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-slots-game-features__feature-item:hover {
    transform: translateY(-10px);
}

.page-slots-game-features__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-slots-game-features__feature-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-slots-game-features__feature-item p {
    color: #E0E0E0;
}

/* Popular Features Section */
.page-slots-game-features__popular-features {
    background-color: #0A244A;
}

.page-slots-game-features__feature-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.page-slots-game-features__feature-detail-item {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    background-color: #1A3E73;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-slots-game-features__feature-detail-item--reversed {
    flex-direction: row-reverse;
    text-align: right;
}

.page-slots-game-features__feature-detail-image {
    width: 40%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-game-features__feature-detail-item--reversed .page-slots-game-features__feature-detail-image {
    margin-left: 0;
    margin-right: auto; /* Correct for reversed layout */
}

.page-slots-game-features__feature-detail-content {
    flex: 1;
}

.page-slots-game-features__feature-detail-heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-slots-game-features__feature-detail-content p {
    color: #E0E0E0;
    margin-bottom: 20px;
}

/* Benefits Section */
.page-slots-game-features__benefits {
    background-color: #1A3E73;
}

.page-slots-game-features__benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.page-slots-game-features__benefit-list li {
    background-color: #0A244A;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    color: #E0E0E0;
}

.page-slots-game-features__benefit-icon {
    color: #FFD700;
    font-size: 1.5em;
    margin-right: 15px;
    line-height: 1;
}

/* Optimize Experience Section */
.page-slots-game-features__optimize-experience {
    background-color: #0A244A;
}

.page-slots-game-features__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slots-game-features__tip-item {
    background-color: #1A3E73;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-slots-game-features__tip-item:hover {
    transform: translateY(-10px);
}

.page-slots-game-features__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-slots-game-features__tip-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-slots-game-features__tip-item p {
    color: #E0E0E0;
}

/* CTA Bottom Section */
.page-slots-game-features__cta-bottom {
    background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
    padding: 80px 0;
    color: #0A244A; /* Dark blue text on gold background */
    text-align: center;
}

.page-slots-game-features__cta-bottom-content {
    max-width: 900px;
}

.page-slots-game-features__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0A244A;
}

.page-slots-game-features__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #333;
}

.page-slots-game-features__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-slots-game-features__cta-bottom .page-slots-game-features__btn--primary {
    background-color: #0A244A;
    color: #FFD700;
    border-color: #0A244A;
}

.page-slots-game-features__cta-bottom .page-slots-game-features__btn--primary:hover {
    background-color: #2A4E8A;
    border-color: #2A4E8A;
}

.page-slots-game-features__cta-bottom .page-slots-game-features__btn--secondary {
    background-color: transparent;
    color: #0A244A;
    border-color: #0A244A;
}

.page-slots-game-features__cta-bottom .page-slots-game-features__btn--secondary:hover {
    background-color: #0A244A;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-game-features__hero-title {
        font-size: 2.5em;
    }
    .page-slots-game-features__section-title {
        font-size: 2em;
    }
    .page-slots-game-features__feature-detail-item {
        flex-direction: column;
        text-align: center;
    }
    .page-slots-game-features__feature-detail-item--reversed {
        flex-direction: column;
        text-align: center;
    }
    .page-slots-game-features__feature-detail-image {
        width: 80%;
        margin-bottom: 20px;
    }
    .page-slots-game-features__feature-detail-item--reversed .page-slots-game-features__feature-detail-image {
        margin-left: auto;
        margin-right: auto;
    }
    .page-slots-game-features__benefit-list {
        grid-template-columns: 1fr;
    }
    .page-slots-game-features__hero-image-wrapper {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-slots-game-features__hero {
        padding: 60px 0;
    }
    .page-slots-game-features__hero-title {
        font-size: 2em;
    }
    .page-slots-game-features__hero-subtitle {
        font-size: 1em;
    }
    .page-slots-game-features__section {
        padding: 40px 0;
    }
    .page-slots-game-features__section-title {
        font-size: 1.8em;
    }
    .page-slots-game-features__feature-grid, .page-slots-game-features__tips-grid {
        grid-template-columns: 1fr;
    }
    .page-slots-game-features__cta-title {
        font-size: 2em;
    }
    .page-slots-game-features__cta-buttons {
        flex-direction: column;
    }
}