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

.page-fishing-games {
  font-family: Arial, sans-serif;
  color: var(--f168-text-main); /* Default text color for dark background */
  background-color: var(--f168-background); /* Main background color */
  line-height: 1.6;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  text-align: center;
  background-color: var(--f168-deep-green); /* A slightly darker green for the hero section background */
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  margin-top: -100px; /* Overlap slightly with image for visual appeal, but text is below image in DOM */
  padding: 0 20px;
  max-width: 900px;
  box-sizing: border-box;
}

.page-fishing-games__main-title {
  color: var(--f168-gold);
  font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive font size for H1 */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-fishing-games__description {
  color: var(--f168-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%;
}

/* General button styles */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-fishing-games__btn-primary {
  background: var(--f168-button-gradient);
  color: var(--f168-text-main);
  border: 2px solid var(--f168-glow);
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.6);
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: var(--f168-gold);
  border: 2px solid var(--f168-gold);
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.3);
}