/* style/resources-beginner-guide-f1688.css */

:root {
    --page-primary-color: #0A2239;
    --page-secondary-color: #FFD700;
    --page-text-color-dark: #333;
    --page-text-color-light: #f0f0f0;
    --page-background-light: #f8f8f8;
    --page-background-dark: #071a2b;
    --page-highlight-text-dark: #998100; /* Darker variant of secondary for contrast */
    --page-highlight-text-light: #ffd700;
}

.page-resources-beginner-guide-f1688 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--page-text-color-dark);
    background-color: var(--page-background-light);
    padding: 20px 0;
}

.page-resources-beginner-guide-f1688 .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-beginner-guide-f1688__back-link {
    display: inline-block;
    margin-bottom: 25px;
    color: var(--page-primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-resources-beginner-guide-f1688__back-link:hover {
    color: var(--page-secondary-color);
}

.page-resources-beginner-guide-f1688__title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-resources-beginner-guide-f1688__title .highlight {
    color: var(--page-secondary-color);
}

.page-resources-beginner-guide-f1688__meta {
    text-align: center;
    color: #666;
    font-size: 0.9em;
    margin-bottom: 40px;
}

.page-resources-beginner-guide-f1688__table-of-contents {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-beginner-guide-f1688__toc-title {
    font-size: 1.5em;
    color: var(--page-primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

.page-resources-beginner-guide-f1688__table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-resources-beginner-guide-f1688__table-of-contents ul li {
    margin-bottom: 10px;
}

.page-resources-beginner-guide-f1688__table-of-contents ul li a {
    color: var(--page-primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.page-resources-beginner-guide-f1688__table-of-contents ul li a:hover {
    color: var(--page-secondary-color);
    text-decoration: underline;
}

.page-resources-beginner-guide-f1688__table-of-contents ul ul {
    margin-left: 20px;
    margin-top: 5px;
    border-left: 2px solid var(--page-secondary-color);
    padding-left: 10px;
}

.page-resources-beginner-guide-f1688__article-content section {
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.page-resources-beginner-guide-f1688__article-content section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-resources-beginner-guide-f1688__section-title {
    font-size: 2em;
    color: var(--page-primary-color);
    margin-top: 0;
    margin-bottom: 25px;
    border-left: 5px solid var(--page-secondary-color);
    padding-left: 15px;
    line-height: 1.2;
}

.page-resources-beginner-guide-f1688__section-title .highlight {
    color: var(--page-secondary-color);
}

.page-resources-beginner-guide-f1688__sub-title {
    font-size: 1.4em;
    color: var(--page-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-beginner-guide-f1688__article-content p {
    margin-bottom: 1em;
    font-size: 1.05em;
}

.page-resources-beginner-guide-f1688__article-content strong {
    color: var(--page-primary-color);
}

.page-resources-beginner-guide-f1688__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 1em;
}

.page-resources-beginner-guide-f1688__list li {
    margin-bottom: 8px;
}

.page-resources-beginner-guide-f1688__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-beginner-guide-f1688__btn {
    display: inline-block;
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    text-align: center;
    border: 2px solid var(--page-secondary-color);
}

.page-resources-beginner-guide-f1688__btn:hover {
    background-color: var(--page-primary-color);
    color: var(--page-secondary-color);
    transform: translateY(-2px);
    border-color: var(--page-primary-color);
}

.page-resources-beginner-guide-f1688__btn--primary {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--page-primary-color);
    color: var(--page-secondary-color);
    border-color: var(--page-primary-color);
}

.page-resources-beginner-guide-f1688__btn--primary:hover {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    border-color: var(--page-secondary-color);
}

.page-resources-beginner-guide-f1688__btn--lg {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-beginner-guide-f1688__title {
        font-size: 2em;
    }

    .page-resources-beginner-guide-f1688__section-title {
        font-size: 1.8em;
    }

    .page-resources-beginner-guide-f1688__sub-title {
        font-size: 1.2em;
    }

    .page-resources-beginner-guide-f1688__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-resources-beginner-guide-f1688__btn--lg {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-beginner-guide-f1688__title {
        font-size: 1.8em;
    }

    .page-resources-beginner-guide-f1688__section-title {
        font-size: 1.5em;
    }

    .page-resources-beginner-guide-f1688__table-of-contents {
        padding: 15px;
    }

    .page-resources-beginner-guide-f1688__table-of-contents ul ul {
        margin-left: 10px;
        padding-left: 5px;
    }
}