/* style/fishing-games.css */

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Default text color for dark body background */
    background-color: transparent; /* Inherit from body (var(--dark-bg)) */
}

/* Header offset for main content */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height for hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.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-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 0;
}

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

.page-fishing-games__hero-title {
    font-size: 3.5em;
    color: #FFC107; /* Auxiliary color for highlight */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__hero-description {
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 30px;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text break */
}

.page-fishing-games__cta-button--primary {
    background-color: #FFC107; /* Auxiliary color */
    color: #4A148C; /* Main color for text */
    border: 2px solid #FFC107;
}

.page-fishing-games__cta-button--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-fishing-games__cta-button--secondary {
    background-color: transparent;
    color: #FFC107; /* Auxiliary color for text */
    border: 2px solid #FFC107;
}

.page-fishing-games__cta-button--secondary:hover {
    background-color: #FFC107;
    color: #4A148C; /* Main color for text */
    transform: translateY(-3px);
}

.page-fishing-games__cta-button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-fishing-games__section {
    padding: 60px 20px;
    text-align: center;
}

.page-fishing-games__dark-bg {
    background-color: #4A148C; /* Main brand color */
    color: #ffffff; /* White text for contrast */
}

.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Consistent padding */
}

.page-fishing-games__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #FFC107; /* Auxiliary color for titles */
}

.page-fishing-games__dark-bg .page-fishing-games__section-title {
    color: #ffffff; /* White title on dark background */
}

.page-fishing-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #f0f0f0; /* Default text color for dark body background */
}

.page-fishing-games__dark-bg .page-fishing-games__text-block {
    color: #ffffff; /* White text on dark background */
}

.page-fishing-games__highlight {
    color: #FFC107;
    font-weight: bold;
}

/* Game Cards Section */
.page-fishing-games__game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__game-card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for dark background */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-10px);
}

.page-fishing-games__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency, will be overridden by mobile if needed */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

.page-fishing-games__game-card-title {
    font-size: 1.6em;
    color: #FFC107;
    margin-bottom: 10px;
}

.page-fishing-games__game-card-description {
    font-size: 1em;
    color: #e0e0e0;
}

/* How to Play Section */
.page-fishing-games__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-fishing-games__step-item {
    background-color: #ffffff;
    color: #333333;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.page-fishing-games__step-item a {
    color: #4A148C; /* Link color */
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__step-item a:hover {
    text-decoration: underline;
}

.page-fishing-games__step-title {
    font-size: 1.5em;
    color: #4A148C;
    margin-bottom: 10px;
}

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

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

.page-fishing-games__strategy-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-fishing-games__strategy-item:hover {
    transform: translateY(-10px);
}

.page-fishing-games__strategy-image {
    width: 100%;
    height: 180px; /* Fixed height for consistency, will be overridden by mobile if needed */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__strategy-title {
    font-size: 1.6em;
    color: #FFC107;
    margin-bottom: 10px;
}

.page-fishing-games__strategy-description {
    font-size: 1em;
    color: #e0e0e0;
}

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

.page-fishing-games__promotion-card {
    background-color: #ffffff;
    color: #333333;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-fishing-games__promotion-card:hover {
    transform: translateY(-10px);
}

.page-fishing-games__promotion-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__promotion-card-title {
    font-size: 1.6em;
    color: #4A148C;
    margin-bottom: 10px;
}

.page-fishing-games__promotion-card-description {
    font-size: 1em;
    color: #555555;
    flex-grow: 1; /* Make description take available space */
    margin-bottom: 20px;
}

/* Why Choose Section */
.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-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-10px);
}

.page-fishing-games__feature-icon {
    width: 80px; /* Display size, generated image is larger */
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    min-width: 200px; /* Actual generated image size */
    min-height: 200px; /* Actual generated image size */
}

.page-fishing-games__feature-title {
    font-size: 1.6em;
    color: #FFC107;
    margin-bottom: 10px;
}

.page-fishing-games__feature-description {
    font-size: 1em;
    color: #e0e0e0;
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__faq-item {
    background-color: #ffffff;
    color: #333333;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    color: #4A148C;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.page-fishing-games__faq-question a {
    color: #4A148C;
    text-decoration: none;
}

.page-fishing-games__faq-question a:hover {
    text-decoration: underline;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: left;
    color: #555555;
}