/* style/blog-how-to-choose-best-fishing-game.css */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-blog-how-to-choose-best-fishing-game {
    background-color: var(--background-color);
    color: var(--text-main-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 60px; /* Add some padding at the bottom for overall content */
}

.page-blog-how-to-choose-best-fishing-game__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-choose-best-fishing-game__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

.page-blog-how-to-choose-best-fishing-game__hero-image-wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

.page-blog-how-to-choose-best-fishing-game__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-blog-how-to-choose-best-fishing-game__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.page-blog-how-to-choose-best-fishing-game__main-title {
    color: var(--gold-color);
    font-size: clamp(2em, 3.5vw, 3em); /* Use clamp for H1, not fixed large values */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-how-to-choose-best-fishing-game__description {
    color: var(--text-secondary-color);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-blog-how-to-choose-best-fishing-game__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-how-to-choose-best-fishing-game__btn-primary,
.page-blog-how-to-choose-best-fishing-game__btn-secondary,
.page-blog-how-to-choose-best-fishing-game__btn-small {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-blog-how-to-choose-best-fishing-game__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-how-to-choose-best-fishing-game__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-how-to-choose-best-fishing-game__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-how-to-choose-best-fishing-game__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.page-blog-how-to-choose-best-fishing-game__btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-blog-how-to-choose-best-fishing-game__btn-small:hover {
    opacity: 0.9;
}

/* Section Titles */
.page-blog-how-to-choose-best-fishing-game__section-title {
    color: var(--text-main-color);
    font-size: 2.2em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    position: relative;
}

.page-blog-how-to-choose-best-fishing-game__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* General Content */
.page-blog-how-to-choose-best-fishing-game__section p {
    color: var(--text-secondary-color);
    margin-bottom: 1em;
}

.page-blog-how-to-choose-best-fishing-game__list,
.page-blog-how-to-choose-best-fishing-game__ordered-list {
    list-style-type: disc;
    color: var(--text-secondary-color);
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-blog-how-to-choose-best-fishing-game__ordered-list {
    list-style-type: decimal;
}

.page-blog-how-to-choose-best-fishing-game__list li,
.page-blog-how-to-choose-best-fishing-game__ordered-list li {
    margin-bottom: 10px;
    color: var(--text-secondary-color);
}

.page-blog-how-to-choose-best-fishing-game__list-item-title {
    color: var(--text-main-color);
    font-weight: bold;
}

.page-blog-how-to-choose-best-fishing-game__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.page-blog-how-to-choose-best-fishing-game__image-inline {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

/* Factor Cards */
.page-blog-how-to-choose-best-fishing-game__factor-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-blog-how-to-choose-best-fishing-game__factor-title {
    color: var(--gold-color);
    font-size: 1.5em;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(242, 193, 78, 0.3);
}

.page-blog-how-to-choose-best-fishing-game__factor-card p {
    color: var(--text-secondary-color);
}

/* Top Games Section */
.page-blog-how-to-choose-best-fishing-game__game-intro {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-secondary-color);
}

.page-blog-how-to-choose-best-fishing-game__all-games-cta {
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.page-blog-how-to-choose-best-fishing-game__faq-list {
    margin-top: 30px;
}

.page-blog-how-to-choose-best-fishing-game__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-how-to-choose-best-fishing-game__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    color: var(--text-main-color);
    font-weight: bold;
    font-size: 1.15em;
    user-select: none;
    list-style: none; /* For details/summary */
}

.page-blog-how-to-choose-best-fishing-game__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-choose-best-fishing-game__faq-qtext {
    flex-grow: 1;
}

.page-blog-how-to-choose-best-fishing-game__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color);
}

.page-blog-how-to-choose-best-fishing-game__faq-answer {
    padding: 0 25px 18px;
    color: var(--text-secondary-color);
    font-size: 1em;
    line-height: 1.5;
}

.page-blog-how-to-choose-best-fishing-game__faq-item[open] .page-blog-how-to-choose-best-fishing-game__faq-question {
    background-color: var(--deep-green-color);
    border-bottom: 1px solid var(--border-color);
}

/* Conclusion Section */
.page-blog-how-to-choose-best-fishing-game__conclusion .page-blog-how-to-choose-best-fishing-game__cta-buttons {
    margin-top: 30px;
}

/* Links */
.page-blog-how-to-choose-best-fishing-game a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-how-to-choose-best-fishing-game a:hover {
    color: var(--glow-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-how-to-choose-best-fishing-game__main-title {
        font-size: clamp(2em, 4.5vw, 2.8em);
    }
    .page-blog-how-to-choose-best-fishing-game__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-choose-best-fishing-game {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-how-to-choose-best-fishing-game__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-how-to-choose-best-fishing-game__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-blog-how-to-choose-best-fishing-game__description {
        font-size: 1em;
    }
    .page-blog-how-to-choose-best-fishing-game__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding to prevent overflow */
    }
    .page-blog-how-to-choose-best-fishing-game__btn-primary,
    .page-blog-how-to-choose-best-fishing-game__btn-secondary,
    .page-blog-how-to-choose-best-fishing-game__btn-small {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-how-to-choose-best-fishing-game__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-blog-how-to-choose-best-fishing-game__factor-card {
        padding: 20px;
    }
    .page-blog-how-to-choose-best-fishing-game__factor-title {
        font-size: 1.3em;
    }
    .page-blog-how-to-choose-best-fishing-game__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-blog-how-to-choose-best-fishing-game__faq-answer {
        padding: 0 20px 15px;
    }
    /* Mobile image responsiveness */
    .page-blog-how-to-choose-best-fishing-game img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-how-to-choose-best-fishing-game__section,
    .page-blog-how-to-choose-best-fishing-game__card,
    .page-blog-how-to-choose-best-fishing-game__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-how-to-choose-best-fishing-game__hero-section {
        padding-top: 10px !important; /* body handles --header-offset */
    }
    .page-blog-how-to-choose-best-fishing-game__video-section,
    .page-blog-how-to-choose-best-fishing-game__video-container,
    .page-blog-how-to-choose-best-fishing-game__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }
    .page-blog-how-to-choose-best-fishing-game__video-section {
      padding-top: 10px !important;
    }
    .page-blog-how-to-choose-best-fishing-game__cta-buttons,
    .page-blog-how-to-choose-best-fishing-game__button-group,
    .page-blog-how-to-choose-best-fishing-game__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px;
    }
}