/* style/fishing-games.css */

:root {
    --primary-color: #E53935;
    --secondary-color: #FF5A4F;
    --text-main-color: #333333;
    --card-bg-color: #FFFFFF;
    --background-color: #F5F7FA;
    --border-color: #E0E0E0;
    --button-gradient: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main-color);
    background-color: var(--background-color);
}

/* Base Section Styling */
.page-fishing-games__section {
    padding: 60px 0;
    position: relative;
}

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

.page-fishing-games__section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-fishing-games__text-block {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, main offset handled by body */
    background-color: var(--background-color);
}

.page-fishing-games__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-fishing-games__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-fishing-games__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-fishing-games__main-title {
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 15px;
    font-size: clamp(28px, 4vw, 50px); /* H1 font size control */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__description {
    font-size: 19px;
    color: var(--text-main-color);
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}

.page-fishing-games__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-fishing-games__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
}

.page-fishing-games__btn-secondary {
    background: var(--card-bg-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Intro Section */
.page-fishing-games__intro-section {
    background-color: var(--background-color);
}

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

.page-fishing-games__card {
    background: var(--card-bg-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    color: var(--text-main-color);
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__card-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__card p {
    font-size: 16px;
    line-height: 1.7;
}

/* Features Section */
.page-fishing-games__features-section {
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-fishing-games__features-section .page-fishing-games__section-title,
.page-fishing-games__features-section .page-fishing-games__text-block {
    color: #ffffff;
}

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

.page-fishing-games__feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__feature-item img {
    width: 100%;
    height: auto;
    
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__feature-title {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__feature-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #f0f0f0;
}

/* Guide Section */
.page-fishing-games__guide-section {
    background-color: var(--background-color);
}

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

.page-fishing-games__step-item {
    background: var(--card-bg-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-main-color);
}

.page-fishing-games__step-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-fishing-games__step-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__step-item p {
    font-size: 16px;
    line-height: 1.7;
}

/* Tips Section */
.page-fishing-games__tips-section {
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-fishing-games__tips-section .page-fishing-games__section-title,
.page-fishing-games__tips-section .page-fishing-games__text-block {
    color: #ffffff;
}

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

.page-fishing-games__tip-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f0f0f0;
}

.page-fishing-games__tip-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-fishing-games__tip-title {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__tip-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    background-color: var(--background-color);
}

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

.page-fishing-games__promo-card {
    background: var(--card-bg-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-main-color);
}

.page-fishing-games__promo-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-fishing-games__promo-title {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__promo-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* Trust Section */
.page-fishing-games__trust-section {
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-fishing-games__trust-section .page-fishing-games__section-title,
.page-fishing-games__trust-section .page-fishing-games__text-block {
    color: #ffffff;
}

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

.page-fishing-games__info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f0f0f0;
}

.page-fishing-games__info-title {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__info-card p {
    font-size: 16px;
    line-height: 1.7;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    background-color: var(--background-color);
}

.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg-color);
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: #f5f5f5;
}
.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main-color);
}
.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: var(--text-main-color);
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer p {
    font-size: 15px;
    line-height: 1.7;
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
}

.page-fishing-games__cta-final-section .page-fishing-games__section-title,
.page-fishing-games__cta-final-section .page-fishing-games__text-block {
    color: #ffffff;
}

.page-fishing-games__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 32px;
    }
    .page-fishing-games__text-block {
        font-size: 17px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(26px, 5vw, 45px);
    }
    .page-fishing-games__description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__section {
        padding: 40px 0;
    }
    .page-fishing-games__container {
        padding: 0 15px;
    }
    .page-fishing-games__section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .page-fishing-games__text-block {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-fishing-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__hero-image img {
        border-radius: 4px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(24px, 6vw, 38px);
        margin-bottom: 10px;
    }
    .page-fishing-games__description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games__cta-buttons,
    .page-fishing-games__button-group,
    .page-fishing-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-fishing-games__grid-2-cols, .page-fishing-games__feature-grid, .page-fishing-games__steps-grid, .page-fishing-games__tips-grid, .page-fishing-games__promo-grid, .page-fishing-games__grid-3-cols {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games__card, .page-fishing-games__feature-item, .page-fishing-games__step-item, .page-fishing-games__tip-card, .page-fishing-games__promo-card, .page-fishing-games__info-card {
        padding: 20px;
    }
    .page-fishing-games__card-title, .page-fishing-games__feature-title, .page-fishing-games__step-title, .page-fishing-games__tip-title, .page-fishing-games__promo-title, .page-fishing-games__info-title {
        font-size: 20px;
    }
    .page-fishing-games__feature-item img {
        
    }
    details.page-fishing-games__faq-item summary.page-fishing-games__faq-question { padding: 15px; }
    .page-fishing-games__faq-qtext { font-size: 15px; }
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__hero-section,
    .page-fishing-games__feature-item,
    .page-fishing-games__step-item,
    .page-fishing-games__tip-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__info-card,
    .page-fishing-games__faq-list,
    .page-fishing-games__cta-final-section,
    .page-fishing-games__intro-section,
    .page-fishing-games__features-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__tips-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__trust-section,
    .page-fishing-games__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__section-title {
        font-size: 24px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(22px, 7vw, 32px);
    }
    .page-fishing-games__description {
        font-size: 15px;
    }
    .page-fishing-games__cta-button {
        font-size: 15px;
        padding: 10px 20px;
    }
    .page-fishing-games__card-title, .page-fishing-games__feature-title, .page-fishing-games__step-title, .page-fishing-games__tip-title, .page-fishing-games__promo-title, .page-fishing-games__info-title {
        font-size: 18px;
    }
    .page-fishing-games__card p, .page-fishing-games__feature-item p, .page-fishing-games__step-item p, .page-fishing-games__tip-card p, .page-fishing-games__promo-card p, .page-fishing-games__info-card p {
        font-size: 14px;
    }
    .page-fishing-games__step-number {
        font-size: 40px;
    }
}