/* style/fishing-games.css */

/* Base styles for the page */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #f8f8f8; /* Light background for the overall page */
}

/* Fixed header offset */
.page-fishing-games__hero-section {
    padding-top: var(--header-offset, 120px);
}

/* General container for content */
.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section titles and descriptions */
.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #0A1931;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.page-fishing-games__btn-primary {
    background-color: #E0B400;
    color: #0A1931;
    border: 2px solid #E0B400;
}

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

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #E0B400;
    border: 2px solid #E0B400;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #E0B400;
    color: #0A1931;
}

.page-fishing-games__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-fishing-games__hero-cta-buttons,
.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    overflow: hidden;
    background-color: #0A1931;
    color: #ffffff;
    padding-bottom: 60px;
}

.page-fishing-games__hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-fishing-games__hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-fishing-games__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: #E0B400;
    line-height: 1.2;
}

.page-fishing-games__hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* About Section (Dark Background) */
.page-fishing-games__about-section {
    padding: 80px 0;
    background-color: #0A1931;
    color: #ffffff;
}

.page-fishing-games__about-section .page-fishing-games__section-title,
.page-fishing-games__about-section .page-fishing-games__section-description {
    color: #ffffff;
}

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

.page-fishing-games__feature-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-fishing-games__feature-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: rgba(224, 180, 0, 0.1);
}

.page-fishing-games__feature-title {
    font-size: 1.8em;
    color: #E0B400;
    margin-bottom: 15px;
}

.page-fishing-games__feature-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* Games Showcase Section */
.page-fishing-games__games-showcase {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

.page-fishing-games__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-10px);
}

.page-fishing-games__game-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-fishing-games__game-card-title {
    font-size: 1.6em;
    color: #0A1931;
    margin: 20px 15px 10px 15px;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-fishing-games__game-card-title a {
    color: #0A1931;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__game-card-title a:hover {
    color: #E0B400;
}

.page-fishing-games__game-card-text {
    font-size: 0.95em;
    color: #666666;
    padding: 0 15px 20px 15px;
    min-height: 4em;
}

/* How to Play Section */
.page-fishing-games__how-to-play {
    padding: 80px 0;
    background-color: #f0f0f0;
}

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

.page-fishing-games__step-item {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-fishing-games__step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #E0B400;
    color: #0A1931;
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.page-fishing-games__step-title {
    font-size: 1.8em;
    color: #0A1931;
    margin-bottom: 15px;
}

.page-fishing-games__step-text {
    font-size: 1em;
    color: #666666;
}

/* Promotions Section (Dark Background) */
.page-fishing-games__promotions {
    padding: 80px 0;
    background-color: #0A1931;
    color: #ffffff;
}

.page-fishing-games__promotions .page-fishing-games__section-title,
.page-fishing-games__promotions .page-fishing-games__section-description {
    color: #ffffff;
}

.page-fishing-games__promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-fishing-games__promo-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-10px);
}

.page-fishing-games__promo-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-fishing-games__promo-card-title {
    font-size: 1.6em;
    color: #E0B400;
    margin: 20px 15px 10px 15px;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-fishing-games__promo-card-title a {
    color: #E0B400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__promo-card-title a:hover {
    color: #ffffff;
}

.page-fishing-games__promo-card-text {
    font-size: 0.95em;
    color: #f0f0f0;
    padding: 0 15px 20px 15px;
    min-height: 4em;
}

/* Tips Section */
.page-fishing-games__tips {
    padding: 80px 0;
    background-color: #f0f0f0;
}