/* style/game-lobby.css */
.page-game-lobby {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for overall dark background */
    background-color: #1a1a2e; /* Dark background to make gold/blue pop */
    line-height: 1.6;
}

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

.page-game-lobby__hero-section {
    background: linear-gradient(135deg, #00BFFF 0%, #0086b3 100%); /* Blue gradient background */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-game-lobby__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.page-game-lobby__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-game-lobby__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
}

.page-game-lobby__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-lobby__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0; /* Light grey text */
}

.page-game-lobby__section {
    padding: 80px 0;
    background-color: #1a1a2e; /* Dark background */
}

.page-game-lobby__section:nth-of-type(even) {
    background-color: #22223b; /* Slightly different dark background for contrast */
}

.page-game-lobby__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold title */
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-game-lobby__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #cccccc; /* Lighter grey for intro text */
}

.page-game-lobby__feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.page-game-lobby__feature-list li {
    background-color: #22223b; /* Dark card background */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    color: #e0e0e0; /* Light grey text */
    display: flex;
    align-items: center;
}

.page-game-lobby__icon {
    color: #00BFFF; /* Blue icon */
    font-size: 1.5em;
    margin-right: 15px;
}

.page-game-lobby__game-categories {
    background-color: #1a1a2e;
}

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

.page-game-lobby__category-card {
    background-color: #22223b; /* Dark card background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby__category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-game-lobby__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 5px solid #FFD700; /* Gold border */
    margin-bottom: 20px;
}

.page-game-lobby__category-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold title */
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-game-lobby__category-description {
    font-size: 1em;
    color: #cccccc; /* Lighter grey text */
    padding: 0 20px;
    margin-bottom: 25px;
}

.page-game-lobby__mobile-app-promo {
    background: linear-gradient(135deg, #22223b 0%, #00BFFF 100%); /* Blue gradient background */
    color: #fff;
}

.page-game-lobby__mobile-app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
}

.page-game-lobby__text-content {
    max-width: 700px;
}

.page-game-lobby__mobile-app-promo .page-game-lobby__section-title {
    color: #FFD700; /* Gold title */
}

.page-game-lobby__mobile-app-promo .page-game-lobby__section-intro {
    color: #e0e0e0; /* Light grey text */
}

.page-game-lobby__mobile-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.page-game-lobby__mobile-image:hover {
    transform: scale(1.02);
}

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

.page-game-lobby__detail-item {
    background-color: #22223b; /* Dark card background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-game-lobby__detail-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold title */
    margin-bottom: 15px;
}

.page-game-lobby__detail-title a {
    color: #FFD700; /* Gold link */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-lobby__detail-title a:hover {
    color: #00BFFF; /* Blue on hover */
}

.page-game-lobby__detail-description {
    font-size: 0.95em;
    color: #cccccc; /* Lighter grey text */
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-game-lobby__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-game-lobby__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #1a1a2e; /* Dark text for contrast */
}

.page-game-lobby__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-game-lobby__btn--secondary {
    background-color: #00BFFF; /* Blue background */
    color: #fff; /* White text for contrast */
    border: 2px solid #00BFFF;
}

.page-game-lobby__btn--secondary:hover {
    background-color: #0099cc; /* Darker blue on hover */
    border-color: #0099cc;
    transform: translateY(-2px);
}

.page-game-lobby__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-game-lobby__cta-bottom {
    background: linear-gradient(45deg, #00BFFF 0%, #FFD700 100%); /* Mixed gradient */
    color: #1a1a2e; /* Dark text */
    text-align: center;
}

.page-game-lobby__cta-bottom .page-game-lobby__section-title,
.page-game-lobby__cta-bottom .page-game-lobby__section-intro {
    color: #1a1a2e; /* Dark text for contrast */
    text-shadow: none;
}

.page-game-lobby__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-game-lobby__copyright-section {
    background-color: #0d0d1a; /* Even darker background for footer area */
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
    color: #888;
}

.page-game-lobby__copyright a {
    color: #FFD700; /* Gold link */
    text-decoration: none;
}

.page-game-lobby__copyright a:hover {
    text-decoration: underline;
}

.page-game-lobby__link--brand {
    color: #FFD700; /* Gold link for brand name */
    text-decoration: none;
    font-weight: bold;
}

.page-game-lobby__link--brand:hover {
    color: #00BFFF;
    text-decoration: underline;
}

.highlight-text {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-lobby__hero-title {
        font-size: 2.8em;
    }
    .page-game-lobby__section-title {
        font-size: 2.2em;
    }
    .page-game-lobby__mobile-app-content {
        flex-direction: column;
    }
    .page-game-lobby__mobile-image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-game-lobby__hero-section {
        padding: 80px 0;
        min-height: 450px;
    }
    .page-game-lobby__hero-title {
        font-size: 2.2em;
    }
    .page-game-lobby__hero-description {
        font-size: 1.1em;
    }
    .page-game-lobby__section {
        padding: 60px 0;
    }
    .page-game-lobby__section-title {
        font-size: 1.8em;
    }
    .page-game-lobby__feature-list,
    .page-game-lobby__category-grid,
    .page-game-lobby__detail-list {
        grid-template-columns: 1fr;
    }
    .page-game-lobby__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-lobby__btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-game-lobby__hero-title {
        font-size: 1.8em;
    }
    .page-game-lobby__hero-description {
        font-size: 1em;
    }
    .page-game-lobby__section-title {
        font-size: 1.5em;
    }
    .page-game-lobby__btn {
        width: 100%;
        font-size: 0.95em;
        padding: 10px 20px;
    }
    .page-game-lobby__category-card,
    .page-game-lobby__detail-item {
        padding: 20px;
    }
    .page-game-lobby__copyright {
        font-size: 0.8em;
    }
}