/* style/new-user-guide-game-selection.css */

/* Base styles for the page content wrapper */
.page-new-user-guide-game-selection {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2239; /* Primary dark blue background */
    line-height: 1.6;
    padding-bottom: 60px; /* Space for potential footer */
}

/* Section styling */
.page-new-user-guide-game-selection__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #1a3a55; /* Slightly lighter dark blue for sections */
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-new-user-guide-game-selection__section:last-of-type {
    margin-bottom: 0;
}

/* Titles */
.page-new-user-guide-game-selection__section-title {
    color: #FFD700; /* Gold for main section titles */
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-new-user-guide-game-selection__hero-title {
    color: #FFD700; /* Gold for hero title */
    font-size: 3.5em;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.page-new-user-guide-game-selection__hero-subtitle {
    color: #E0E0E0;
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-new-user-guide-game-selection__game-card-title,
.page-new-user-guide-game-selection__feature-title,
.page-new-user-guide-game-selection__promo-title {
    color: #FFD700; /* Gold for sub-titles */
    font-size: 1.8em;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Paragraphs */
.page-new-user-guide-game-selection p {
    margin-bottom: 15px;
    color: #C0C0C0; /* Lighter gray for paragraphs */
}

/* Links */
.page-new-user-guide-game-selection__text-link {
    color: #FFD700; /* Gold for text links */
    text-decoration: none;
    font-weight: bold;
}

.page-new-user-guide-game-selection__text-link:hover {
    text-decoration: underline;
    color: #FFEA00; /* Slightly brighter gold on hover */
}

/* Buttons */
.page-new-user-guide-game-selection__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    white-space: nowrap; /* Prevent button text from wrapping */
}

.page-new-user-guide-game-selection__btn--primary {
    background-color: #FFD700; /* Gold for primary buttons */
    color: #0A2239; /* Deep blue for text on gold */
    border: 2px solid #FFD700;
}

.page-new-user-guide-game-selection__btn--primary:hover {
    background-color: #FFEA00; /* Slightly brighter gold on hover */
    transform: translateY(-2px);
}

.page-new-user-guide-game-selection__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold for secondary button text */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-new-user-guide-game-selection__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1); /* Subtle gold background on hover */
    transform: translateY(-2px);
}

/* Hero Section */
.page-new-user-guide-game-selection__hero {
    background: linear-gradient(135deg, #0A2239 0%, #1a3a55 100%); /* Gradient background */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-new-user-guide-game-selection__hero-content {
    z-index: 1;
    position: relative;
}

.page-new-user-guide-game-selection__hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-new-user-guide-game-selection__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    z-index: 0;
}

.page-new-user-guide-game-selection__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Game Grid */
.page-new-user-guide-game-selection__game-grid,
.page-new-user-guide-game-selection__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-new-user-guide-game-selection__game-card,
.page-new-user-guide-game-selection__feature-card {
    background-color: #0A2239; /* Deep blue for cards */
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-new-user-guide-game-selection__game-card:hover,
.page-new-user-guide-game-selection__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-new-user-guide-game-selection__game-card img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.page-new-user-guide-game-selection__feature-card .page-new-user-guide-game-selection__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

/* Lists */
.page-new-user-guide-game-selection__list {
    list-style: none; /* Remove default bullet points */
    padding-left: 0;
    margin-bottom: 20px;
}

.page-new-user-guide-game-selection__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #C0C0C0;
}

.page-new-user-guide-game-selection__list li:before {
    content: '★'; /* Custom bullet point */
    color: #FFD700; /* Gold star */
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1.6;
}

/* Promotion Banner */
.page-new-user-guide-game-selection__promo-banner {
    background: linear-gradient(90deg, #1a3a55, #0A2239); /* Gradient for promo banner */
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    flex-wrap: wrap;
}

.page-new-user-guide-game-selection__promo-banner img {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.page-new-user-guide-game-selection__promo-content {
    flex-grow: 1;
    text-align: left;
}

.page-new-user-guide-game-selection__promo-content p {
    margin-bottom: 20px;
    color: #C0C0C0;
}

/* Call to Action Section */
.page-new-user-guide-game-selection__section--cta {
    text-align: center;
    background-color: #0A2239; /* Darker background for CTA */
    padding: 60px 20px;
}

.page-new-user-guide-game-selection__cta-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Image styling */
.page-new-user-guide-game-selection__img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-new-user-guide-game-selection__hero-title {
        font-size: 2.5em;
    }

    .page-new-user-guide-game-selection__hero-subtitle {
        font-size: 1.2em;
    }

    .page-new-user-guide-game-selection__section-title {
        font-size: 2em;
    }

    .page-new-user-guide-game-selection__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-new-user-guide-game-selection__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-new-user-guide-game-selection__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-new-user-guide-game-selection__game-grid,
    .page-new-user-guide-game-selection__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-new-user-guide-game-selection__promo-banner {
        flex-direction: column;
        text-align: center;
    }

    .page-new-user-guide-game-selection__promo-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-new-user-guide-game-selection__hero-title {
        font-size: 2em;
    }

    .page-new-user-guide-game-selection__section-title {
        font-size: 1.8em;
    }

    .page-new-user-guide-game-selection__btn {
        width: 100%;
    }
}