/* style/index-b29-game-features.css */

/* Base styles for the page content wrapper */
.page-index-b29-game-features {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Primary dark background */
    line-height: 1.6;
    padding-bottom: 50px;
}

.page-index-b29-game-features__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-index-b29-game-features__section-title,
.page-index-b29-game-features__hero-title,
.page-index-b29-game-features__cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Accent color for titles */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-b29-game-features__section-description,
.page-index-b29-game-features__hero-description,
.page-index-b29-game-features__cta-description {
    font-size: 1.1em;
    color: #c0c0c0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-index-b29-game-features__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0A192F 0%, #1a2a40 100%); /* Gradient for depth */
    color: #f5e6d0;
    position: relative;
    overflow: hidden;
}

.page-index-b29-game-features__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-index-b29-game-features__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
    pointer-events: none;
}

.page-index-b29-game-features__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scaleX(-1); /* Mirror image for better composition */
}

/* Buttons */
.page-index-b29-game-features__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-index-b29-game-features__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-index-b29-game-features__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.page-index-b29-game-features__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-b29-game-features__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

/* Game Diversity Grid */
.page-index-b29-game-features__game-diversity {
    background-color: #1a2a40; /* Slightly lighter dark blue */
}

.page-index-b29-game-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-b29-game-features__grid-item {
    background-color: #0A192F;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-b29-game-features__grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-index-b29-game-features__grid-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: brightness(0.8);
}

.page-index-b29-game-features__grid-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-b29-game-features__grid-text {
    font-size: 0.95em;
    color: #c0c0c0;
}

/* Unique Features Section */
.page-index-b29-game-features__unique-features {
    background-color: #0A192F;
}

.page-index-b29-game-features__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-index-b29-game-features__feature-item {
    background-color: #1a2a40;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-b29-game-features__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px #FFD700);
}

.page-index-b29-game-features__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-b29-game-features__feature-text {
    font-size: 0.9em;
    color: #c0c0c0;
    margin-bottom: 20px;
}

/* Why Choose Section */
.page-index-b29-game-features__why-choose {
    background-color: #1a2a40;
}

.page-index-b29-game-features__why-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 50px auto;
}

.page-index-b29-game-features__why-list li {
    background-color: #0A192F;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
    font-size: 1em;
    color: #f5e6d0;
}

.page-index-b29-game-features__why-highlight {
    color: #FFD700;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

/* Game Guides Section */
.page-index-b29-game-features__game-guides {
    background-color: #0A192F;
}

.page-index-b29-game-features__guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-b29-game-features__guide-item {
    background-color: #1a2a40;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-b29-game-features__guide-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-index-b29-game-features__guide-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: brightness(0.8);
}

.page-index-b29-game-features__guide-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-b29-game-features__guide-text {
    font-size: 0.95em;
    color: #c0c0c0;
}

/* Call to Action Section */
.page-index-b29-game-features__cta-section {
    background: linear-gradient(45deg, #0A192F, #304050);
    padding: 80px 20px;
    text-align: center;
    color: #f5e6d0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-index-b29-game-features__cta-content {
    max-width: 900px;
    z-index: 1;
}

.page-index-b29-game-features__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-b29-game-features__hero {
        padding: 80px 15px;
    }

    .page-index-b29-game-features__hero-title,
    .page-index-b29-game-features__section-title,
    .page-index-b29-game-features__cta-title {
        font-size: 2em;
    }

    .page-index-b29-game-features__hero-description,
    .page-index-b29-game-features__section-description,
    .page-index-b29-game-features__cta-description {
        font-size: 1em;
    }

    .page-index-b29-game-features__grid,
    .page-index-b29-game-features__feature-list,
    .page-index-b29-game-features__guide-grid {
        grid-template-columns: 1fr;
    }

    .page-index-b29-game-features__hero-image-wrapper {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        left: 0;
        opacity: 0.08;
    }
}

@media (max-width: 480px) {
    .page-index-b29-game-features__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-b29-game-features__hero-title,
    .page-index-b29-game-features__section-title,
    .page-index-b29-game-features__cta-title {
        font-size: 1.8em;
    }

    .page-index-b29-game-features__grid-title,
    .page-index-b29-game-features__feature-title,
    .page-index-b29-game-features__guide-title {
        font-size: 1.4em;
    }
}