/* style/beginner-guide-game-rules-basics.css */

.page-beginner-guide-game-rules-basics {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark backgrounds */
    background-color: #000080; /* Dark blue background */
    line-height: 1.6;
    padding-bottom: 50px; /* Add some padding at the bottom for spacing */
}

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

/* Hero Section */
.page-beginner-guide-game-rules-basics__hero {
    background: linear-gradient(135deg, #000080 0%, #000060 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #FFD700; /* Gold text for hero */
    border-bottom: 5px solid #FFD700;
}

.page-beginner-guide-game-rules-basics__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-beginner-guide-game-rules-basics__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F0F0F0; /* Light white for subtitle */
}

.page-beginner-guide-game-rules-basics__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-beginner-guide-game-rules-basics__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2); /* Subtle gold separator */
}

.page-beginner-guide-game-rules-basics__section:last-of-type {
    border-bottom: none;
}

.page-beginner-guide-game-rules-basics__heading {
    font-size: 2.5em;
    color: #FFD700; /* Gold heading */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.page-beginner-guide-game-rules-basics__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0; /* Light gray text */
}

.page-beginner-guide-game-rules-basics__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0; /* Light gray list items */
}