/* style/game-lobby-game-categories.css */

.page-game-lobby-game-categories {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0;
    background-color: #001f3f;
    line-height: 1.6;
}

.page-game-lobby-game-categories .highlight {
    color: #ffcc00;
}

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

.page-game-lobby-game-categories__hero {
    background: linear-gradient(135deg, #001f3f 0%, #0a3d62 100%);
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-game-lobby-game-categories__hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-game-lobby-game-categories__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-game-lobby-game-categories__hero-description {
    font-size: 1.2em;
    color: #cccccc;
    margin-bottom: 30px;
}

.page-game-lobby-game-categories__hero-cta,
.page-game-lobby-game-categories__category-cta,
.page-game-lobby-game-categories__section-cta {
    display: inline-block;
    background-color: #ffcc00;
    color: #001f3f;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-lobby-game-categories__hero-cta:hover,
.page-game-lobby-game-categories__category-cta:hover,
.page-game-lobby-game-categories__section-cta:hover {
    background-color: #e6b800; /* Darker gold */
    transform: translateY(-3px);
}

.page-game-lobby-game-categories__hero-image-wrapper {
    width: 100%;
    max-width: 900px;
    margin-top: 40px;
}

.page-game-lobby-game-categories__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-game-categories__section {
    padding: 80px 0;
    background-color: #001f3f;
}

.page-game-lobby-game-categories__section:nth-of-type(even) {
    background-color: #0a2e4d; /* Slightly lighter dark blue for contrast */
}

.page-game-lobby-game-categories__section-title {
    font-size: 2.8em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-lobby-game-categories__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffcc00;
    border-radius: 2px;
}

.page-game-lobby-game-categories__section-text {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-game-lobby-game-categories__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-game-categories__image-center {
    display: block;
    margin: 50px auto 0 auto;
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-game-lobby-game-categories__category-card {
    background-color: #0a2e4d; /* Darker blue for card background */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-lobby-game-categories__category-card:hover {
    transform: translateY(-10px);
    background-color: #1a4f7a;
}

.page-game-lobby-game-categories__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-game-categories__category-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-game-lobby-game-categories__category-description {
    font-size: 1em;
    color: #b0b0b0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-game-lobby-game-categories__benefit-list {
    list-style: none;
    padding: 0;
    margin: 50px auto;
    max-width: 800px;
    text-align: left;
}

.page-game-lobby-game-categories__benefit-list li {
    background-color: #0a2e4d;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-game-categories__benefit-list li strong {
    color: #ffcc00;
}

.page-game-lobby-game-categories__benefit-list li i.icon-check {
    color: #ffcc00;
    font-size: 1.5em;
    margin-right: 15px;
    /* Basic icon style, replace with actual icon font if available */
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffcc00"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.page-game-lobby-game-categories__steps-list {
    list-style: none;
    padding: 0;
    margin: 50px auto;
    max-width: 900px;
    text-align: left;
    counter-reset: step-counter;
}

.page-game-lobby-game-categories__steps-list li {
    background-color: #0a2e4d;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    font-size: 1.1em;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 70px;
}

.page-game-lobby-game-categories__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffcc00;
    color: #001f3f;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4em;
}

.page-game-lobby-game-categories__steps-list li strong {
    color: #ffcc00;
}

.page-game-lobby-game-categories__app-download .page-game-lobby-game-categories__section-text {
    margin-bottom: 30px;
}

.page-game-lobby-game-categories__conclusion .page-game-lobby-game-categories__section-text {
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-game-lobby-game-categories__hero-title {
        font-size: 2.8em;
    }
    .page-game-lobby-game-categories__section-title {
        font-size: 2.2em;
    }
    .page-game-lobby-game-categories__category-card {
        padding: 25px;
    }
    .page-game-lobby-game-categories__category-title {
        font-size: 1.6em;
    }
    .page-game-lobby-game-categories__category-description {
        font-size: 0.95em;
    }
}

@media (max-width: 768px) {
    .page-game-lobby-game-categories__hero {
        padding: 80px 0;
    }
    .page-game-lobby-game-categories__hero-title {
        font-size: 2.2em;
    }
    .page-game-lobby-game-categories__hero-description {
        font-size: 1em;
    }
    .page-game-lobby-game-categories__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-lobby-game-categories__section {
        padding: 60px 0;
    }
    .page-game-lobby-game-categories__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-game-lobby-game-categories__section-text {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-game-lobby-game-categories__category-grid {
        grid-template-columns: 1fr;
    }
    .page-game-lobby-game-categories__category-card {
        padding: 20px;
    }
    .page-game-lobby-game-categories__category-image {
        height: 180px;
    }
    .page-game-lobby-game-categories__category-title {
        font-size: 1.5em;
    }
    .page-game-lobby-game-categories__benefit-list li,
    .page-game-lobby-game-categories__steps-list li {
        font-size: 1em;
        padding: 18px 20px 18px 60px;
    }
    .page-game-lobby-game-categories__steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-lobby-game-categories__hero {
        padding: 60px 0;
    }
    .page-game-lobby-game-categories__hero-title {
        font-size: 1.8em;
    }
    .page-game-lobby-game-categories__hero-description {
        font-size: 0.9em;
    }
    .page-game-lobby-game-categories__section-title {
        font-size: 1.5em;
    }
    .page-game-lobby-game-categories__section-text {
        font-size: 0.9em;
    }
    .page-game-lobby-game-categories__hero-cta,
    .page-game-lobby-game-categories__category-cta,
    .page-game-lobby-game-categories__section-cta {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-game-lobby-game-categories__category-image {
        height: 150px;
    }
    .page-game-lobby-game-categories__category-title {
        font-size: 1.3em;
    }
    .page-game-lobby-game-categories__benefit-list li,
    .page-game-lobby-game-categories__steps-list li {
        padding: 15px 15px 15px 50px;
    }
    .page-game-lobby-game-categories__steps-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
        left: 10px;
    }
}