/* style/index-quick-start-guide.css */

.page-index-quick-start-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for main text on dark background */
    background-color: #0F1A2A; /* Darker background for overall page */
}

.page-index-quick-start-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-quick-start-guide__hero {
    background: linear-gradient(135deg, #1A2A4A 0%, #0F1A2A 100%); /* Dark blue gradient */
    padding: 100px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #FFFFFF; /* White text on dark hero */
}

.page-index-quick-start-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #FFD700; /* Gold for title */
}

.page-index-quick-start-guide__hero-title .highlight {
    color: #FFFFFF;
}

.page-index-quick-start-guide__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-index-quick-start-guide__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-index-quick-start-guide__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1000px;
    opacity: 0.3;
    z-index: 0;
}

.page-index-quick-start-guide__section {
    padding: 60px 0;
    background-color: #1A2A4A; /* Primary dark blue for sections */
    margin-bottom: 20px;
}

.page-index-quick-start-guide__section:nth-of-type(even) {
    background-color: #0F1A2A; /* Alternating darker background */
}

.page-index-quick-start-guide__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index-quick-start-guide__section-title .highlight {
    color: #FFFFFF;
}

.page-index-quick-start-guide__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
    text-align: justify;
}

.page-index-quick-start-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-index-quick-start-guide__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2A4A; /* Dark blue text on gold */
}

.page-index-quick-start-guide__btn--primary:hover {
    background-color: #E5C100; /* Darker gold on hover */
}

.page-index-quick-start-guide__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on transparent */
    border: 2px solid #FFD700;
}

.page-index-quick-start-guide__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2A4A;
}

.page-index-quick-start-guide__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-index-quick-start-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-index-quick-start-guide__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-index-quick-start-guide__step-card {
    background-color: #2A3A5A; /* Slightly lighter dark blue for cards */
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-index-quick-start-guide__step-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for step titles */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-index-quick-start-guide__step-title .step-number {
    background-color: #FFD700;
    color: #1A2A4A;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-index-quick-start-guide__game-list,
.page-index-quick-start-guide__safety-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-index-quick-start-guide__game-list li,
.page-index-quick-start-guide__safety-list li {
    background-color: #2A3A5A;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.page-index-quick-start-guide__game-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-index-quick-start-guide__safety-list li strong {
    color: #FFD700;
}

.page-index-quick-start-guide__section--cta {
    background-color: #FFD700; /* Gold background for final CTA */
    color: #1A2A4A; /* Dark blue text on gold */
    text-align: center;
    padding: 80px 0;
}

.page-index-quick-start-guide__section--cta .page-index-quick-start-guide__section-title {
    color: #1A2A4A;
}

.page-index-quick-start-guide__section--cta .page-index-quick-start-guide__section-title .highlight {
    color: #0F1A2A;
}

.page-index-quick-start-guide__section--cta p {
    color: #1A2A4A;
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-quick-start-guide__hero-title {
        font-size: 2.5em;
    }

    .page-index-quick-start-guide__hero-subtitle {
        font-size: 1em;
    }

    .page-index-quick-start-guide__hero-actions {
        flex-direction: column;
    }

    .page-index-quick-start-guide__btn {
        width: 100%;
        max-width: 300px;
    }

    .page-index-quick-start-guide__section-title {
        font-size: 2em;
    }

    .page-index-quick-start-guide__step-title {
        font-size: 1.5em;
        flex-direction: column;
        gap: 10px;
    }

    .page-index-quick-start-guide__step-title .step-number {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    .page-index-quick-start-guide__game-list,
    .page-index-quick-start-guide__safety-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-index-quick-start-guide__hero {
        padding: 80px 0 30px;
    }

    .page-index-quick-start-guide__hero-title {
        font-size: 2em;
    }

    .page-index-quick-start-guide__section {
        padding: 40px 0;
    }

    .page-index-quick-start-guide__section-title {
        font-size: 1.8em;
    }

    .page-index-quick-start-guide__btn--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}