/* style/game-reviews-slot-games-deep-dive.css */
.page-game-reviews-slot-games-deep-dive {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light gray for readability on dark background */
    line-height: 1.6;
    background-color: #0d1a26; /* Slightly lighter dark blue for main content background */
}

.page-game-reviews-slot-games-deep-dive .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-game-reviews-slot-games-deep-dive .hero-section {
    background: linear-gradient(135deg, #1A2E44, #0d1a26); /* Dark blue gradient */
    color: #FFD700; /* Gold for hero text */
    padding: 80px 0;
    text-align: center;
    border-bottom: 3px solid #FFD700;
}

.page-game-reviews-slot-games-deep-dive .hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-slot-games-deep-dive .hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-game-reviews-slot-games-deep-dive .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;
    border: none;
    cursor: pointer;
}

.page-game-reviews-slot-games-deep-dive .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #1A2E44; /* Dark blue */
}

.page-game-reviews-slot-games-deep-dive .btn-primary:hover {
    background-color: #e6c200; /* Darker gold */
}

.page-game-reviews-slot-games-deep-dive .btn-secondary {
    background-color: #1A2E44; /* Dark blue */
    color: #FFD700; /* Gold */
    border: 1px solid #FFD700;
}

.page-game-reviews-slot-games-deep-dive .btn-secondary:hover {
    background-color: #0d1a26; /* Darker blue */
    color: #e6c200;
}

.page-game-reviews-slot-games-deep-dive section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-reviews-slot-games-deep-dive section:last-of-type {
    border-bottom: none;
}

.page-game-reviews-slot-games-deep-dive h2 {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-game-reviews-slot-games-deep-dive h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FFD700;
    margin: 15px auto 0;
}

.page-game-reviews-slot-games-deep-dive h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #FFD700;
    padding-left: 15px;
}

.page-game-reviews-slot-games-deep-dive p {
    margin-bottom: 20px;
    color: #c0c0c0;
}

.page-game-reviews-slot-games-deep-dive ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #c0c0c0;
}

.page-game-reviews-slot-games-deep-dive ul li {
    margin-bottom: 10px;
}

.page-game-reviews-slot-games-deep-dive .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-slot-games-deep-dive .intro-section, 
.page-game-reviews-slot-games-deep-dive .feature-review-section, 
.page-game-reviews-slot-games-deep-dive .strategy-section, 
.page-game-reviews-slot-games-deep-dive .promotions-section, 
.page-game-reviews-slot-games-deep-dive .guide-section, 
.page-game-reviews-slot-games-deep-dive .mobile-app-section, 
.page-game-reviews-slot-games-deep-dive .conclusion-section {
    text-align: left;
}

.page-game-reviews-slot-games-deep-dive .game-types-section {
    background-color: #1A2E44;
    padding: 80px 0;
    text-align: center;
}

.page-game-reviews-slot-games-deep-dive .grid-3-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-slot-games-deep-dive .game-type-card {
    background-color: #0d1a26;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-game-reviews-slot-games-deep-dive .game-type-card:hover {
    transform: translateY(-5px);
}

.page-game-reviews-slot-games-deep-dive .game-type-card h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
    border-left: none;
    padding-left: 0;
}

.page-game-reviews-slot-games-deep-dive .game-type-card p {
    color: #b0b0b0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-game-reviews-slot-games-deep-dive .hero-section h1 {
        font-size: 2.2em;
    }

    .page-game-reviews-slot-games-deep-dive h2 {
        font-size: 2em;
    }

    .page-game-reviews-slot-games-deep-dive h3 {
        font-size: 1.5em;
    }

    .page-game-reviews-slot-games-deep-dive .grid-3-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-slot-games-deep-dive .hero-section {
        padding: 60px 0;
    }

    .page-game-reviews-slot-games-deep-dive .hero-section h1 {
        font-size: 1.8em;
    }

    .page-game-reviews-slot-games-deep-dive .hero-section p {
        font-size: 1em;
    }

    .page-game-reviews-slot-games-deep-dive section {
        padding: 40px 0;
    }

    .page-game-reviews-slot-games-deep-dive h2 {
        font-size: 1.8em;
    }

    .page-game-reviews-slot-games-deep-dive h3 {
        font-size: 1.3em;
    }

    .page-game-reviews-slot-games-deep-dive .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}