/* style/games-fishing-details.css */
.page-games-fishing-details {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a2e;
    line-height: 1.6;
}

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

.page-games-fishing-details__hero-section {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-fishing-details__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFC107;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-games-fishing-details__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.page-games-fishing-details__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-games-fishing-details__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.page-games-fishing-details__button--primary {
    background-color: #FFC107;
    color: #000000;
}

.page-games-fishing-details__button--primary:hover {
    background-color: #e6b000;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

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

.page-games-fishing-details__button--secondary:hover {
    background-color: #FFC107;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-games-fishing-details__button--play, 
.page-games-fishing-details__button--download, 
.page-games-fishing-details__button--contact {
    background-color: #007BFF;
    color: #ffffff;
    border: 2px solid #007BFF;
}

.page-games-fishing-details__button--play:hover, 
.page-games-fishing-details__button--download:hover, 
.page-games-fishing-details__button--contact:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-games-fishing-details__section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.page-games-fishing-details__section:nth-of-type(even) {
    background-color: #2a2a4a;
}

.page-games-fishing-details__section-title {
    font-size: 2.5em;
    color: #FFC107;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-games-fishing-details__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #007BFF;
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.page-games-fishing-details__grid-item {
    background-color: #2a2a4a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-games-fishing-details__grid-item p {
    color: #e0e0e0;
}

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

.page-games-fishing-details__feature-image, 
.page-games-fishing-details__strategy-image, 
.page-games-fishing-details__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-games-fishing-details__game-card {
    background-color: #2a2a4a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-games-fishing-details__card-title {
    font-size: 1.6em;
    color: #FFC107;
    margin-bottom: 15px;
}

.page-games-fishing-details__game-card p {
    color: #e0e0e0;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-games-fishing-details__games-collage {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

.page-games-fishing-details__guide-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.page-games-fishing-details__guide-item ul,
.page-games-fishing-details__guide-item ol {
    list-style-type: disc;
    margin-left: 20px;
    color: #e0e0e0;
}

.page-games-fishing-details__guide-item ol {
    list-style-type: decimal;
}

.page-games-fishing-details__guide-item li {
    margin-bottom: 10px;
}

.page-games-fishing-details__guide-item strong {
    color: #FFC107;
}

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

.page-games-fishing-details__promo-item {
    background-color: #2a2a4a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-games-fishing-details__promo-item h3 {
    color: #007BFF;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-games-fishing-details__promo-item p {
    color: #e0e0e0;
}

.page-games-fishing-details__promo-note {
    text-align: center;
    font-size: 1.1em;
    color: #FFC107;
    margin-bottom: 40px;
}

.page-games-fishing-details__registration .page-games-fishing-details__grid-item {
    background-color: #2a2a4a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-games-fishing-details__registration .page-games-fishing-details__grid-item ol {
    list-style-type: decimal;
    margin-left: 20px;
    color: #e0e0e0;
}

.page-games-fishing-details__registration .page-games-fishing-details__grid-item li {
    margin-bottom: 10px;
}

.page-games-fishing-details__faq-list {
    margin-top: 30px;
}

.page-games-fishing-details__faq-item {
    background-color: #2a2a4a;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-games-fishing-details__faq-question {
    font-size: 1.3em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-games-fishing-details__faq-answer {
    color: #e0e0e0;
}

.page-games-fishing-details__conclusion p {
    text-align: center;
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-games-fishing-details__conclusion .page-games-fishing-details__button {
    margin: 0 auto;
    display: block;
    width: fit-content;
}

@media (min-width: 768px) {
    .page-games-fishing-details__guide-content {
        grid-template-columns: 1fr 1.5fr;
    }
    .page-games-fishing-details__hero-title {
        font-size: 4em;
    }
    .page-games-fishing-details__section-title {
        font-size: 3em;
    }
}

@media (max-width: 767px) {
    .page-games-fishing-details__hero-title {
        font-size: 2.5em;
    }
    .page-games-fishing-details__hero-description {
        font-size: 1em;
    }
    .page-games-fishing-details__hero-actions {
        flex-direction: column;
    }
    .page-games-fishing-details__button {
        width: 100%;
        max-width: 300px;
    }
    .page-games-fishing-details__section-title {
        font-size: 2em;
    }
    .page-games-fishing-details__grid-item {
        padding: 20px;
    }
    .page-games-fishing-details__item-title {
        font-size: 1.5em;
    }
    .page-games-fishing-details__game-card {
        padding: 20px;
    }
    .page-games-fishing-details__card-title {
        font-size: 1.4em;
    }
    .page-games-fishing-details__promo-item {
        padding: 20px;
    }
    .page-games-fishing-details__promo-item h3 {
        font-size: 1.3em;
    }
    .page-games-fishing-details__faq-question {
        font-size: 1.2em;
    }
    .page-games-fishing-details__conclusion p {
        font-size: 1em;
    }
}