/* style/fishing-games.css */

/* Global styles for page-fishing-games scope */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small decorative top margin, body handles main offset */
    box-sizing: border-box;
    overflow: hidden; /* Ensure no overflow */
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for large screens */
    margin-bottom: 30px; /* Space between image and content */
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 1;
    color: #F2FFF6; /* Text Main */
}

.page-fishing-games__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
}

.page-fishing-games__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-tertiary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons adapt to mobile */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    text-align: center;
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #ffffff;
    border: none;
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: #57E38D; /* Glow */
    border: 2px solid #57E38D; /* Glow */
}

.page-fishing-games__btn-secondary:hover {
    background: #57E38D; /* Glow */
    color: #08160F; /* Background */
    transform: translateY(-2px);
}

.page-fishing-games__btn-tertiary {
    background: #2E7A4E; /* Border */
    color: #F2FFF6; /* Text Main */
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.page-fishing-games__btn-tertiary:hover {
    background: #1E3A2A; /* Divider */
    transform: translateY(-1px);
}

/* General Section Styles */
.page-fishing-games__section {
    padding: 60px 20px;
    box-sizing: border-box;
    width: 100%;
}

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