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

/* Base styles for the page content wrapper */
.page-game-lobby-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text on dark background */
    background-color: #1A1A2E; /* Main dark background */
    line-height: 1.6;
    overflow-x: hidden;
}

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

.page-game-lobby-fishing-games__section-title {
    color: #E9B824; /* Accent color for titles */
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 40px;
    padding-top: 40px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-game-lobby-fishing-games__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E9B824;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-game-lobby-fishing-games__sub-title {
    color: #E9B824;
    font-size: 1.8em;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
}

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

.page-game-lobby-fishing-games__description--centered {
    text-align: center;
    margin-top: 30px;
}

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

.page-game-lobby-fishing-games__btn--primary {
    background-color: #E9B824;
    color: #1A1A2E; /* Dark text on gold button */
}

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

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

.page-game-lobby-fishing-games__btn--secondary:hover {
    background-color: #E9B824;
    color: #1A1A2E;
    transform: translateY(-2px);
}

.page-game-lobby-fishing-games__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-game-lobby-fishing-games__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

/* Hero Section */
.page-game-lobby-fishing-games__hero-section {
    background: linear-gradient(135deg, #1A1A2E, #2d2d4d); /* Subtle gradient for hero */
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-lobby-fishing-games__hero-title {
    font-size: 3.8em;
    color: #E9B824;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-game-lobby-fishing-games__hero-description {
    font-size: 1.3em;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

/* Content Grid for text and image */
.page-game-lobby-fishing-games__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-game-lobby-fishing-games__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-game-lobby-fishing-games__text-content {
    flex: 1;
    min-width: 300px;
    color: #d0d0d0;
}

.page-game-lobby-fishing-games__text-content p {
    margin-bottom: 1em;
    font-size: 1.05em;
}

.page-game-lobby-fishing-games__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-game-lobby-fishing-games__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}