:root {
    --primary-color: #113B7A;
    --secondary-color: #1D5FD1;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-bg: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --deep-navy: #08162B; /* Assuming this is the body background from shared.css */
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Light text for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
}

.page-fishing-games__section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-fishing-games__heading {
    font-size: 3em;
    font-weight: bold;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(79, 168, 255, 0.5);
}

.page-fishing-games__paragraph {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.page-fishing-games__highlight {
    color: var(--gold-color);
    font-weight: bold;
}

/* HERO Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    background: var(--deep-navy);
}

.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: 12px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-fishing-games__hero-content h1 {
    color: var(--gold-color);
    font-size: clamp(2.5em, 5vw, 3.5em);
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 0 15px var(--glow-color);
}

.page-fishing-games__hero-content p {
    font-size: 1.2em;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
}

.page-fishing-games__cta-button:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-fishing-games__button-center {
    margin-left: auto;
    margin-right: auto;
    display: table; /* For horizontal centering of inline-block */
}

/* Dark background sections */
.page-fishing-games__dark-section {
    background-color: var(--deep-navy);
    color: var(--text-main);
}

.page-fishing-games__dark-section .page-fishing-games__heading {
    color: var(--gold-color);
}

.page-fishing-games__dark-section .page-fishing-games__paragraph {
    color: var(--text-secondary);
}

/* Light background sections */
.page-fishing-games__light-bg {
    background-color: #f8f9fa;
    color: #333333; /* Dark text for light background */
}

.page-fishing-games__light-bg .page-fishing-games__heading {
    color: var(--primary-color);
}

.page-fishing-games__light-bg .page-fishing-games__paragraph {
    color: #555555;
}

.page-fishing-games__light-bg a {
    color: var(--secondary-color);
}

.page-fishing-games__image-content {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-fishing-games__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__card-title {
    font-size: 1.8em;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-fishing-games__card-description {
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How-to-play steps */
.page-fishing-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__step-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-fishing-games__step-number {
    font-size: 3em;
    font-weight: bold;
    color: var(--glow-color);
    margin-bottom: 15px;
    line-height: 1;
}

.page-fishing-games__step-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-fishing-games__step-description {
    font-size: 1em;
    color: var(--text-secondary);
}

.page-fishing-games__step-description a {
    color: var(--glow-color);
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__step-description a:hover {
    text-decoration: underline;
}

/* Lists */
.page-fishing-games__list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 900px;
    text-align: left;
}

.page-fishing-games__list li {
    background: var(--card-bg);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--gold-color);
    color: var(--text-secondary);
    font-size: 1.05em;
}

.page-fishing-games__list li strong {
    color: var(--text-main);
}

.page-fishing-games__list-promotions li {
    border-left: 5px solid var(--secondary-color);
}

/* Features Grid */
.page-fishing-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__feature-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-fishing-games__feature-title {
    font-size: 1.6em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-fishing-games__feature-description {
    font-size: 1em;
    color: var(--text-secondary);
}

.page-fishing-games__feature-description a {
    color: var(--glow-color);
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__feature-description a:hover {
    text-decoration: underline;
}

/* FAQ Section */
details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  color: var(--text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main);
}
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: rgba(var(--primary-color), 0.5);
}
.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--gold-color);
}
.page-fishing-games__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: var(--glow-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  background: rgba(var(--deep-navy), 0.8);
  border-top: 1px solid var(--divider-color);
  border-radius: 0 0 8px 8px;
  text-align: left;
  color: var(--text-secondary);
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer p {
    margin-bottom: 0;
    color: var(--text-secondary);
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer a {
    color: var(--glow-color);
    text-decoration: none;
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer a:hover {
    text-decoration: underline;
}

/* Final CTA */
.page-fishing-games__cta-final {
    background: var(--secondary-color);
    padding: 80px 20px;
    color: var(--text-main);
}

.page-fishing-games__cta-final .page-fishing-games__heading {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__cta-final .page-fishing-games__paragraph {
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__heading {
        font-size: 2.5em;
    }
    .page-fishing-games__hero-content h1 {
        font-size: clamp(2em, 4.5vw, 3em);
    }
    .page-fishing-games__paragraph {
        font-size: 1em;
    }
    .page-fishing-games__cta-button {
        font-size: 1.1em;
        padding: 12px 30px;
    }
    .page-fishing-games__card-title {
        font-size: 1.5em;
    }
    .page-fishing-games__step-title {
        font-size: 1.3em;
    }
    .page-fishing-games__feature-title {
        font-size: 1.4em;
    }
    .page-fishing-games__faq-qtext {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__section {
        padding: 40px 15px;
    }
    .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: 8px;
    }
    .page-fishing-games__hero-content h1 {
        font-size: clamp(1.8em, 6vw, 2.5em);
        margin-bottom: 10px;
    }
    .page-fishing-games__hero-content p {
        font-size: 0.95em;
        margin-bottom: 20px;
    }
    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        margin-top: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games__heading {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-fishing-games__paragraph {
        font-size: 0.9em;
    }
    .page-fishing-games__grid-cards, .page-fishing-games__steps-grid, .page-fishing-games__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games__card, .page-fishing-games__step-item, .page-fishing-games__feature-item {
        padding: 25px;
    }
    .page-fishing-games__card-title {
        font-size: 1.4em;
    }
    .page-fishing-games__step-title {
        font-size: 1.2em;
    }
    .page-fishing-games__feature-title {
        font-size: 1.3em;
    }
    .page-fishing-games__image-content {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto;
    }
    .page-fishing-games__list {
        margin: 20px auto;
    }
    .page-fishing-games__list li {
        padding: 15px;
        font-size: 0.95em;
    }
    details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
        padding: 15px;
    }
    .page-fishing-games__faq-qtext {
        font-size: 0.95em;
    }
    .page-fishing-games__faq-toggle {
        font-size: 1.8em;
        width: 25px;
    }
    details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
        padding: 0 15px 15px;
    }
    .page-fishing-games__cta-final {
        padding: 50px 15px;
    }
    /* Ensure containers for images and buttons also adapt */
    .page-fishing-games__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .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: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-content h1 {
        font-size: clamp(1.5em, 8vw, 2em);
    }
    .page-fishing-games__heading {
        font-size: 1.8em;
    }
    .page-fishing-games__card-title {
        font-size: 1.3em;
    }
    .page-fishing-games__step-number {
        font-size: 2.5em;
    }
}