/* style/game-hall-fishing-games.css */

/* Variables */
:root {
    --page-game-hall-fishing-games-primary-color: #003366;
    --page-game-hall-fishing-games-accent-color: #FFCC00;
    --page-game-hall-fishing-games-text-dark: #333333;
    --page-game-hall-fishing-games-text-light: #ffffff;
    --page-game-hall-fishing-games-background-light: #f5f5f5;
    --page-game-hall-fishing-games-border-color: #e0e0e0;
}

.page-game-hall-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-game-hall-fishing-games-text-dark);
    background-color: var(--page-game-hall-fishing-games-background-light);
}

.page-game-hall-fishing-games .highlight {
    color: var(--page-game-hall-fishing-games-accent-color);
}

.page-game-hall-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-game-hall-fishing-games__hero-section {
    background: linear-gradient(135deg, var(--page-game-hall-fishing-games-primary-color) 0%, #004d99 100%);
    color: var(--page-game-hall-fishing-games-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-game-hall-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-game-hall-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--page-game-hall-fishing-games-text-light);
}

.page-game-hall-fishing-games__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

.page-game-hall-fishing-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-game-hall-fishing-games__btn--primary {
    background-color: var(--page-game-hall-fishing-games-accent-color);
    color: var(--page-game-hall-fishing-games-primary-color);
}

.page-game-hall-fishing-games__btn--primary:hover {
    background-color: #e6b800; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-game-hall-fishing-games__btn--secondary {
    background-color: transparent;
    color: var(--page-game-hall-fishing-games-text-light);
    border: 2px solid var(--page-game-hall-fishing-games-accent-color);
}

.page-game-hall-fishing-games__btn--secondary:hover {
    background-color: var(--page-game-hall-fishing-games-accent-color);
    color: var(--page-game-hall-fishing-games-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-game-hall-fishing-games__btn--inline {
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    margin-top: 15px;
}

.page-game-hall-fishing-games__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-game-hall-fishing-games__hero-image-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.page-game-hall-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* General Section Styling */
.page-game-hall-fishing-games__why-okking-section,
.page-game-hall-fishing-games__how-to-play-section,
.page-game-hall-fishing-games__tips-section,
.page-game-hall-fishing-games__promo-section,
.page-game-hall-fishing-games__cta-section,
.page-game-hall-fishing-games__faq-section {
    padding: 60px 0;
    text-align: center;
}

.page-game-hall-fishing-games__section-title {
    font-size: 2.8em;
    color: var(--page-game-hall-fishing-games-primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-hall-fishing-games__section-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--page-game-hall-fishing-games-text-dark);
}

/* Features Grid */
.page-game-hall-fishing-games__features-grid,
.page-game-hall-fishing-games__steps-grid,
.page-game-hall-fishing-games__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-game-hall-fishing-games__feature-item,
.page-game-hall-fishing-games__step-item,
.page-game-hall-fishing-games__tip-item {
    background-color: var(--page-game-hall-fishing-games-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-hall-fishing-games__feature-item:hover,
.page-game-hall-fishing-games__step-item:hover,
.page-game-hall-fishing-games__tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-game-hall-fishing-games__feature-icon,
.page-game-hall-fishing-games__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-game-hall-fishing-games__feature-title,
.page-game-hall-fishing-games__step-title,
.page-game-hall-fishing-games__tip-title {
    font-size: 1.5em;
    color: var(--page-game-hall-fishing-games-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-hall-fishing-games__feature-text,
.page-game-hall-fishing-games__step-text,
.page-game-hall-fishing-games__tip-text {
    font-size: 1em;
    color: var(--page-game-hall-fishing-games-text-dark);
}

/* Promo Section */
.page-game-hall-fishing-games__promo-section {
    background-color: var(--page-game-hall-fishing-games-primary-color);
    color: var(--page-game-hall-fishing-games-text-light);
}

.page-game-hall-fishing-games__promo-section .page-game-hall-fishing-games__section-title {
    color: var(--page-game-hall-fishing-games-text-light);
}

.page-game-hall-fishing-games__promo-section .page-game-hall-fishing-games__section-description {
    color: rgba(255, 255, 255, 0.8);
}

.page-game-hall-fishing-games__promo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--page-game-hall-fishing-games-text-light);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin: 50px auto;
    max-width: 900px;
    overflow: hidden;
}

.page-game-hall-fishing-games__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.page-game-hall-fishing-games__promo-content {
    padding: 30px;
    color: var(--page-game-hall-fishing-games-text-dark);
    text-align: center;
}

.page-game-hall-fishing-games__promo-title {
    font-size: 2em;
    color: var(--page-game-hall-fishing-games-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-hall-fishing-games__promo-text {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.page-game-hall-fishing-games__promo-info {
    margin-top: 30px;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-hall-fishing-games__promo-info p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.page-game-hall-fishing-games__cta-section {
    background: linear-gradient(45deg, #002244, var(--page-game-hall-fishing-games-primary-color));
    color: var(--page-game-hall-fishing-games-text-light);
}

.page-game-hall-fishing-games__cta-section .page-game-hall-fishing-games__section-title {
    color: var(--page-game-hall-fishing-games-text-light);
}

.page-game-hall-fishing-games__cta-section .page-game-hall-fishing-games__section-description {
    color: rgba(255, 255, 255, 0.9);
}

.page-game-hall-fishing-games__cta-actions {
    margin-top: 40px;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.page-game-hall-fishing-games__faq-section {
    background-color: var(--page-game-hall-fishing-games-background-light);
}

.page-game-hall-fishing-games__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.page-game-hall-fishing-games__faq-item {
    background-color: var(--page-game-hall-fishing-games-text-light);
    border: 1px solid var(--page-game-hall-fishing-games-border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-hall-fishing-games__faq-question {
    font-size: 1.3em;
    color: var(--page-game-hall-fishing-games-primary-color);
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-hall-fishing-games__faq-answer {
    font-size: 1em;
    color: var(--page-game-hall-fishing-games-text-dark);
    display: block; /* Ensure it's visible by default for simplicity, can be toggled with JS */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-hall-fishing-games__hero-title {
        font-size: 2.8em;
    }
    .page-game-hall-fishing-games__hero-subtitle {
        font-size: 1.2em;
    }
    .page-game-hall-fishing-games__section-title {
        font-size: 2.2em;
    }
    .page-game-hall-fishing-games__promo-card {
        flex-direction: column;
    }
    .page-game-hall-fishing-games__promo-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-game-hall-fishing-games__hero-title {
        font-size: 2.2em;
    }
    .page-game-hall-fishing-games__hero-subtitle {
        font-size: 1em;
    }
    .page-game-hall-fishing-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-hall-fishing-games__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-game-hall-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-game-hall-fishing-games__section-description {
        font-size: 0.95em;
    }
    .page-game-hall-fishing-games__features-grid,
    .page-game-hall-fishing-games__steps-grid,
    .page-game-hall-fishing-games__tips-grid {
        grid-template-columns: 1fr;
    }
    .page-game-hall-fishing-games__promo-title {
        font-size: 1.6em;
    }
    .page-game-hall-fishing-games__promo-text,
    .page-game-hall-fishing-games__promo-info p {
        font-size: 0.95em;
    }
    .page-game-hall-fishing-games__cta-actions .page-game-hall-fishing-games__btn {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .page-game-hall-fishing-games__hero-section,
    .page-game-hall-fishing-games__why-okking-section,
    .page-game-hall-fishing-games__how-to-play-section,
    .page-game-hall-fishing-games__tips-section,
    .page-game-hall-fishing-games__promo-section,
    .page-game-hall-fishing-games__cta-section,
    .page-game-hall-fishing-games__faq-section {
        padding: 40px 0;
    }
    .page-game-hall-fishing-games__hero-title {
        font-size: 1.8em;
    }
    .page-game-hall-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-game-hall-fishing-games__btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-game-hall-fishing-games__promo-image {
        height: 150px;
    }
    .page-game-hall-fishing-games__promo-title {
        font-size: 1.3em;
    }
    .page-game-hall-fishing-games__faq-question {
        font-size: 1.1em;
    }
    .page-game-hall-fishing-games__faq-answer {
        font-size: 0.9em;
    }
}