/* style/games-fishing-games.css */
.page-games-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    line-height: 1.6;
    background-color: #0A1B3C; /* Darker blue background */
}

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

.page-games-fishing-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.page-games-fishing-games__btn--primary {
    background-color: #FFD700; /* Victory Gold */
    color: #1A2B4C; /* Tech Blue */
}

.page-games-fishing-games__btn--primary:hover {
    background-color: #E0B500;
    transform: translateY(-2px);
}

.page-games-fishing-games__btn--cta {
    background-color: #FFD700;
    color: #1A2B4C;
    font-size: 18px;
    padding: 15px 30px;
}

.page-games-fishing-games__btn--cta:hover {
    background-color: #E0B500;
    transform: translateY(-2px);
}

/* Hero Section */
.page-games-fishing-games__hero-section {
    position: relative;
    height: 600px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #1A2B4C; /* Fallback */
}

.page-games-fishing-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.7;
}

.page-games-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    background: rgba(10, 27, 60, 0.6); /* Dark blue overlay */
    border-radius: 10px;
}

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

.page-games-fishing-games__hero-description {
    font-size: 1.2em;
    color: #F0F0F0;
    margin-bottom: 30px;
}

/* General Section Styling */
.page-games-fishing-games__section {
    padding: 80px 0;
    background-color: #1A2B4C;
    color: #E0E0E0;
}

.page-games-fishing-games__section:nth-child(even) {
    background-color: #0A1B3C;
}

.page-games-fishing-games__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-games-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-games-fishing-games__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #F0F0F0;
}

.page-games-fishing-games__section-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Feature Grid */
.page-games-fishing-games__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

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

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

/* Why Choose Section */
.page-games-fishing-games__reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-games-fishing-games__reason-item {
    background-color: #1A2B4C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    border-left: 5px solid #FFD700;
}

.page-games-fishing-games__reason-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-fishing-games__reason-text {
    font-size: 0.95em;
    color: #E0E0E0;
}

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

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

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

.page-games-fishing-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-games-fishing-games__game-name {
    font-size: 1.8em;
    color: #FFD700;
    margin: 20px 0 10px;
}

.page-games-fishing-games__game-description {
    padding: 0 20px 20px;
    color: #F0F0F0;
    font-size: 0.95em;
}

/* How To Play */
.page-games-fishing-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-games-fishing-games__step-item {
    background-color: #1A2B4C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.page-games-fishing-games__step-number {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #1A2B4C;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    border: 3px solid #1A2B4C;
}

.page-games-fishing-games__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-fishing-games__step-text {
    font-size: 0.95em;
    color: #E0E0E0;
}

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

.page-games-fishing-games__strategy-item {
    background-color: #0A1B3C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    border-right: 5px solid #FFD700;
}

.page-games-fishing-games__strategy-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-fishing-games__strategy-text {
    font-size: 0.95em;
    color: #E0E0E0;
}

/* Zowin 88 Advantage */
.page-games-fishing-games__zowin88-advantage .page-games-fishing-games__advantage-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.page-games-fishing-games__zowin88-advantage .page-games-fishing-games__advantage-text-block {
    flex: 1;
    min-width: 300px;
}

.page-games-fishing-games__advantage-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-games-fishing-games__advantage-description {
    font-size: 1.1em;
    color: #F0F0F0;
    margin-bottom: 30px;
}

.page-games-fishing-games__advantage-image {
    flex: 1;
    min-width: 400px;
    max-width: 550px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Responsible Gaming */
.page-games-fishing-games__responsible-gaming .page-games-fishing-games__responsible-content {
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.page-games-fishing-games__responsible-gaming .page-games-fishing-games__responsible-text-block {
    flex: 1;
    min-width: 300px;
}

.page-games-fishing-games__responsible-image {
    flex: 1;
    min-width: 400px;
    max-width: 550px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-games-fishing-games__responsible-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-games-fishing-games__responsible-description {
    font-size: 1.1em;
    color: #F0F0F0;
    margin-bottom: 30px;
}

/* CTA Section */
.page-games-fishing-games__cta-section {
    background-color: #1A2B4C;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-fishing-games__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
}

.page-games-fishing-games__cta-section .page-games-fishing-games__container {
    position: relative;
    z-index: 2;
}

.page-games-fishing-games__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-games-fishing-games__cta-description {
    font-size: 1.3em;
    color: #F0F0F0;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-games-fishing-games__hero-title {
        font-size: 3em;
    }

    .page-games-fishing-games__section-title {
        font-size: 2.4em;
    }

    .page-games-fishing-games__advantage-image, 
    .page-games-fishing-games__responsible-image {
        max-width: 100%;
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .page-games-fishing-games__hero-section {
        height: 500px;
    }

    .page-games-fishing-games__hero-title {
        font-size: 2.5em;
    }

    .page-games-fishing-games__hero-description {
        font-size: 1.1em;
    }

    .page-games-fishing-games__section {
        padding: 60px 0;
    }

    .page-games-fishing-games__section-title {
        font-size: 2em;
    }

    .page-games-fishing-games__feature-item,
    .page-games-fishing-games__reason-item,
    .page-games-fishing-games__game-card,
    .page-games-fishing-games__step-item,
    .page-games-fishing-games__strategy-item {
        padding: 25px;
    }

    .page-games-fishing-games__feature-title,
    .page-games-fishing-games__reason-title,
    .page-games-fishing-games__game-name,
    .page-games-fishing-games__step-title,
    .page-games-fishing-games__strategy-title,
    .page-games-fishing-games__advantage-title,
    .page-games-fishing-games__responsible-title {
        font-size: 1.4em;
    }

    .page-games-fishing-games__advantage-content,
    .page-games-fishing-games__responsible-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-games-fishing-games__cta-title {
        font-size: 2.5em;
    }

    .page-games-fishing-games__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-games-fishing-games__hero-section {
        height: 400px;
    }

    .page-games-fishing-games__hero-title {
        font-size: 2em;
    }

    .page-games-fishing-games__hero-description {
        font-size: 1em;
    }

    .page-games-fishing-games__section {
        padding: 40px 0;
    }

    .page-games-fishing-games__section-title {
        font-size: 1.8em;
    }

    .page-games-fishing-games__feature-item,
    .page-games-fishing-games__reason-item,
    .page-games-fishing-games__game-card,
    .page-games-fishing-games__step-item,
    .page-games-fishing-games__strategy-item {
        padding: 20px;
    }

    .page-games-fishing-games__feature-title,
    .page-games-fishing-games__reason-title,
    .page-games-fishing-games__game-name,
    .page-games-fishing-games__step-title,
    .page-games-fishing-games__strategy-title,
    .page-games-fishing-games__advantage-title,
    .page-games-fishing-games__responsible-title {
        font-size: 1.2em;
    }

    .page-games-fishing-games__cta-title {
        font-size: 2em;
    }

    .page-games-fishing-games__cta-description {
        font-size: 1em;
    }

    .page-games-fishing-games__btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .page-games-fishing-games__btn--cta {
        padding: 12px 25px;
        font-size: 16px;
    }
}