/* style/fishing-games.css */

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

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

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: var(--page-fishing-games-text-main);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-fishing-games__text-block {
    font-size: 1.1em;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 1em;
}

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

.page-fishing-games__inline-link {
    color: var(--page-fishing-games-secondary);
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__inline-link:hover {
    text-decoration: underline;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
    max-width: 100%; /* Ensure buttons don't overflow */
    box-sizing: border-box; /* Include padding in width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-fishing-games__btn-primary {
    background: var(--page-fishing-games-btn-gradient);
    color: var(--page-fishing-games-text-main);
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--page-fishing-games-secondary);
    border: 2px solid var(--page-fishing-games-secondary);
    box-shadow: 0 2px 10px rgba(34, 199, 104, 0.2);
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--page-fishing-games-secondary);
    color: var(--page-fishing-games-text-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-fishing-games__btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
    background: var(--page-fishing-games-btn-gradient);
    color: var(--page-fishing-games-text-main);
    border-radius: 5px;
}

.page-fishing-games__btn-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(17, 168, 78, 0.3);
}

/* Image styles */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.page-fishing-games__content-image {
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--page-fishing-games-bg);
}

.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;
    object-fit: cover; /* Ensures image covers area without distortion */
    border-radius: 0; /* Hero image usually full width, no border radius */
}

.page-fishing-games__hero-content {
    text-align: center;
    padding: 0 15px 50px;
    max-width: 900px;
}

.page-fishing-games__hero-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
    color: var(--page-fishing-games-text-main);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.page-fishing-games__hero-description {
    font-size: 1.3em;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%; /* Ensure container takes full width */
    max-width: 500px; /* Limit button group width */
    margin: 0 auto;
}

/* Introduction Section */
.page-fishing-games__introduction-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-card-bg); /* Darker background for contrast */
}

/* Game Showcase Section */
.page-fishing-games__game-showcase-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-bg);
}

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

.page-fishing-games__game-card {
    background-color: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistent grid */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    aspect-ratio: 1/1; /* Ensure square aspect ratio */
}

.page-fishing-games__game-title {
    font-size: 1.5em;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__game-description {
    font-size: 0.95em;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1; /* Push button to bottom */
}

.page-fishing-games__button-group {
    text-align: center;
    margin-top: 50px;
    width: 100%;
    max-width: 400px; /* Limit width of button group */
    margin-left: auto;
    margin-right: auto;
}

/* Advantages Section */
.page-fishing-games__advantages-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-text-main); /* Light background */
    color: #333333; /* Dark text for light background */
}

.page-fishing-games__advantages-section .page-fishing-games__section-title {
    color: #000000;
}
.page-fishing-games__advantages-section .page-fishing-games__section-subtitle {
    color: #555555;
}
.page-fishing-games__advantages-section .page-fishing-games__advantage-description {
    color: #444444;
}
.page-fishing-games__advantages-section .page-fishing-games__highlight {
    color: var(--page-fishing-games-primary);
}

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

.page-fishing-games__advantage-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__advantage-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-fishing-games__advantage-title {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__advantage-description {
    font-size: 1em;
    color: #555555;
}