/* style/game-lobby-slots.css */
.page-game-lobby-slots {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-game-lobby-slots__hero-section {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-lobby-slots__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    opacity: 0.2;
    z-index: 1;
}

.page-game-lobby-slots__hero-section .page-game-lobby-slots__container {
    position: relative;
    z-index: 2;
}

.page-game-lobby-slots__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-game-lobby-slots__brand-highlight {
    color: #FFCC00;
}

/* Buttons */
.page-game-lobby-slots__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    margin: 10px;
}

.page-game-lobby-slots__btn--primary {
    background-color: #FFCC00;
    color: #003366;
}

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

.page-game-lobby-slots__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-game-lobby-slots__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-game-lobby-slots__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-game-lobby-slots__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Sections */
.page-game-lobby-slots__section {
    padding: 60px 0;
    text-align: center;
}

.page-game-lobby-slots__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-game-lobby-slots__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #003366;
    font-weight: bold;
}

.page-game-lobby-slots__subsection-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #003366;
    font-weight: bold;
}

.page-game-lobby-slots__text-content {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #555;
}

.page-game-lobby-slots__link-inline {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-game-lobby-slots__link-inline:hover {
    color: #FFCC00;
}

/* Features Grid */
.page-game-lobby-slots__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-game-lobby-slots__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-game-lobby-slots__feature-item:hover {
    transform: translateY(-5px);
}

.page-game-lobby-slots__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-slots__feature-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-lobby-slots__feature-description {
    color: #666;
    font-size: 1em;
}

/* Game Categories */
.page-game-lobby-slots__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-lobby-slots__category-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.page-game-lobby-slots__category-card:hover {
    transform: translateY(-5px);
}

.page-game-lobby-slots__category-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-lobby-slots__category-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-lobby-slots__category-description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.page-game-lobby-slots__game-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-game-lobby-slots__game-list li {
    background-color: #ffffff;
    padding: 15px 25px;
    margin-bottom: 10px;
    border-left: 5px solid #FFCC00;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #333;
    font-size: 1.05em;
}

.page-game-lobby-slots__game-list li strong {
    color: #003366;
}

/* How to Play Steps */
.page-game-lobby-slots__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-slots__steps-list li {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 80px;
}

.page-game-lobby-slots__steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #003366;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-slots__step-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-lobby-slots__steps-list li p {
    color: #555;
    font-size: 1em;
}

.page-game-lobby-slots__cta-bottom {
    margin-top: 50px;
}

/* Tips &amp; Strategy */
.page-game-lobby-slots__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-slots__tips-list li {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 15px;
    border-left: 4px solid #003366;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
}

.page-game-lobby-slots__tip-title {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-lobby-slots__tips-list li p {
    color: #555;
    font-size: 1em;
}

.page-game-lobby-slots__strategy-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Promotions */
.page-game-lobby-slots__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-game-lobby-slots__promo-list li {
    background-color: #fff;
    padding: 18px 25px;
    margin-bottom: 12px;
    border-left: 5px solid #FFCC00;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #333;
    font-size: 1.05em;
}

.page-game-lobby-slots__promo-list li strong {
    color: #003366;
}

/* App Download */
.page-game-lobby-slots__app-download {
    background-color: #003366;
    color: #ffffff;
}

.page-game-lobby-slots__app-download .page-game-lobby-slots__section-title {
    color: #FFCC00;
}

.page-game-lobby-slots__app-download .page-game-lobby-slots__text-content {
    color: #e0e0e0;
}

.page-game-lobby-slots__download-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-game-lobby-slots__download-item {
    background-color: #004488;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
}

.page-game-lobby-slots__download-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: invert(1) brightness(1.5);
}

.page-game-lobby-slots__download-title {
    font-size: 1.8em;
    color: #FFCC00;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-lobby-slots__download-description {
    color: #c0c0c0;
    font-size: 1em;
}

.page-game-lobby-slots__app-mockup-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FAQ */
.page-game-lobby-slots__faq {
    text-align: left;
}

.page-game-lobby-slots__faq-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
}

.page-game-lobby-slots__faq-question {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-weight: bold;
}

.page-game-lobby-slots__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFCC00;
}

.page-game-lobby-slots__faq-question.active::after {
    content: '-';
}

.page-game-lobby-slots__faq-answer {
    color: #555;
    font-size: 1em;
    margin-top: 10px;
    display: none;
    padding-left: 10px;
    border-left: 3px solid #FFCC00;
}

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

/* Final CTA */
.page-game-lobby-slots__final-cta {
    background-color: #003366;
    color: #ffffff;
    padding: 80px 0;
}

.page-game-lobby-slots__final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-game-lobby-slots__final-cta .page-game-lobby-slots__section-title {
    color: #FFCC00;
}

.page-game-lobby-slots__final-cta .page-game-lobby-slots__text-content {
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-game-lobby-slots__final-cta-icon {
    width: 100px;
    height: auto;
    margin-bottom: 30px;
    filter: invert(1) brightness(1.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-lobby-slots__hero-title {
        font-size: 2.8em;
    }
    .page-game-lobby-slots__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-lobby-slots__section-title {
        font-size: 2em;
    }
    .page-game-lobby-slots__subsection-title {
        font-size: 1.6em;
    }
}