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

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

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

.page-fishing-games__content-area--center {
  text-align: center;
}

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games__section-description {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: -100px;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, rgba(8, 22, 15, 0.95) 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
}

.page-fishing-games__main-title {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-fishing-games__intro-text {
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(0, 255, 0, 0.5);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--gold);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-fishing-games__btn-secondary:hover {
  background-color: var(--gold);
  color: var(--bg-color);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px;
  box-sizing: border-box;
}

.page-fishing-games__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  border: 1px solid var(--border);
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.page-fishing-games__about-section p {
  color: var(--text-main);
  margin-bottom: 20px;
  font-size: 17px;
}

.page-fishing-games__about-section b {
  color: var(--gold);
}

.page-fishing-games__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border: 1px solid var(--border);
}

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

.page-fishing-games__card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  border: 1px solid var(--divider);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
  box-sizing: border-box;
}

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

.page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--deep-green);
}

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

.page-fishing-games__card-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-fishing-games__card-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--button-gradient);
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-fishing-games__card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

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

.page-fishing-games__feature-item {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  border: 1px solid var(--divider);
  color: var(--text-main);
  box-sizing: border-box;
}

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  object-fit: contain;
}

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

.page-fishing-games__feature-text {
  font-size: 16px;
  color: var(--text-secondary);
}

.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__step-item {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border: 1px solid var(--divider);
  color: var(--text-main);
}

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

.page-fishing-games__step-text {
  font-size: 17px;
  color: var(--text-secondary);
}

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

.page-fishing-games__note-text {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 40px;
}

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

.page-fishing-games__security-item {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border: 1px solid var(--divider);
  color: var(--text-main);
}

.page-fishing-games__security-subtitle {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 10px;
}

.page-fishing-games__security-text {
  font-size: 16px;
  color: var(--text-secondary);
}

.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  border: 1px solid var(--divider);
  color: var(--text-main);
}

.page-fishing-games__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-fishing-games__faq-qtext {
  color: var(--gold);
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: var(--glow);
  margin-left: 15px;
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.page-fishing-games__faq-answer p {
  margin-bottom: 10px;
}

.page-fishing-games__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-fishing-games__cta-final-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--deep-green);
  border-top: 1px solid var(--divider);
}

@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__content-area,
  .page-fishing-games__hero-section,
  .page-fishing-games__video-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__why-choose-us-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__security-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-final-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__hero-content {
    margin-top: -60px;
    padding: 15px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(28px, 8vw, 40px) !important;
  }

  .page-fishing-games__intro-text {
    font-size: 16px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important;
  }

  .page-fishing-games__video-container {
    padding-bottom: 56.25% !important;
    height: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-fishing-games__video {
    width: 100% !important;
    height: 100% !important;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__card-image {
    height: 180px;
  }

  .page-fishing-games__section-title {
    font-size: clamp(24px, 7vw, 36px) !important;
  }

  .page-fishing-games__section-description {
    font-size: 16px;
  }

  .page-fishing-games__card-title,
  .page-fishing-games__feature-title,
  .page-fishing-games__step-title,
  .page-fishing-games__security-subtitle {
    font-size: 20px;
  }

  .page-fishing-games__card-text,
  .page-fishing-games__feature-text,
  .page-fishing-games__step-text,
  .page-fishing-games__security-text,
  .page-fishing-games__faq-item summary,
  .page-fishing-games__faq-answer {
    font-size: 15px;
  }

  .page-fishing-games__faq-item summary {
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px 15px 20px;
  }
}