/* style/fishing-games-popular.css */
.page-fishing-games-popular {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-fishing-games-popular .highlight {
    color: #007bff;
}

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

.page-fishing-games-popular__section {
    padding: 60px 0;
    text-align: center;
}

.page-fishing-games-popular__section:nth-of-type(even) {
    background-color: #e9ecef;
}

.page-fishing-games-popular__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #0056b3; /* Darker shade for contrast */
    position: relative;
    padding-bottom: 15px;
}

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

.page-fishing-games-popular__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Deeper blue for hero */
    color: #fff;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-fishing-games-popular__hero-content {
    z-index: 10;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-fishing-games-popular__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-fishing-games-popular__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.page-fishing-games-popular__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.page-fishing-games-popular__btn--primary {
    background-color: #ffc107;
    color: #333;
    border: 2px solid #ffc107;
}

.page-fishing-games-popular__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #000;
    transform: translateY(-2px);
}

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

.page-fishing-games-popular__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.page-fishing-games-popular__hero-image-wrapper {
    margin-top: 40px;
    max-width: 80%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.page-fishing-games-popular__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-fishing-games-popular__introduction p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.1em;
    color: #495057;
    text-align: left;
}

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

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

.page-fishing-games-popular__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-fishing-games-popular__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.page-fishing-games-popular__feature-item h3 {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-fishing-games-popular__feature-item p {
    color: #555;
    font-size: 1em;
}

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

.page-fishing-games-popular__game-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-fishing-games-popular__game-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.page-fishing-games-popular__game-item h3 {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-fishing-games-popular__game-item p {
    color: #555;
    font-size: 0.95em;
}

.page-fishing-games-popular__text-center {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #495057;
}

.page-fishing-games-popular__link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games-popular__link:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-fishing-games-popular__how-to-play ol {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 900px;
    text-align: left;
}

.page-fishing-games-popular__how-to-play ol li {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
    position: relative;
    counter-increment: step-counter;
    padding-left: 70px; /* Space for step number */
}

.page-fishing-games-popular__how-to-play ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #007bff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-fishing-games-popular__how-to-play ol li h3 {
    color: #007bff;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.page-fishing-games-popular__how-to-play ol li p {
    color: #555;
    font-size: 1em;
}

.page-fishing-games-popular__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-fishing-games-popular__strategies .page-fishing-games-popular__strategy-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 900px;
}

.page-fishing-games-popular__strategies .page-fishing-games-popular__strategy-list li {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games-popular__strategies .page-fishing-games-popular__strategy-list li h3 {
    color: #007bff;
    margin-bottom: 10px;
    font-size: 1.3em;
    text-align: center;
}

.page-fishing-games-popular__strategies .page-fishing-games-popular__strategy-list li p {
    color: #555;
    font-size: 1em;
    text-align: center;
}

.page-fishing-games-popular__strategy-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games-popular__promotions .page-fishing-games-popular__promo-list li {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-fishing-games-popular__promo-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.page-fishing-games-popular__promotions .page-fishing-games-popular__promo-list li p {
    color: #555;
    font-size: 1em;
}

.page-fishing-games-popular__app-download {
    background-color: #007bff;
    color: #fff;
    padding: 80px 0;
}

.page-fishing-games-popular__app-download .page-fishing-games-popular__section-title {
    color: #fff;
}

.page-fishing-games-popular__app-download .page-fishing-games-popular__section-title::after {
    background-color: #ffc107;
}

.page-fishing-games-popular__app-download p {
    max-width: 800px;
    margin: 20px auto 40px;
    font-size: 1.1em;
    opacity: 0.9;
}

.page-fishing-games-popular__download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-fishing-games-popular__download-buttons .page-fishing-games-popular__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ffc107;
    color: #333;
    border: 2px solid #ffc107;
    padding: 12px 25px;
}

.page-fishing-games-popular__download-buttons .page-fishing-games-popular__btn:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #000;
}

.page-fishing-games-popular__download-icon {
    width: 24px;
    height: 24px;
}

.page-fishing-games-popular__app-screenshot {
    max-width: 100%;
    width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

.page-fishing-games-popular__responsible-gaming p,
.page-fishing-games-popular__responsible-gaming ul {
    max-width: 900px;
    margin: 20px auto;
    text-align: left;
    color: #495057;
    font-size: 1em;
}

.page-fishing-games-popular__responsible-gaming ul {
    list-style: disc;
    padding-left: 40px;
}

.page-fishing-games-popular__responsible-gaming ul li {
    margin-bottom: 10px;
}

.page-fishing-games-popular__cta {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #fff;
    padding: 80px 0;
}

.page-fishing-games-popular__cta .page-fishing-games-popular__section-title {
    color: #fff;
}

.page-fishing-games-popular__cta .page-fishing-games-popular__section-title::after {
    background-color: #fff;
}

.page-fishing-games-popular__cta-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-fishing-games-popular__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-fishing-games-popular__hero-title {
        font-size: 2.8em;
    }
    .page-fishing-games-popular__section-title {
        font-size: 2em;
    }
    .page-fishing-games-popular__hero-image-wrapper {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-popular__hero-title {
        font-size: 2.2em;
    }
    .page-fishing-games-popular__hero-subtitle {
        font-size: 1.1em;
    }
    .page-fishing-games-popular__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games-popular__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-fishing-games-popular__section {
        padding: 40px 0;
    }
    .page-fishing-games-popular__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-fishing-games-popular__features .page-fishing-games-popular__feature-grid,
    .page-fishing-games-popular__popular-games .page-fishing-games-popular__game-list,
    .page-fishing-games-popular__promotions .page-fishing-games-popular__promo-list {
        grid-template-columns: 1fr;
    }
    .page-fishing-games-popular__how-to-play ol li {
        padding-left: 60px;
    }
    .page-fishing-games-popular__how-to-play ol li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        left: 15px;
    }
    .page-fishing-games-popular__download-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-fishing-games-popular__download-buttons .page-fishing-games-popular__btn {
        width: 90%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-popular__hero-title {
        font-size: 1.8em;
    }
    .page-fishing-games-popular__hero-subtitle {
        font-size: 1em;
    }
    .page-fishing-games-popular__btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-fishing-games-popular__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games-popular__hero-image-wrapper {
        max-width: 100%;
    }
}