/* style/newbie-guide.css */
.page-newbie-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
}

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

.page-newbie-guide__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #1A3E8A 100%); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-newbie-guide__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(227, 181, 5, 0.2) 0%, transparent 70%);
    opacity: 0.8;
    z-index: 0;
}

.page-newbie-guide__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at bottom right, rgba(227, 181, 5, 0.2) 0%, transparent 70%);
    opacity: 0.8;
    z-index: 0;
}

.page-newbie-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E3B505; /* Gold for title */
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-newbie-guide__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-newbie-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, transform 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.page-newbie-guide__btn--primary {
    background-color: #E3B505; /* Gold button */
    color: #0A2463; /* Dark blue text */
}

.page-newbie-guide__btn--primary:hover {
    background-color: #f5db9c; /* Lighter gold on hover */
    transform: translateY(-3px);
}

.page-newbie-guide__btn--secondary {
    background-color: #0A2463; /* Dark blue button */
    color: #E3B505; /* Gold text */
    border: 2px solid #E3B505;
}

.page-newbie-guide__btn--secondary:hover {
    background-color: #1A3E8A; /* Slightly lighter dark blue */
    transform: translateY(-3px);
}

.page-newbie-guide__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-newbie-guide__section:last-of-type {
    border-bottom: none;
}

.page-newbie-guide__section--intro {
    background-color: #f4f7f6;
}

.page-newbie-guide__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Dark blue title */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-newbie-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E3B505; /* Gold underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-newbie-guide__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-newbie-guide__image-wrapper {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-newbie-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-newbie-guide__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-newbie-guide__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-newbie-guide__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-newbie-guide__card-title {
    font-size: 1.8em;
    color: #0A2463; /* Dark blue title */
    margin-bottom: 15px;
}

.page-newbie-guide__card-title a {
    color: #0A2463;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-newbie-guide__card-title a:hover {
    color: #E3B505; /* Gold on hover */
}

.page-newbie-guide__card p {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.page-newbie-guide__card .page-newbie-guide__btn {
    padding: 10px 20px;
    font-size: 0.95em;
    background-color: #E3B505;
    color: #0A2463;
}

.page-newbie-guide__card .page-newbie-guide__btn:hover {
    background-color: #f5db9c;
}

.page-newbie-guide__detail-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.page-newbie-guide__detail-item {
    background-color: #f9f9f9;
    border-left: 5px solid #E3B505;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-newbie-guide__detail-item-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-newbie-guide__detail-item-title a {
    color: #0A2463;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-newbie-guide__detail-item-title a:hover {
    color: #E3B505;
}

.page-newbie-guide__detail-item-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-newbie-guide__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-newbie-guide__list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 4px solid #E3B505; /* Gold accent */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333;
}

.page-newbie-guide__list li strong {
    color: #0A2463;
}

.page-newbie-guide__section--cta {
    background: linear-gradient(135deg, #0A2463, #3A5B9C);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-newbie-guide__section--cta .page-newbie-guide__section-title {
    color: #E3B505;
}

.page-newbie-guide__section--cta .page-newbie-guide__section-title::after {
    background-color: #fff;
}

.page-newbie-guide__section--cta p {
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-newbie-guide__hero-title {
        font-size: 2.8em;
    }
    .page-newbie-guide__hero-subtitle {
        font-size: 1.3em;
    }
    .page-newbie-guide__section-title {
        font-size: 2em;
    }
    .page-newbie-guide__card-title {
        font-size: 1.6em;
    }
    .page-newbie-guide__detail-item-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-newbie-guide__hero-title {
        font-size: 2.2em;
    }
    .page-newbie-guide__hero-subtitle {
        font-size: 1.1em;
    }
    .page-newbie-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-newbie-guide__section {
        padding: 40px 0;
    }
    .page-newbie-guide__section-title {
        font-size: 1.8em;
    }
    .page-newbie-guide__section p {
        font-size: 1em;
    }
    .page-newbie-guide__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-newbie-guide__hero-title {
        font-size: 1.8em;
    }
    .page-newbie-guide__hero-subtitle {
        font-size: 0.9em;
    }
    .page-newbie-guide__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-newbie-guide__section-title {
        font-size: 1.5em;
    }
    .page-newbie-guide__card-title {
        font-size: 1.4em;
    }
    .page-newbie-guide__detail-item-title {
        font-size: 1.2em;
    }
    .page-newbie-guide__detail-item-description {
        font-size: 0.9em;
    }
    .page-newbie-guide__list li {
        font-size: 0.95em;
        padding: 15px 20px;
    }
}