/* style/fishing-games.css */

/* General Styles for the page-fishing-games scope */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: var(--dark-bg); /* Inherited from shared.css */
}

.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: 700;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    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: #FFD700;
    border-radius: 2px;
}

.page-fishing-games__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    color: #f0f0f0; /* Light grey for paragraph text */
    text-align: center;
}

/* Hero Banner Section (Page Specific) */
.page-fishing-games__hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 0; /* Assumes shared.css handles body padding-top for header offset */
    margin-top: 0;
    min-height: 600px; /* Minimum height for desktop */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-fishing-games__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

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

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

.page-fishing-games__hero-content {
    max-width: 900px;
    padding: 20px;
    z-index: 1;
}

.page-fishing-games__main-title {
    font-size: 52px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-fishing-games__description {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-fishing-games__btn-primary {
    background-color: #FFD700;
    color: #0A2342;
    border: 2px solid #FFD700;
}

.page-fishing-games__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Introduction Section */
.page-fishing-games__introduction-section {
    padding: 80px 0;
    background-color: #0A2342; /* Dark blue background */
    color: #ffffff;
}

/* Features Section */
.page-fishing-games__features-section {
    padding: 80px 0;
    background-color: var(--dark-bg); /* Inherits from body */
}

.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-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: #ffffff;
}

.page-fishing-games__feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.page-fishing-games__feature-icon {
    width: 100%;
    height: auto;
    max-width: 250px; /* Constrain icon size */
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-fishing-games__feature-title {
    font-size: 22px;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-fishing-games__feature-description {
    font-size: 16px;
    color: #f0f0f0;
}

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

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

.page-fishing-games__game-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-fishing-games__game-title {
    font-size: 20px;
    color: #FFD700;
    padding: 15px 20px 0;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-fishing-games__game-description {
    font-size: 15px;
    color: #f0f0f0;
    padding: 0 20px 20px;
}

/* Guide Section */
.page-fishing-games__guide-section {
    padding: 80px 0;
    background-color: #0A2342;
    color: #ffffff;
}

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

.page-fishing-games__step-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.page-fishing-games__step-number {
    font-size: 48px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-fishing-games__step-title {
    font-size: 24px;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-fishing-games__step-description {
    font-size: 16px;
    color: #f0f0f0;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

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

.page-fishing-games__promotion-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
}

.page-fishing-games__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__promotion-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-fishing-games__promotion-title {
    font-size: 22px;
    color: #FFD700;
    padding: 15px 20px 0;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-fishing-games__promotion-description {
    font-size: 16px;
    color: #f0f0f0;
    padding: 0 20px 20px;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
    padding: 80px 0;
    background-color: #0A2342;
    color: #ffffff;
}

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