/* style/game-lobby-game-strategies.css */
.page-game-lobby-game-strategies {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light gray for general text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

.page-game-lobby-game-strategies a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-lobby-game-strategies a:hover {
    color: #E5C100; /* Slightly darker gold on hover */
}

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

.page-game-lobby-game-strategies__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%); /* Dark gradient */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-game-lobby-game-strategies__hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.page-game-lobby-game-strategies__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-game-lobby-game-strategies__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
}

.page-game-lobby-game-strategies__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) blur(3px);
}

.page-game-lobby-game-strategies__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-game-lobby-game-strategies__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
}

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

.page-game-lobby-game-strategies__btn--secondary {
    background-color: #3a4a6b; /* Darker blue/gray button */
    color: #FFD700; /* Gold text on dark background */
    border: 1px solid #FFD700;
}

.page-game-lobby-game-strategies__btn--secondary:hover {
    background-color: #4c5d7e;
    transform: translateY(-2px);
}

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

.page-game-lobby-game-strategies__section {
    padding: 60px 0;
    text-align: center;
}

.page-game-lobby-game-strategies__section--dark {
    background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-game-lobby-game-strategies__section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #FFD700; /* Gold for section titles */
}

.page-game-lobby-game-strategies__section h3 {
    font-size: 1.8em;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for sub-titles */
}

.page-game-lobby-game-strategies__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #F0F0F0;
}

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

.page-game-lobby-game-strategies__grid-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-game-lobby-game-strategies__feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

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

.page-game-lobby-game-strategies__list li {
    background-color: #1A202C;
    margin-bottom: 15px;
    padding: 15px 25px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    font-size: 1.1em;
    color: #F0F0F0;
}

.page-game-lobby-game-strategies__list li strong {
    color: #FFD700;
}

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

.page-game-lobby-game-strategies__content-with-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-game-lobby-game-strategies__text-content {
    text-align: left;
    flex: 1;
}

.page-game-lobby-game-strategies__image-wrapper {
    flex: 1;
    max-width: 500px;
}

.page-game-lobby-game-strategies__content-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-game-lobby-game-strategies__faq {
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-game-strategies__faq-item {
    background-color: #1A202C;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
}

.page-game-lobby-game-strategies__faq-item h3 {
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.page-game-lobby-game-strategies__faq-item p {
    color: #F0F0F0;
    margin-bottom: 0;
}

.page-game-lobby-game-strategies__cta-final {
    background: linear-gradient(90deg, #FFD700 0%, #E5C100 100%); /* Gold gradient */
    padding: 80px 0;
    text-align: center;
    color: #1A202C; /* Dark text on gold background */
}

.page-game-lobby-game-strategies__cta-final h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #1A202C;
}

.page-game-lobby-game-strategies__cta-final p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #333;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-game-lobby-game-strategies__hero {
        padding: 150px 0;
    }
    .page-game-lobby-game-strategies__hero h1 {
        font-size: 4.5em;
    }
    .page-game-lobby-game-strategies__hero p {
        font-size: 1.4em;
    }
    .page-game-lobby-game-strategies__content-with-image {
        flex-direction: row;
        text-align: left;
    }
    .page-game-lobby-game-strategies__image-wrapper {
        order: 1;
        margin-left: 40px;
    }
    .page-game-lobby-game-strategies__text-content {
        order: 2;
    }
    .page-game-lobby-game-strategies__cta-final h2 {
        font-size: 3.5em;
    }
}

@media (max-width: 767px) {
    .page-game-lobby-game-strategies__hero {
        padding: 80px 0;
    }
    .page-game-lobby-game-strategies__hero h1 {
        font-size: 2.5em;
    }
    .page-game-lobby-game-strategies__hero p {
        font-size: 1em;
    }
    .page-game-lobby-game-strategies__section h2 {
        font-size: 2em;
    }
    .page-game-lobby-game-strategies__section h3 {
        font-size: 1.5em;
    }
    .page-game-lobby-game-strategies__btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-game-lobby-game-strategies__cta-group {
        flex-direction: column;
    }
    .page-game-lobby-game-strategies__content-with-image {
        flex-direction: column-reverse; /* Image on top for mobile */
    }
    .page-game-lobby-game-strategies__image-wrapper {
        margin-bottom: 20px;
    }
    .page-game-lobby-game-strategies__cta-final h2 {
        font-size: 2em;
    }
    .page-game-lobby-game-strategies__cta-final p {
        font-size: 1em;
    }
}