.page-fishing-games {
    font-family: Arial, sans-serif;
    color: #333333; /* Default text color for light background */
    line-height: 1.6;
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Primary color for titles */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.page-fishing-games__section-title--light {
    color: #FFFFFF;
}

.page-fishing-games__section-subtitle {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 40px;
    color: #555555;
}

.page-fishing-games__section-subtitle--light {
    color: #f0f0f0;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__game-play-btn,
.page-fishing-games__btn-read-more {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    max-width: 100%; /* For responsiveness */
    box-sizing: border-box; /* For responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-fishing-games__btn-primary {
    background: #26A9E0; /* Primary color */
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-fishing-games__btn-primary:hover {
    background: #1e87b7;
    border-color: #1e87b7;
}

.page-fishing-games__btn-secondary {
    background: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-fishing-games__btn-secondary:hover {
    background: #f0f0f0;
    color: #1e87b7;
    border-color: #1e87b7;
}

.page-fishing-games__game-play-btn {
    background: #EA7C07; /* Login color for play button */
    color: #FFFFFF;
    border: 2px solid #EA7C07;
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-fishing-games__game-play-btn:hover {
    background: #c76706;
    border-color: #c76706;
}

.page-fishing-games__btn-read-more {
    background: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-fishing-games__btn-read-more:hover {
    background: #1e87b7;
    border-color: #1e87b7;
}

.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%; /* For responsiveness */
    max-width: 100%; /* For responsiveness */
    box-sizing: border-box; /* For responsiveness */
    overflow: hidden; /* For responsiveness */
}

.page-fishing-games__cta-buttons--center {
    margin-top: 50px;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    background: linear-gradient(to right, #26A9E0, #4CAF50); /* Example gradient, adjust if needed */
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    color: #FFFFFF;
    text-align: center;
}

.page-fishing-games__hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Cover for desktop */
}

.page-fishing-games__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-fishing-games__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Clamp for H1 font size */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-fishing-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Introduction Section */
.page-fishing-games__introduction-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.page-fishing-games__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.page-fishing-games__text-block {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__image-inline {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-top: 20px;
}

/* Games Showcase Section */
.page-fishing-games__games-showcase {
    padding: 60px 0;
    background: #26A9E0; /* Primary color for dark background */
    color: #FFFFFF;
}

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

.page-fishing-games__game-tile {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    aspect-ratio: 1 / 1; /* For square game tiles */
}

.page-fishing-games__game-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    flex-grow: 1;
}

.page-fishing-games__game-title {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-bottom: 15px;
    flex-shrink: 0;
}

/* Benefits Section */
.page-fishing-games__benefits-section {
    padding: 60px 0;
    background: #FFFFFF;
}

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

.page-fishing-games__benefit-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__benefit-icon {
    width: 200px; /* Enforced min 200x200px */
    height: 200px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__benefit-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-fishing-games__benefit-description {
    font-size: 1em;
    color: #555555;
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
    padding: 60px 0;
    background: #f0f8ff; /* Light background */
}

.page-fishing-games__step-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    counter-reset: step-counter;
}

.page-fishing-games__step-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    position: relative;
    padding-left: 30px;
}

.page-fishing-games__step-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background: #26A9E0;
    color: #FFFFFF;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    font-weight: bold;
}

.page-fishing-games__image-block {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__image-guide {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Tips Section */
.page-fishing-games__tips-section {
    padding: 60px 0;
    background: #26A9E0; /* Primary color for dark background */
    color: #FFFFFF;
}

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