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

.page-beginner-guide .highlight {
    color: #FFD700; /* Gold accent for keywords */
}

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

.page-beginner-guide__hero {
    background: linear-gradient(135deg, #0A2E36 0%, #0A2E36 70%, #FFD700 100%); /* Dark blue to gold gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-beginner-guide__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-beginner-guide__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2E36; /* Dark blue */
    border: 2px solid #FFD700;
}

.page-beginner-guide__btn--primary:hover {
    background-color: #e6c200; /* Darker gold */
    border-color: #e6c200;
}

.page-beginner-guide__btn--secondary {
    background-color: transparent;
    color: #0A2E36; /* Dark blue */
    border: 2px solid #0A2E36;
}

.page-beginner-guide__btn--secondary:hover {
    background-color: #0A2E36; /* Dark blue */
    color: #FFD700; /* Gold */
}

.page-beginner-guide__btn--center {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 300px;
    text-align: center;
}

.page-beginner-guide__section {
    padding: 80px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-beginner-guide__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-beginner-guide__section-title {
    font-size: 2.8em;
    color: #0A2E36; /* Dark blue */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.page-beginner-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold */
    border-radius: 2px;
}

.page-beginner-guide__text-center {
    text-align: center;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
}

/* Why Choose Section */
.page-beginner-guide__why-choose {
    background-color: #f0f0f0;
}

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

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

.page-beginner-guide__feature-card:hover {
    transform: translateY(-10px);
}

.page-beginner-guide__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-beginner-guide__card-title {
    font-size: 1.6em;
    color: #0A2E36;
    margin-bottom: 15px;
}

.page-beginner-guide__feature-card p {
    color: #666;
    font-size: 1em;
}

/* Steps Section */
.page-beginner-guide__steps {
    background-color: #fff;
}

.page-beginner-guide__step-by-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.page-beginner-guide__step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fdfdfd;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.page-beginner-guide__step-card:nth-child(odd) {
    background-color: #f8f8f8;
}

.page-beginner-guide__step-number {
    width: 70px;
    height: 70px;
    background-color: #0A2E36; /* Dark blue */
    color: #FFD700; /* Gold */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide__step-title {
    font-size: 2.2em;
    color: #0A2E36;
    margin-bottom: 20px;
}

.page-beginner-guide__step-card p {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 25px;
    max-width: 700px;
}

.page-beginner-guide__step-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Offers Section */
.page-beginner-guide__offers {
    background-color: #0A2E36;
    color: #fff;
}

.page-beginner-guide__offers .page-beginner-guide__section-title {
    color: #fff;
}

.page-beginner-guide__offers .page-beginner-guide__section-title::after {
    background-color: #FFD700;
}

.page-beginner-guide__offers .page-beginner-guide__text-center {
    color: #e0e0e0;
}

.page-beginner-guide__offer-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-beginner-guide__offer-list li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.2em;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide__list-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

/* App Download Section */
.page-beginner-guide__app-download {
    background-color: #fff;
}

.page-beginner-guide__flex-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.page-beginner-guide__app-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-beginner-guide__app-text p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
}

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

.page-beginner-guide__app-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsible Gaming Section */
.page-beginner-guide__responsible-gaming {
    background-color: #f0f0f0;
}

.page-beginner-guide__responsible-gaming p {
    font-size: 1.1em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 25px auto;
    text-align: center;
}

/* FAQ Section */
.page-beginner-guide__faq {
    background-color: #fff;
}

.page-beginner-guide__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.page-beginner-guide__faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide__faq-question {
    font-size: 1.4em;
    color: #0A2E36;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-beginner-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-beginner-guide__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-beginner-guide__faq-answer {
    font-size: 1.1em;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-beginner-guide__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    opacity: 1;
    padding-top: 15px;
}

/* CTA Section */
.page-beginner-guide__cta {
    background-color: #0A2E36;
    color: #fff;
    text-align: center;
}

.page-beginner-guide__cta .page-beginner-guide__section-title {
    color: #fff;
}

.page-beginner-guide__cta .page-beginner-guide__section-title::after {
    background-color: #FFD700;
}

.page-beginner-guide__cta p {
    color: #e0e0e0;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-beginner-guide__hero-title {
        font-size: 2.8em;
    }
    .page-beginner-guide__section-title {
        font-size: 2.2em;
    }
    .page-beginner-guide__feature-card {
        padding: 25px;
    }
    .page-beginner-guide__card-title {
        font-size: 1.4em;
    }
    .page-beginner-guide__step-title {
        font-size: 1.8em;
    }
    .page-beginner-guide__flex-content {
        flex-direction: column;
    }
    .page-beginner-guide__app-image-wrapper {
        order: -1; /* Image above text on mobile */
        margin-bottom: 30px;
    }
    .page-beginner-guide__app-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide__hero {
        padding: 80px 0;
    }
    .page-beginner-guide__hero-title {
        font-size: 2.2em;
    }
    .page-beginner-guide__hero-subtitle {
        font-size: 1.1em;
    }
    .page-beginner-guide__section {
        padding: 60px 0;
    }
    .page-beginner-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-beginner-guide__grid {
        grid-template-columns: 1fr;
    }
    .page-beginner-guide__step-card {
        padding: 30px;
    }
    .page-beginner-guide__step-number {
        width: 60px;
        height: 60px;
        font-size: 2em;
    }
    .page-beginner-guide__step-title {
        font-size: 1.6em;
    }
    .page-beginner-guide__offer-list li {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-beginner-guide__list-icon {
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }
    .page-beginner-guide__faq-question {
        font-size: 1.2em;
    }
    .page-beginner-guide__faq-answer {
        font-size: 1em;
    }
    .page-beginner-guide__btn--center {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide__hero {
        padding: 60px 0;
    }
    .page-beginner-guide__hero-title {
        font-size: 1.8em;
    }
    .page-beginner-guide__hero-subtitle {
        font-size: 0.9em;
    }
    .page-beginner-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-beginner-guide__section {
        padding: 40px 0;
    }
    .page-beginner-guide__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-beginner-guide__container {
        padding: 0 15px;
    }
    .page-beginner-guide__step-card {
        padding: 20px;
    }
    .page-beginner-guide__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-beginner-guide__step-title {
        font-size: 1.4em;
    }
    .page-beginner-guide__offer-list {
        margin: 30px auto;
    }
    .page-beginner-guide__cta p {
        font-size: 1em;
    }
}