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

.page-game-lobby-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #1A202C; /* Main text color */
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-game-lobby-fishing-games__hero-section {
    background: linear-gradient(135deg, #1A202C, #3a475e); /* Dark gradient background */
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-game-lobby-fishing-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_ocean_pattern,dark_blue,gold_lines]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-game-lobby-fishing-games__hero-section > .page-game-lobby-fishing-games__container {
    position: relative;
    z-index: 1;
}

.page-game-lobby-fishing-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-fishing-games__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-game-lobby-fishing-games__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-game-lobby-fishing-games__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-game-lobby-fishing-games__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-game-lobby-fishing-games__section:nth-of-type(even) {
    background-color: #f0f2f5;
}

.page-game-lobby-fishing-games__section-title {
    font-size: 2.5em;
    color: #1A202C;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-lobby-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-game-lobby-fishing-games__sub-title {
    font-size: 1.8em;
    color: #1A202C;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-game-lobby-fishing-games__description {
    font-size: 1.1em;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-fishing-games__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-game-lobby-fishing-games__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-game-lobby-fishing-games__text-content p {
    margin-bottom: 15px;
    color: #333;
}

.page-game-lobby-fishing-games__image-wrapper {
    text-align: center;
}

.page-game-lobby-fishing-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-game-lobby-fishing-games__feature-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #FFD700;
}

.page-game-lobby-fishing-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-game-lobby-fishing-games__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-game-lobby-fishing-games__feature-title {
    font-size: 1.5em;
    color: #1A202C;
    margin-bottom: 15px;
}

.page-game-lobby-fishing-games__feature-item p {
    color: #555;
}

.page-game-lobby-fishing-games__game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-game-lobby-fishing-games__game-card {
    background-color: #fdfdfd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby-fishing-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-game-lobby-fishing-games__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-game-lobby-fishing-games__game-card-title {
    font-size: 1.6em;
    color: #1A202C;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-game-lobby-fishing-games__game-card-text {
    color: #555;
    padding: 0 15px 20px;
    font-size: 0.95em;
}

.page-game-lobby-fishing-games__game-card-button {
    display: inline-block;
    background-color: #1A202C; /* Dark button */
    color: #FFD700; /* Gold text on dark */
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #1A202C;
}

.page-game-lobby-fishing-games__game-card-button:hover {
    background-color: #FFD700;
    color: #1A202C;
    border-color: #FFD700;
}

.page-game-lobby-fishing-games__list {
    list-style: none;
    padding-left: 0;
}

.page-game-lobby-fishing-games__list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    color: #333;
}

.page-game-lobby-fishing-games__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-game-lobby-fishing-games__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
}

.page-game-lobby-fishing-games__button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-game-lobby-fishing-games__button--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-game-lobby-fishing-games__button--primary:hover {
    background-color: #e6c200;
}

.page-game-lobby-fishing-games__button--secondary {
    background-color: #1A202C; /* Dark button */
    color: #FFD700; /* Gold text on dark */
    border: 2px solid #FFD700;
}

.page-game-lobby-fishing-games__button--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-game-lobby-fishing-games__promo-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.page-game-lobby-fishing-games__promo-list li {
    background-color: #fdfdfd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 45px;
    border-left: 5px solid #FFD700;
    color: #333;
}

.page-game-lobby-fishing-games__promo-list li::before {
    content: '🎁';
    position: absolute;
    left: 15px;
    top: 20px;
    font-size: 1.2em;
}

.page-game-lobby-fishing-games__get-started .page-game-lobby-fishing-games__sub-title {
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-lobby-fishing-games__get-started p {
    margin-bottom: 10px;
}

.page-game-lobby-fishing-games__faq-item {
    background-color: #fdfdfd;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-lobby-fishing-games__faq-question {
    font-size: 1.3em;
    color: #1A202C;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-lobby-fishing-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-game-lobby-fishing-games__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-lobby-fishing-games__faq-answer {
    color: #555;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.page-game-lobby-fishing-games__faq-answer.active {
    display: block;
}

.page-game-lobby-fishing-games__cta-section {
    background: linear-gradient(135deg, #FFD700, #e6c200); /* Gold gradient background */
    color: #1A202C; /* Dark text on gold */
    text-align: center;
    padding: 80px 0;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-game-lobby-fishing-games__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #1A202C;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-game-lobby-fishing-games__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.page-game-lobby-fishing-games__cta-button {
    display: inline-block;
    background-color: #1A202C; /* Dark button */
    color: #FFD700; /* Gold text on dark */
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 10px;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    border: 2px solid #1A202C;
}

.page-game-lobby-fishing-games__cta-button:hover {
    background-color: #3a475e;
    transform: translateY(-3px);
    color: #FFD700;
}

.page-game-lobby-fishing-games__cta-button--outline {
    background-color: transparent;
    color: #1A202C;
    border: 2px solid #1A202C;
}

.page-game-lobby-fishing-games__cta-button--outline:hover {
    background-color: #1A202C;
    color: #FFD700;
    border-color: #1A202C;
}

/* Responsive Design */
@media (max-width: 992px) {
    .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__content-grid {
        grid-template-columns: 1fr;
    }
    .page-game-lobby-fishing-games__content-grid--reverse {
        grid-template-columns: 1fr;
    }
    .page-game-lobby-fishing-games__image-wrapper {
        order: -1; /* Image appears above text on smaller screens */
        margin-bottom: 30px;
    }
    .page-game-lobby-fishing-games__game-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-game-lobby-fishing-games__promo-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-game-lobby-fishing-games__hero-section {
        padding: 80px 0;
    }
    .page-game-lobby-fishing-games__hero-title {
        font-size: 2em;
    }
    .page-game-lobby-fishing-games__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-lobby-fishing-games__section {
        padding: 40px 0;
    }
    .page-game-lobby-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-game-lobby-fishing-games__sub-title {
        font-size: 1.5em;
    }
    .page-game-lobby-fishing-games__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-game-lobby-fishing-games__cta-title {
        font-size: 2em;
    }
    .page-game-lobby-fishing-games__cta-description {
        font-size: 1em;
    }
    .page-game-lobby-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-lobby-fishing-games__hero-title {
        font-size: 1.8em;
    }
    .page-game-lobby-fishing-games__hero-subtitle {
        font-size: 1em;
    }
    .page-game-lobby-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-game-lobby-fishing-games__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-lobby-fishing-games__container {
        padding: 0 15px;
    }
    .page-game-lobby-fishing-games__cta-button {
        display: block;
        margin: 10px auto;
    }
}