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

/* General Styles */
.page-game-lobby-fishing-games-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-lobby-fishing-games-section {
    padding: 60px 0;
    text-align: center;
}

.page-game-lobby-fishing-games-section:nth-of-type(odd) {
    background-color: #000080; /* Dark blue background */
    color: #FFFFFF; /* White text for contrast */
}

.page-game-lobby-fishing-games-section:nth-of-type(even) {
    background-color: #F0F0F0; /* Light grey background */
    color: #333333; /* Dark text for contrast */
}

.page-game-lobby-fishing-games-section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold color for titles */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-fishing-games-section:nth-of-type(even) .page-game-lobby-fishing-games-section-title {
    color: #000080; /* Dark blue for titles on light background */
}

.page-game-lobby-fishing-games-section-intro {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.page-game-lobby-fishing-games-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-game-lobby-fishing-games-button-primary {
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-game-lobby-fishing-games-button-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-fishing-games-button-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-game-lobby-fishing-games-section:nth-of-type(even) .page-game-lobby-fishing-games-button-secondary {
    color: #000080; /* Dark blue text */
    border: 2px solid #000080;
}

.page-game-lobby-fishing-games-button-secondary:hover {
    background-color: #FFD700;
    color: #000080;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-fishing-games-section:nth-of-type(even) .page-game-lobby-fishing-games-button-secondary:hover {
    background-color: #000080;
    color: #FFD700;
}

/* Hero Section */
.page-game-lobby-fishing-games-hero {
    background: linear-gradient(135deg, #000080, #00004d);
    padding: 100px 0;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    min-height: 70vh;
}

.page-game-lobby-fishing-games-hero-content {
    max-width: 600px;
    text-align: left;
    flex: 1;
    min-width: 300px;
}

.page-game-lobby-fishing-games-hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold title */
    line-height: 1.1;
}

.page-game-lobby-fishing-games-hero-description {
    font-size: 1.4em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-game-lobby-fishing-games-hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-game-lobby-fishing-games-hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-game-lobby-fishing-games-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Why Choose Section */
.page-game-lobby-fishing-games-why-choose {
    background-color: #000080;
    color: #FFFFFF;
}

.page-game-lobby-fishing-games-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-lobby-fishing-games-feature-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-game-lobby-fishing-games-feature-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-game-lobby-fishing-games-feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-lobby-fishing-games-feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-lobby-fishing-games-feature-description {
    font-size: 1em;
    line-height: 1.6;
    color: #E0E0E0;
}

/* Guide Section */
.page-game-lobby-fishing-games-guide {
    background-color: #F0F0F0;
    color: #333333;
}

.page-game-lobby-fishing-games-guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-lobby-fishing-games-step-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-lobby-fishing-games-step-title {
    font-size: 1.8em;
    color: #000080;
    margin-bottom: 15px;
}

.page-game-lobby-fishing-games-step-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
}

/* Secrets Section */
.page-game-lobby-fishing-games-secrets {
    background-color: #000080;
    color: #FFFFFF;
}

.page-game-lobby-fishing-games-strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-lobby-fishing-games-strategy-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-fishing-games-strategy-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-fishing-games-strategy-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-lobby-fishing-games-strategy-description {
    font-size: 1em;
    line-height: 1.6;
    color: #E0E0E0;
}

/* Promotions Section */
.page-game-lobby-fishing-games-promotions {
    background-color: #F0F0F0;
    color: #333333;
}

.page-game-lobby-fishing-games-promo-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-game-lobby-fishing-games-promo-list li {
    background-color: #FFFFFF;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    font-size: 1.1em;
    line-height: 1.7;
    color: #555555;
}

.page-game-lobby-fishing-games-promo-highlight {
    font-weight: bold;
    color: #000080;
}

/* App Section */
.page-game-lobby-fishing-games-app {
    background-color: #000080;
    color: #FFFFFF;
}

.page-game-lobby-fishing-games-app-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.page-game-lobby-fishing-games-app-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-game-lobby-fishing-games-app-subtitle {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-lobby-fishing-games-app-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-game-lobby-fishing-games-app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Safety Section */
.page-game-lobby-fishing-games-safety {
    background-color: #F0F0F0;
    color: #333333;
}

.page-game-lobby-fishing-games-safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-lobby-fishing-games-safety-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.page-game-lobby-fishing-games-safety-title {
    font-size: 1.8em;
    color: #000080;
    margin-bottom: 15px;
}

/* Conclusion Section */
.page-game-lobby-fishing-games-conclusion {
    background-color: #000080;
    color: #FFFFFF;
    padding-bottom: 80px;
}

.page-game-lobby-fishing-games-cta-bottom {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-lobby-fishing-games-hero {
        flex-direction: column;
        padding: 80px 20px;
    }

    .page-game-lobby-fishing-games-hero-content {
        text-align: center;
    }

    .page-game-lobby-fishing-games-hero-actions {
        justify-content: center;
    }

    .page-game-lobby-fishing-games-hero-title {
        font-size: 3em;
    }

    .page-game-lobby-fishing-games-hero-description {
        font-size: 1.2em;
    }

    .page-game-lobby-fishing-games-section-title {
        font-size: 2.2em;
    }

    .page-game-lobby-fishing-games-app-content {
        flex-direction: column;
    }

    .page-game-lobby-fishing-games-app-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-game-lobby-fishing-games-section {
        padding: 40px 0;
    }

    .page-game-lobby-fishing-games-hero-title {
        font-size: 2.5em;
    }

    .page-game-lobby-fishing-games-section-title {
        font-size: 2em;
    }

    .page-game-lobby-fishing-games-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-lobby-fishing-games-features-grid, 
    .page-game-lobby-fishing-games-guide-steps, 
    .page-game-lobby-fishing-games-strategy-grid, 
    .page-game-lobby-fishing-games-safety-features {
        grid-template-columns: 1fr;
    }

    .page-game-lobby-fishing-games-hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-game-lobby-fishing-games-hero-title {
        font-size: 2em;
    }

    .page-game-lobby-fishing-games-hero-description {
        font-size: 1em;
    }

    .page-game-lobby-fishing-games-section-title {
        font-size: 1.8em;
    }

    .page-game-lobby-fishing-games-button {
        width: 100%;
        box-sizing: border-box;
    }
}