/* style/beginner-guide-game-rules.css */
.page-beginner-guide-game-rules {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A2E36; /* Main background color */
}

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

.page-beginner-guide-game-rules__hero-section {
    background: linear-gradient(135deg, #0A2E36 0%, #1a4f5c 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-game-rules__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,subtle_pattern]');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-beginner-guide-game-rules__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: #E0B400; /* Accent color for title */
}

.page-beginner-guide-game-rules__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-beginner-guide-game-rules__section-title {
    font-size: 2.5em;
    color: #E0B400; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-beginner-guide-game-rules__intro-section,
.page-beginner-guide-game-rules__game-rules-section,
.page-beginner-guide-game-rules__tips-section,
.page-beginner-guide-game-rules__cta-section {
    padding: 80px 0;
    background-color: #0A2E36; /* Consistent dark background */
}

.page-beginner-guide-game-rules__game-rules-section {
    background-color: #0d3b46; /* Slightly lighter dark for contrast */
}

.page-beginner-guide-game-rules__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.page-beginner-guide-game-rules__text-link {
    color: #E0B400;
    text-decoration: none;
    font-weight: bold;
}

.page-beginner-guide-game-rules__text-link:hover {
    text-decoration: underline;
}

.page-beginner-guide-game-rules__game-article {
    background-color: #1a4f5c; /* Darker accent background for articles */
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-game-rules__game-title {
    font-size: 2em;
    color: #E0B400;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(224, 180, 0, 0.3);
    padding-bottom: 10px;
}

.page-beginner-guide-game-rules__sub-title {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-beginner-guide-game-rules__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

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

.page-beginner-guide-game-rules__list--tips {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.page-beginner-guide-game-rules__list--tips li {
    background-color: #0d3b46;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 5px solid #E0B400;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-game-rules__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
    position: relative;
    z-index: 1;
}

.page-beginner-guide-game-rules__btn--primary {
    background-color: #E0B400;
    color: #0A2E36;
    border: 2px solid #E0B400;
}

.page-beginner-guide-game-rules__btn--primary:hover {
    background-color: #ffc91a;
    color: #000000;
}

.page-beginner-guide-game-rules__btn--secondary {
    background-color: transparent;
    color: #E0B400;
    border: 2px solid #E0B400;
}

.page-beginner-guide-game-rules__btn--secondary:hover {
    background-color: #E0B400;
    color: #0A2E36;
}

.page-beginner-guide-game-rules__cta-buttons {
    text-align: center;
    margin-top: 40px;
}

.page-beginner-guide-game-rules .highlight {
    color: #E0B400;
}

.page-beginner-guide-game-rules .keyword {
    font-weight: bold;
    color: #E0B400;
}

.page-beginner-guide-game-rules__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-beginner-guide-game-rules__image-wrapper--small {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide-game-rules__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Floating Ad */
.page-beginner-guide-game-rules__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 200px;
    background-color: #E0B400;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    z-index: 1000;
    animation: page-beginner-guide-game-rules__float-in 0.5s ease-out forwards;
}

.page-beginner-guide-game-rules__floating-ad a {
    display: block;
    text-decoration: none;
    color: #0A2E36;
    text-align: center;
    padding: 10px;
}

.page-beginner-guide-game-rules__ad-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 5px;
}

.page-beginner-guide-game-rules__ad-text {
    font-weight: bold;
    font-size: 1.1em;
    margin: 0;
}

.page-beginner-guide-game-rules__floating-ad:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

@keyframes page-beginner-guide-game-rules__float-in {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-beginner-guide-game-rules__hero-title {
        font-size: 2.5em;
    }

    .page-beginner-guide-game-rules__hero-subtitle {
        font-size: 1.1em;
    }

    .page-beginner-guide-game-rules__section-title {
        font-size: 2em;
    }

    .page-beginner-guide-game-rules__game-title {
        font-size: 1.8em;
    }

    .page-beginner-guide-game-rules__sub-title {
        font-size: 1.2em;
    }

    .page-beginner-guide-game-rules__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-beginner-guide-game-rules__floating-ad {
        width: 150px;
        bottom: 15px;
        right: 15px;
    }
    .page-beginner-guide-game-rules__ad-text {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-game-rules__hero-title {
        font-size: 2em;
    }

    .page-beginner-guide-game-rules__hero-subtitle {
        font-size: 1em;
    }

    .page-beginner-guide-game-rules__section-title {
        font-size: 1.8em;
    }

    .page-beginner-guide-game-rules__game-title {
        font-size: 1.5em;
    }

    .page-beginner-guide-game-rules__intro-section,
    .page-beginner-guide-game-rules__game-rules-section,
    .page-beginner-guide-game-rules__tips-section,
    .page-beginner-guide-game-rules__cta-section {
        padding: 50px 0;
    }

    .page-beginner-guide-game-rules__game-article {
        padding: 20px;
    }

    .page-beginner-guide-game-rules__cta-buttons .page-beginner-guide-game-rules__btn {
        display: block;
        margin: 10px auto;
    }
    .page-beginner-guide-game-rules__floating-ad {
        width: 120px;
        bottom: 10px;
        right: 10px;
    }
    .page-beginner-guide-game-rules__ad-text {
        font-size: 0.8em;
    }
}