/* style/beginner-guide-how-to-start.css */
.page-beginner-guide-how-to-start {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    line-height: 1.6;
    background-color: #0A192F; /* Main background color */
}

.page-beginner-guide-how-to-start__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-beginner-guide-how-to-start__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #2a4163 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-beginner-guide-how-to-start__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

.page-beginner-guide-how-to-start__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-beginner-guide-how-to-start__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-beginner-guide-how-to-start__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, transform 0.3s ease;
    white-space: nowrap;
}

.page-beginner-guide-how-to-start__btn--primary {
    background-color: #FFD700; /* Auxiliary color */
    color: #0A192F; /* Dark text on gold button */
    border: 2px solid #FFD700;
}

.page-beginner-guide-how-to-start__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-beginner-guide-how-to-start__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
}

.page-beginner-guide-how-to-start__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-beginner-guide-how-to-start__section-title {
    font-size: 2.8em;
    color: #FFFFFF; /* White for main titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-beginner-guide-how-to-start__section-text {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-beginner-guide-how-to-start__introduction-section,
.page-beginner-guide-how-to-start__guide-section,
.page-beginner-guide-how-to-start__responsible-gaming-section,
.page-beginner-guide-how-to-start__final-cta-section {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-beginner-guide-how-to-start__introduction-section {
    background-color: #122a47;
}

.page-beginner-guide-how-to-start__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-beginner-guide-how-to-start__feature-item {
    background-color: #1a3a5e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-beginner-guide-how-to-start__feature-item:hover {
    transform: translateY(-5px);
}

.page-beginner-guide-how-to-start__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-beginner-guide-how-to-start__feature-item h3 {
    font-size: 1.8em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
}

.page-beginner-guide-how-to-start__feature-item p {
    font-size: 1em;
    color: #c0c0c0;
}

.page-beginner-guide-how-to-start__guide-step {
    background-color: #1a3a5e;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-how-to-start__step-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for step titles */
    margin-bottom: 25px;
    text-align: left;
}

.page-beginner-guide-how-to-start__guide-step p {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 15px;
    text-align: justify;
}

.page-beginner-guide-how-to-start__guide-step ol,
.page-beginner-guide-how-to-start__guide-step ul {
    list-style-type: decimal;
    color: #e0e0e0;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-beginner-guide-how-to-start__guide-step ul {
    list-style-type: disc;
}

.page-beginner-guide-how-to-start__guide-step li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-beginner-guide-how-to-start__guide-step a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-beginner-guide-how-to-start__guide-step a:hover {
    text-decoration: underline;
}

.page-beginner-guide-how-to-start__guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-how-to-start__note {
    background-color: #0A192F;
    color: #FFD700;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    margin-top: 20px;
    font-style: italic;
    font-size: 0.95em;
}

.page-beginner-guide-how-to-start__btn--action {
    margin-top: 20px;
    background-color: #FFD700;
    color: #0A192F;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-beginner-guide-how-to-start__btn--action:hover {
    background-color: #e6c200;
}

.page-beginner-guide-how-to-start__app-download-area {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.page-beginner-guide-how-to-start__qr-code {
    width: 180px;
    height: 180px;
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-how-to-start__responsible-gaming-section {
    background-color: #0A192F;
    padding: 80px 0;
    text-align: center;
}

.page-beginner-guide-how-to-start__responsible-gaming-section ul {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto;
    text-align: left;
}

.page-beginner-guide-how-to-start__responsible-gaming-section li {
    background-color: #1a3a5e;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 1.05em;
    border-left: 4px solid #FFD700;
}

.page-beginner-guide-how-to-start__final-cta-section {
    background-color: #122a47;
    padding: 80px 0;
    text-align: center;
}

.page-beginner-guide-how-to-start__final-cta-section .page-beginner-guide-how-to-start__section-text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide-how-to-start__final-cta-section .page-beginner-guide-how-to-start__hero-cta-group {
    margin-top: 40px;
}

.highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-beginner-guide-how-to-start__hero-title {
        font-size: 2.5em;
    }
    .page-beginner-guide-how-to-start__hero-description {
        font-size: 1em;
    }
    .page-beginner-guide-how-to-start__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-beginner-guide-how-to-start__section-title {
        font-size: 2em;
    }
    .page-beginner-guide-how-to-start__step-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-how-to-start__features-grid {
        grid-template-columns: 1fr;
    }
    .page-beginner-guide-how-to-start__app-download-area {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-how-to-start__hero-title {
        font-size: 2em;
    }
    .page-beginner-guide-how-to-start__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-beginner-guide-how-to-start__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-beginner-guide-how-to-start__section-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-how-to-start__step-title {
        font-size: 1.5em;
    }
    .page-beginner-guide-how-to-start__guide-step {
        padding: 25px;
    }
}