:root {
    --page-beginner-guide-primary-color: #0A192F;
    --page-beginner-guide-accent-color: #FFD700;
    --page-beginner-guide-text-light: #F8F9FA;
    --page-beginner-guide-text-dark: #212529;
    --page-beginner-guide-bg-dark: #0A192F;
    --page-beginner-guide-bg-light: #E9ECEF;
    --page-beginner-guide-border-color: #495057;
}

.page-beginner-guide {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--page-beginner-guide-text-dark);
    background-color: var(--page-beginner-guide-bg-light);
}

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

.page-beginner-guide__hero {
    background: linear-gradient(135deg, var(--page-beginner-guide-primary-color) 0%, #2c3e50 100%);
    color: var(--page-beginner-guide-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-beginner-guide__hero > .page-beginner-guide__container {
    position: relative;
    z-index: 1;
}

.page-beginner-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--page-beginner-guide-accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-beginner-guide-text-light);
}

.page-beginner-guide__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-beginner-guide-border-color);
}

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

.page-beginner-guide__section-title {
    font-size: 2.5em;
    color: var(--page-beginner-guide-primary-color);
    text-align: center;
    margin-bottom: 50px;
    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: var(--page-beginner-guide-accent-color);
    border-radius: 2px;
}

.page-beginner-guide__sub-title {
    font-size: 1.8em;
    color: var(--page-beginner-guide-primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-beginner-guide__text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--page-beginner-guide-text-dark);
}

.page-beginner-guide__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--page-beginner-guide-text-dark);
}

.page-beginner-guide__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-beginner-guide__link {
    color: var(--page-beginner-guide-primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-beginner-guide__link:hover {
    text-decoration: underline;
    color: var(--page-beginner-guide-accent-color);
}

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

.page-beginner-guide__btn--primary {
    background-color: var(--page-beginner-guide-accent-color);
    color: var(--page-beginner-guide-primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    margin-top: 20px;
}

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

.page-beginner-guide__btn--secondary {
    background-color: var(--page-beginner-guide-primary-color);
    color: var(--page-beginner-guide-text-light);
    border: 2px solid var(--page-beginner-guide-accent-color);
    margin-left: 15px;
}

.page-beginner-guide__btn--secondary:hover {
    background-color: #1a2a40;
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-beginner-guide__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-beginner-guide__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-beginner-guide__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.page-beginner-guide__content-block--reverse {
    flex-direction: row-reverse;
}

.page-beginner-guide__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-beginner-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.page-beginner-guide__image:hover {
    transform: scale(1.02);
}

.page-beginner-guide__text-content {
    flex: 2;
}

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

.page-beginner-guide__detail-card {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide__detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide__card-title {
    font-size: 1.5em;
    color: var(--page-beginner-guide-primary-color);
    margin-bottom: 15px;
}

.page-beginner-guide__card-title a {
    text-decoration: none;
    color: inherit;
}

.page-beginner-guide__card-title a:hover {
    color: var(--page-beginner-guide-accent-color);
}

.page-beginner-guide__card-description {
    font-size: 1em;
    color: var(--page-beginner-guide-text-dark);
    margin-bottom: 25px;
    min-height: 60px; /* Ensure consistent height */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-beginner-guide__cta {
    background-color: var(--page-beginner-guide-primary-color);
    color: var(--page-beginner-guide-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-beginner-guide__cta-title {
    font-size: 2.8em;
    color: var(--page-beginner-guide-accent-color);
    margin-bottom: 25px;
}

.page-beginner-guide__cta-text {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--page-beginner-guide-text-light);
}

.page-beginner-guide__responsible-gaming {
    margin-top: 30px;
    font-size: 0.9em;
    opacity: 0.8;
    color: var(--page-beginner-guide-text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide__hero-title {
        font-size: 2.8em;
    }
    .page-beginner-guide__hero-subtitle {
        font-size: 1.2em;
    }
    .page-beginner-guide__section-title {
        font-size: 2em;
    }
    .page-beginner-guide__sub-title {
        font-size: 1.6em;
    }
    .page-beginner-guide__content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-beginner-guide__content-block--reverse {
        flex-direction: column;
    }
    .page-beginner-guide__image-wrapper {
        margin-bottom: 30px;
    }
    .page-beginner-guide__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-beginner-guide__cta-title {
        font-size: 2.2em;
    }
    .page-beginner-guide__cta-text {
        font-size: 1.1em;
    }
}

@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: 1em;
    }
    .page-beginner-guide__section {
        padding: 40px 0;
    }
    .page-beginner-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-beginner-guide__sub-title {
        font-size: 1.4em;
    }
    .page-beginner-guide__text,
    .page-beginner-guide__list li {
        font-size: 0.95em;
    }
    .page-beginner-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-beginner-guide__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-beginner-guide__detail-grid {
        grid-template-columns: 1fr;
    }
    .page-beginner-guide__cta {
        padding: 60px 0;
    }
    .page-beginner-guide__cta-title {
        font-size: 1.8em;
    }
    .page-beginner-guide__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide__hero-title {
        font-size: 1.8em;
    }
    .page-beginner-guide__hero-subtitle {
        font-size: 0.9em;
    }
    .page-beginner-guide__section-title {
        font-size: 1.5em;
    }
    .page-beginner-guide__sub-title {
        font-size: 1.2em;
    }
    .page-beginner-guide__btn {
        width: 100%;
        margin-left: 0 !important;
        margin-top: 10px;
    }
    .page-beginner-guide__card-title {
        font-size: 1.3em;
    }
    .page-beginner-guide__card-description {
        font-size: 0.9em;
    }
    .page-beginner-guide__cta-title {
        font-size: 1.5em;
    }
}