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

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

.page-beginner-guide__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #302f4a 100%); /* Dark blue to slightly lighter dark blue for depth */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,gaming,lines,dark]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-beginner-guide__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide__hero-description {
    font-size: 1.3em;
    color: #f5e6d0;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.page-beginner-guide__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    padding-top: 60px;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-beginner-guide__highlight {
    color: #FFD700;
}

.page-beginner-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-beginner-guide__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-beginner-guide__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-beginner-guide__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-beginner-guide__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-beginner-guide__btn--download {
    background-color: #FFD700;
    color: #0A192F;
    padding: 12px 25px;
    font-size: 1em;
}

.page-beginner-guide__btn--download:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.2);
}

.page-beginner-guide__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding-bottom: 80px;
}

.page-beginner-guide__info-card {
    background-color: #1a2a47; /* Slightly lighter dark blue for cards */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide__info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide__info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: none; /* Ensure no color filters */
}

.page-beginner-guide__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-beginner-guide__info-card p {
    color: #c0c0c0;
    font-size: 0.95em;
}

.page-beginner-guide__steps-section {
    background-color: #0A192F;
    padding: 80px 0;
}

.page-beginner-guide__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-beginner-guide__step {
    background-color: #1a2a47;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide__step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide__step-number {
    background-color: #FFD700;
    color: #0A192F;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin: -65px auto 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-beginner-guide__step p {
    color: #c0c0c0;
    margin-bottom: 25px;
    font-size: 0.95em;
}

.page-beginner-guide__inline-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-beginner-guide__inline-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-beginner-guide__app-section {
    background-color: #1a2a47;
    padding: 80px 0;
}

.page-beginner-guide__app-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-beginner-guide__app-content {
    flex: 1;
    min-width: 300px;
}

.page-beginner-guide__app-content .page-beginner-guide__section-title {
    text-align: left;
    margin-left: 0;
}

.page-beginner-guide__app-content .page-beginner-guide__section-title::after {
    margin-left: 0;
}

.page-beginner-guide__app-content p {
    color: #c0c0c0;
    margin-bottom: 30px;
    font-size: 1.05em;
}

.page-beginner-guide__app-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-beginner-guide__app-features li {
    color: #f5e6d0;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-beginner-guide__app-features i {
    color: #FFD700;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-beginner-guide__app-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-beginner-guide__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    filter: none; /* Ensure no color filters */
}

.page-beginner-guide__tips-section {
    background-color: #0A192F;
    padding: 80px 0;
}

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

.page-beginner-guide__tip-card {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide__tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide__tip-card .page-beginner-guide__card-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-beginner-guide__tip-card p {
    color: #c0c0c0;
    font-size: 0.95em;
}

.page-beginner-guide__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-beginner-guide__faq-section {
    background-color: #1a2a47;
    padding: 80px 0;
}

.page-beginner-guide__faq-item {
    background-color: #0A192F;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-beginner-guide__faq-answer {
    color: #c0c0c0;
    font-size: 1em;
}

.page-beginner-guide__contact-section {
    background-color: #0A192F;
    padding: 80px 0;
    text-align: center;
}

.page-beginner-guide__contact-description {
    font-size: 1.2em;
    color: #f5e6d0;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide__hero-title {
        font-size: 2.8em;
    }
    .page-beginner-guide__section-title {
        font-size: 2em;
    }
    .page-beginner-guide__info-grid, .page-beginner-guide__step-by-step, .page-beginner-guide__tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-beginner-guide__app-flex {
        flex-direction: column;
    }
    .page-beginner-guide__app-content .page-beginner-guide__section-title {
        text-align: center;
    }
    .page-beginner-guide__app-content .page-beginner-guide__section-title::after {
        margin: 20px auto 0;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide__hero-title {
        font-size: 2.2em;
    }
    .page-beginner-guide__hero-description {
        font-size: 1.1em;
    }
    .page-beginner-guide__section-title {
        font-size: 1.8em;
    }
    .page-beginner-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-beginner-guide__info-card, .page-beginner-guide__step, .page-beginner-guide__tip-card, .page-beginner-guide__faq-item {
        padding: 25px;
    }
    .page-beginner-guide__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        margin: -55px auto 20px;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide__hero-title {
        font-size: 1.8em;
    }
    .page-beginner-guide__hero-description {
        font-size: 1em;
    }
    .page-beginner-guide__section-title {
        font-size: 1.5em;
    }
    .page-beginner-guide__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-beginner-guide__info-grid, .page-beginner-guide__step-by-step, .page-beginner-guide__tips-grid {
        grid-template-columns: 1fr;
    }
    .page-beginner-guide__app-features li {
        font-size: 0.95em;
    }
    .page-beginner-guide__app-features i {
        font-size: 1em;
    }
    .page-beginner-guide__faq-question {
        font-size: 1.1em;
    }
    .page-beginner-guide__faq-answer {
        font-size: 0.9em;
    }
    .page-beginner-guide__contact-description {
        font-size: 1em;
    }
}