/* style/fishing-games.css */

/* Base Styles */
.page-fishing-games {
    color: #ffffff; /* Light text for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with shared.css body background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

.page-fishing-games__section-title {
    font-size: 38px;
    font-weight: bold;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #8B0000; /* Dark red underline */
    border-radius: 2px;
}

/* Buttons */
.page-fishing-games__hero-button,
.page-fishing-games__primary-button,
.page-fishing-games__secondary-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__hero-button {
    background-color: #FFD700;
    color: #000000; /* Dark text on gold button for contrast */
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-fishing-games__hero-button:hover {
    background-color: #e0b800;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

.page-fishing-games__primary-button {
    background-color: #8B0000; /* Dark red button */
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(139, 0, 0, 0.3);
}

.page-fishing-games__primary-button:hover {
    background-color: #a00000;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.5);
    transform: translateY(-2px);
}

.page-fishing-games__secondary-button {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    font-size: 16px;
}

.page-fishing-games__secondary-button:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-2px);
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Fixed height for hero */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0; /* Important: shared.css should handle body padding-top */
    margin-top: 0;
}

.page-fishing-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-fishing-games__hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text */
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-fishing-games__hero-title {
    font-size: 48px;
    color: #FFD700; /* Gold title */
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-fishing-games__hero-description {
    font-size: 18px;
    color: #f0f0f0;
    margin: 0;
    max-width: 700px;
}

/* Introduction Section */
.page-fishing-games__introduction-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background */
}

.page-fishing-games__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-fishing-games__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-fishing-games__text-content {
    flex: 1;
    color: #f0f0f0;
}

.page-fishing-games__text-content h3 {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-fishing-games__text-content p {
    margin-bottom: 15px;
    font-size: 17px;
}

.page-fishing-games__text-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    font-size: 17px;
}

.page-fishing-games__text-content li {
    margin-bottom: 8px;
}

.page-fishing-games__image-content {
    flex: 1;
    min-width: 400px; /* Ensure image has enough space */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__image-content img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Popular Games Section */
.page-fishing-games__popular-games-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

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