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

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

.page-newbie-guide-hero {
    background: linear-gradient(135deg, #FFD700 0%, #1E90FF 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-newbie-guide-hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #eee;
}

.page-newbie-guide-section {
    background-color: #fff;
    padding: 60px 0;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-newbie-guide-section:nth-of-type(odd) {
    background-color: #fefefe;
}

.page-newbie-guide-section h2 {
    font-size: 2.5em;
    color: #1E90FF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-newbie-guide-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-newbie-guide-section h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #1E90FF;
    padding-left: 15px;
}

.page-newbie-guide-section p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
}

.page-newbie-guide-section ul,
.page-newbie-guide-section ol {
    margin-bottom: 20px;
    padding-left: 25px;
    color: #555;
}

.page-newbie-guide-section ul li,
.page-newbie-guide-section ol li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-newbie-guide-section ol li strong {
    color: #1E90FF;
}

.page-newbie-guide-section ul li::before {
    content: '•';
    color: #FFD700;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.page-newbie-guide-cta {
    text-align: center;
    margin: 40px 0;
}

.page-newbie-guide-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-btn-primary {
    background-color: #FFD700;
    color: #1E90FF;
    border: 2px solid #FFD700;
}

.page-newbie-guide-btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #136aae;
    transform: translateY(-3px);
}

.page-newbie-guide-btn-secondary {
    background-color: #1E90FF;
    color: #fff;
    border: 2px solid #1E90FF;
}

.page-newbie-guide-btn-secondary:hover {
    background-color: #136aae;
    border-color: #136aae;
    color: #FFD700;
    transform: translateY(-3px);
}

.page-newbie-guide-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-newbie-guide-faq {
    margin-top: 30px;
    border-top: 1px solid #eee;
}

.page-newbie-guide-faq dt {
    font-weight: bold;
    font-size: 1.2em;
    color: #1E90FF;
    padding: 15px 0;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    position: relative;
}

.page-newbie-guide-faq dt::after {
    content: '+';
    position: absolute;
    right: 10px;
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-newbie-guide-faq dt.active::after {
    content: '-';
    transform: rotate(0deg);
}

.page-newbie-guide-faq dd {
    font-size: 1.1em;
    color: #555;
    padding: 10px 0 20px 20px;
    border-bottom: 1px solid #eee;
    display: none;
}

.page-newbie-guide-cta-final {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

/* Responsive design */
@media (max-width: 992px) {
    .page-newbie-guide-hero h1 {
        font-size: 2.8em;
    }
    .page-newbie-guide-hero p {
        font-size: 1.1em;
    }
    .page-newbie-guide-section h2 {
        font-size: 2em;
    }
    .page-newbie-guide-section h3 {
        font-size: 1.5em;
    }
    .page-newbie-guide-btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-newbie-guide-hero {
        padding: 60px 0;
    }
    .page-newbie-guide-hero h1 {
        font-size: 2.2em;
    }
    .page-newbie-guide-hero p {
        font-size: 1em;
    }
    .page-newbie-guide-section {
        padding: 40px 0;
        margin-top: 20px;
    }
    .page-newbie-guide-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-newbie-guide-section h3 {
        font-size: 1.3em;
    }
    .page-newbie-guide-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-newbie-guide-faq dt {
        font-size: 1.1em;
    }
    .page-newbie-guide-faq dd {
        font-size: 1em;
    }
    .page-newbie-guide-cta-final {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-newbie-guide .container {
        padding: 0 15px;
    }
    .page-newbie-guide-hero h1 {
        font-size: 1.8em;
    }
    .page-newbie-guide-hero p {
        font-size: 0.9em;
    }
    .page-newbie-guide-section h2 {
        font-size: 1.5em;
    }
    .page-newbie-guide-section h3 {
        font-size: 1.2em;
    }
    .page-newbie-guide-btn {
        width: 90%;
        margin: 5px auto;
    }
}