/* style/beginner-guide-common-terms.css */

.page-beginner-guide-common-terms {
    font-family: 'Arial', sans-serif;
    color: #E2E8F0; /* Light gray for text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

.page-beginner-guide-common-terms__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-beginner-guide-common-terms__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a0e0e 100%); /* Dark gradient with a hint of red */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-common-terms__hero-title {
    font-size: 3.5em;
    color: #E53E3E; /* Auxiliary red for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-common-terms__hero-subtitle {
    font-size: 1.3em;
    color: #CBD5E0; /* Lighter gray for subtitle */
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-beginner-guide-common-terms__cta-button {
    display: inline-block;
    background-color: #E53E3E; /* Red button */
    color: #FFFFFF; /* White text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-beginner-guide-common-terms__cta-button:hover {
    background-color: #C53030; /* Darker red on hover */
    transform: translateY(-2px);
}

.page-beginner-guide-common-terms__content-section {
    padding: 60px 0;
}

.page-beginner-guide-common-terms__introduction {
    margin-bottom: 50px;
    text-align: center;
}

.page-beginner-guide-common-terms__introduction p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #CBD5E0;
}

.page-beginner-guide-common-terms__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-common-terms__article {
    background-color: #2D3748; /* Slightly lighter dark background for articles */
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-common-terms__section-title {
    font-size: 2.2em;
    color: #E53E3E; /* Red for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-beginner-guide-common-terms__article p {
    margin-bottom: 15px;
    color: #E2E8F0;
}

.page-beginner-guide-common-terms__term-list {
    list-style: none;
    padding: 0;
}

.page-beginner-guide-common-terms__term-list dt {
    font-size: 1.3em;
    color: #F6AD55; /* Gold-like color for terms */
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: bold;
    border-bottom: 1px solid rgba(246, 173, 85, 0.3);
    padding-bottom: 5px;
}

.page-beginner-guide-common-terms__term-list dd {
    font-size: 1.1em;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #CBD5E0;
}

.page-beginner-guide-common-terms__list {
    list-style: disc inside;
    margin-left: 20px;
    color: #E2E8F0;
}

.page-beginner-guide-common-terms__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-beginner-guide-common-terms__cta-banner {
    background-color: #E53E3E; /* Red background for CTA banner */
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-common-terms__cta-title {
    font-size: 2.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-beginner-guide-common-terms__cta-description {
    font-size: 1.2em;
    color: #F7FAFC; /* Off-white for description */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide-common-terms__cta-button--secondary {
    background-color: #F6AD55; /* Gold-like color for secondary button */
    margin-left: 20px;
}

.page-beginner-guide-common-terms__cta-button--secondary:hover {
    background-color: #D69E2E; /* Darker gold on hover */
}

.page-beginner-guide-common-terms .highlight {
    color: #F6AD55; /* Gold-like highlight for keywords */
}

/* Floating CTA for promotion */
.page-beginner-guide-common-terms__floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.page-beginner-guide-common-terms__floating-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #E53E3E;
    color: #FFFFFF;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 0.9em;
    font-weight: bold;
    line-height: 1.2;
}

.page-beginner-guide-common-terms__floating-button:hover {
    background-color: #C53030;
    transform: scale(1.05);
}

.page-beginner-guide-common-terms__floating-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-beginner-guide-common-terms__hero-title {
        font-size: 2.5em;
    }

    .page-beginner-guide-common-terms__hero-subtitle,
    .page-beginner-guide-common-terms__introduction p,
    .page-beginner-guide-common-terms__article p,
    .page-beginner-guide-common-terms__list li,
    .page-beginner-guide-common-terms__term-list dd {
        font-size: 1em;
    }

    .page-beginner-guide-common-terms__section-title {
        font-size: 1.8em;
    }

    .page-beginner-guide-common-terms__term-list dt {
        font-size: 1.1em;
    }

    .page-beginner-guide-common-terms__cta-banner {
        padding: 30px;
    }

    .page-beginner-guide-common-terms__cta-title {
        font-size: 1.8em;
    }

    .page-beginner-guide-common-terms__cta-description {
        font-size: 1em;
    }

    .page-beginner-guide-common-terms__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-beginner-guide-common-terms__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-beginner-guide-common-terms__floating-cta {
        bottom: 20px;
        right: 20px;
        width: 70px;
        height: 70px;
    }

    .page-beginner-guide-common-terms__floating-button {
        width: 70px;
        height: 70px;
        font-size: 0.8em;
    }

    .page-beginner-guide-common-terms__floating-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-common-terms__hero-title {
        font-size: 2em;
    }

    .page-beginner-guide-common-terms__hero-subtitle {
        font-size: 0.9em;
    }

    .page-beginner-guide-common-terms__article {
        padding: 20px;
    }

    .page-beginner-guide-common-terms__section-title {
        font-size: 1.5em;
    }

    .page-beginner-guide-common-terms__cta-button {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .page-beginner-guide-common-terms__cta-button--secondary {
        margin-top: 0;
    }

    .page-beginner-guide-common-terms__floating-cta {
        bottom: 15px;
        right: 15px;
        width: 60px;
        height: 60px;
    }

    .page-beginner-guide-common-terms__floating-button {
        width: 60px;
        height: 60px;
        font-size: 0.7em;
    }

    .page-beginner-guide-common-terms__floating-icon {
        width: 20px;
        height: 20px;
    }
}