/* style/game-reviews-fishing-games.css */
.page-game-reviews-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

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

.page-game-reviews-fishing-games__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #2a3d5e 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
}

.page-game-reviews-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-fishing-games__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f5e6d0;
}

.page-game-reviews-fishing-games__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-reviews-fishing-games__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-game-reviews-fishing-games__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-game-reviews-fishing-games__cta-button--large {
    padding: 20px 40px;
    font-size: 1.5em;
}

.page-game-reviews-fishing-games__content-section {
    padding: 60px 0;
}

.page-game-reviews-fishing-games__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.page-game-reviews-fishing-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f5e6d0;
}

.page-game-reviews-fishing-games__text-block--small {
    font-size: 0.9em;
    color: #b0c4de;
}

.page-game-reviews-fishing-games__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-game-reviews-fishing-games__feature-item {
    background-color: #1a2a47; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-reviews-fishing-games__feature-item:hover {
    transform: translateY(-5px);
}

.page-game-reviews-fishing-games__feature-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
}

.page-game-reviews-fishing-games__feature-description {
    font-size: 1em;
    color: #b0c4de;
}

.page-game-reviews-fishing-games__ordered-list,
.page-game-reviews-fishing-games__unordered-list {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #f5e6d0;
}

.page-game-reviews-fishing-games__ordered-list li,
.page-game-reviews-fishing-games__unordered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-game-reviews-fishing-games__ordered-list ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 10px;
    color: #f5e6d0;
}

.page-game-reviews-fishing-games__inline-cta {
    color: #FFD700; /* Gold for inline links */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-game-reviews-fishing-games__inline-cta:hover {
    color: #e6c200;
}

.page-game-reviews-fishing-games__app-download {
    text-align: center;
    margin: 40px 0;
}

.page-game-reviews-fishing-games__app-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-fishing-games__final-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #1a2a47;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .page-game-reviews-fishing-games__hero-title {
        font-size: 2.5em;
    }
    .page-game-reviews-fishing-games__hero-subtitle {
        font-size: 1.2em;
    }
    .page-game-reviews-fishing-games__section-title {
        font-size: 2em;
    }
    .page-game-reviews-fishing-games__feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-fishing-games__hero-title {
        font-size: 1.8em;
    }
    .page-game-reviews-fishing-games__hero-subtitle {
        font-size: 1em;
    }
    .page-game-reviews-fishing-games__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-game-reviews-fishing-games__cta-button--large {
        font-size: 1.2em;
        padding: 15px 30px;
    }
    .page-game-reviews-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews-fishing-games__text-block,
    .page-game-reviews-fishing-games__feature-description,
    .page-game-reviews-fishing-games__ordered-list li,
    .page-game-reviews-fishing-games__unordered-list li {
        font-size: 0.95em;
    }
}