/* style/games-fishing-games.css */
.page-games-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #f8f8f8; /* Light text on dark background */
    background-color: #0d124b; /* Darker variant of main color */
    line-height: 1.6;
}

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

.page-games-fishing-games__hero {
    position: relative;
    background: linear-gradient(135deg, #1A237E 0%, #0d124b 100%);
    padding: 100px 0 60px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-games-fishing-games__hero .page-games-fishing-games__container {
    position: relative;
    z-index: 1;
}

.page-games-fishing-games__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-games-fishing-games__hero-description {
    font-size: 1.2em;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-games-fishing-games__hero-actions,
.page-games-fishing-games__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-games-fishing-games__actions--center {
    margin-top: 40px;
}

.page-games-fishing-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-games-fishing-games__btn--primary {
    background-color: #FFD700; /* Auxiliary color */
    color: #1A237E; /* Main color */
    border: 2px solid #FFD700;
}

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

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

.page-games-fishing-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A237E;
    transform: translateY(-3px);
}

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

.page-games-fishing-games__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-games-fishing-games__section {
    padding: 80px 0;
    text-align: center;
}

.page-games-fishing-games__section--alt-bg {
    background-color: #1A237E; /* Main color */
}

.page-games-fishing-games__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-games-fishing-games__section-description {
    font-size: 1.1em;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 50px;
}

.page-games-fishing-games__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-games-fishing-games__feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-games-fishing-games__feature-list li {
    background-color: #2b3597; /* Slightly lighter than main */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-games-fishing-games__feature-list li:hover {
    transform: translateY(-5px);
}

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

.page-games-fishing-games__feature-list p {
    color: #c0c0c0;
}

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

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

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

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

.page-games-fishing-games__game-title {
    font-size: 1.4em;
    color: #FFD700;
    margin: 20px 0 10px;
    padding: 0 15px;
}

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

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

.page-games-fishing-games__strategy-card {
    background-color: #2b3597;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
}

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

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

.page-games-fishing-games__strategy-card p {
    color: #c0c0c0;
}

.page-games-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-games-fishing-games__promo-list li {
    background-color: #0d124b;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-games-fishing-games__promo-list li:hover {
    transform: translateY(-5px);
}

.page-games-fishing-games__promo-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-games-fishing-games__promo-list p {
    color: #c0c0c0;
}

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

.page-games-fishing-games__step-card {
    background-color: #2b3597;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    padding-top: 60px; /* Space for number */
}

.page-games-fishing-games__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #1A237E;
    font-size: 2em;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #1A237E;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

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

.page-games-fishing-games__step-card p {
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-games-fishing-games__app-download {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.page-games-fishing-games__app-image {
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-games-fishing-games__app-info {
    text-align: left;
    max-width: 500px;
}

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

.page-games-fishing-games__app-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-games-fishing-games__app-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.page-games-fishing-games__app-features li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.page-games-fishing-games__app-qr-hint {
    color: #c0c0c0;
    margin-top: 20px;
    font-size: 1.1em;
}

.page-games-fishing-games__qr-code {
    width: 150px;
    height: 150px;
    margin-top: 15px;
    border: 5px solid #FFD700;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-games-fishing-games__faq {
    margin-top: 40px;
    text-align: left;
}

.page-games-fishing-games__faq-item {
    background-color: #2b3597;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games-fishing-games__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-games-fishing-games__faq-answer {
    color: #c0c0c0;
    font-size: 1em;
    line-height: 1.7;
    margin-top: 15px;
}

.page-games-fishing-games__call-to-action {
    background: linear-gradient(45deg, #FFD700, #e6c200);
    padding: 80px 0;
    text-align: center;
    color: #1A237E; /* Text on auxiliary color background */
}

.page-games-fishing-games__cta-title {
    font-size: 3em;
    color: #1A237E;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

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

.page-games-fishing-games__cta-actions .page-games-fishing-games__btn--primary {
    background-color: #1A237E;
    color: #FFD700;
    border-color: #1A237E;
}

.page-games-fishing-games__cta-actions .page-games-fishing-games__btn--primary:hover {
    background-color: #2b3597;
    border-color: #2b3597;
}

.page-games-fishing-games__cta-actions .page-games-fishing-games__btn--secondary {
    background-color: transparent;
    color: #1A237E;
    border-color: #1A237E;
}

.page-games-fishing-games__cta-actions .page-games-fishing-games__btn--secondary:hover {
    background-color: #1A237E;
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-games-fishing-games__hero-title {
        font-size: 2.8em;
    }
    .page-games-fishing-games__section-title {
        font-size: 2em;
    }
    .page-games-fishing-games__cta-title {
        font-size: 2.5em;
    }
    .page-games-fishing-games__app-download {
        flex-direction: column;
        text-align: center;
    }
    .page-games-fishing-games__app-info {
        text-align: center;
    }
    .page-games-fishing-games__app-features {
        padding-left: 20px;
    }
    .page-games-fishing-games__app-features li::before {
        left: -10px;
    }
}

@media (max-width: 768px) {
    .page-games-fishing-games__hero-title {
        font-size: 2.2em;
    }
    .page-games-fishing-games__hero-description {
        font-size: 1em;
    }
    .page-games-fishing-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-games-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-games-fishing-games__section-description {
        font-size: 0.95em;
    }
    .page-games-fishing-games__feature-list,
    .page-games-fishing-games__game-grid,
    .page-games-fishing-games__strategy-grid,
    .page-games-fishing-games__promo-list,
    .page-games-fishing-games__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-games-fishing-games__cta-title {
        font-size: 2em;
    }
    .page-games-fishing-games__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-games-fishing-games__hero-title {
        font-size: 1.8em;
    }
    .page-games-fishing-games__hero-actions,
    .page-games-fishing-games__actions,
    .page-games-fishing-games__cta-actions {
        flex-direction: column;
    }
    .page-games-fishing-games__btn--large {
        width: 100%;
    }
    .page-games-fishing-games__hero-image {
        height: 80%;
    }
}