/* style/beginner-guide-game-selection.css */
.page-beginner-guide-game-selection {
    --primary-color: #0A1931;
    --secondary-color: #FFD700;
    --text-light: #F8F8F8;
    --text-dark: #333333;
    --background-dark: #0A1931;
    --background-light: #ffffff;
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Hero Section */
.page-beginner-guide-game-selection .hero-section {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-game-selection .hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.page-beginner-guide-game-selection .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-beginner-guide-game-selection .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-beginner-guide-game-selection .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.page-beginner-guide-game-selection .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Section Styling */
.page-beginner-guide-game-selection .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-beginner-guide-game-selection .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-beginner-guide-game-selection section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-beginner-guide-game-selection section:nth-of-type(even) {
    background-color: #f9f9f9;
}

/* Intro Section */
.page-beginner-guide-game-selection .intro-section p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: var(--text-dark);
}

.page-beginner-guide-game-selection .intro-section strong {
    color: var(--primary-color);
}

/* Why Choose Section */
.page-beginner-guide-game-selection .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-beginner-guide-game-selection .why-choose-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-game-selection .why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-game-selection .why-choose-item .item-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.2)); /* Example for icon styling */
}

.page-beginner-guide-game-selection .why-choose-item h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-beginner-guide-game-selection .why-choose-item p {
    color: var(--text-dark);
}

/* Game Types Section */
.page-beginner-guide-game-selection .game-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-beginner-guide-game-selection .game-type-item {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-game-selection .game-type-item .type-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-beginner-guide-game-selection .game-type-item h3 {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-beginner-guide-game-selection .game-type-item p {
    font-size: 1em;
    color: var(--text-light);
}

/* Selection Factors Section */
.page-beginner-guide-game-selection .selection-factors-section {
    background-color: var(--background-light);
}

.page-beginner-guide-game-selection .factors-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-beginner-guide-game-selection .factors-list li {
    background-color: #ffffff;
    border-left: 5px solid var(--secondary-color);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-game-selection .factors-list li h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-beginner-guide-game-selection .factors-list li p {
    color: var(--text-dark);
}

.page-beginner-guide-game-selection .factors-list li ul {
    list-style: disc inside;
    margin-top: 10px;
    padding-left: 20px;
}

.page-beginner-guide-game-selection .factors-list li ul li {
    background: none;
    border: none;
    box-shadow: none;
    padding: 5px 0;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.page-beginner-guide-game-selection .full-width-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Strategy Section */
.page-beginner-guide-game-selection .strategy-section {
    background-color: #f9f9f9;
}

.page-beginner-guide-game-selection .strategy-list {
    list-style: none;
    counter-reset: strategy-counter;
    padding: 0;
    margin-top: 40px;
}

.page-beginner-guide-game-selection .strategy-list li {
    counter-increment: strategy-counter;
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 25px 25px 25px 70px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.page-beginner-guide-game-selection .strategy-list li::before {
    content: counter(strategy-counter);
    position: absolute;
    left: 25px;
    top: 25px;
    background-color: var(--primary-color);
    color: var(--text-light);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
}

.page-beginner-guide-game-selection .strategy-list li h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-beginner-guide-game-selection .strategy-list li p {
    color: var(--text-dark);
}

/* CTA Section */
.page-beginner-guide-game-selection .cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
}

.page-beginner-guide-game-selection .cta-section .section-title {
    color: var(--secondary-color);
}

.page-beginner-guide-game-selection .cta-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
}

.page-beginner-guide-game-selection .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.page-beginner-guide-game-selection .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-beginner-guide-game-selection .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-beginner-guide-game-selection .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-beginner-guide-game-selection .btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-beginner-guide-game-selection .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide-game-selection .hero-title {
        font-size: 2.5em;
    }
    .page-beginner-guide-game-selection .section-title {
        font-size: 2em;
    }
    .page-beginner-guide-game-selection .why-choose-grid, .page-beginner-guide-game-selection .game-type-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-game-selection .hero-section {
        padding: 60px 0;
    }
    .page-beginner-guide-game-selection .hero-title {
        font-size: 2em;
    }
    .page-beginner-guide-game-selection .hero-description {
        font-size: 1em;
    }
    .page-beginner-guide-game-selection .section-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-game-selection .why-choose-item, .page-beginner-guide-game-selection .game-type-item {
        padding: 20px;
    }
    .page-beginner-guide-game-selection .factors-list li, .page-beginner-guide-game-selection .strategy-list li {
        padding: 20px;
    }
    .page-beginner-guide-game-selection .strategy-list li::before {
        left: 15px;
        top: 20px;
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
    .page-beginner-guide-game-selection .strategy-list li h3 {
        margin-left: 20px; /* Adjust for counter */
    }
    .page-beginner-guide-game-selection .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-beginner-guide-game-selection .btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-game-selection .hero-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-game-selection .section-title {
        font-size: 1.5em;
    }
    .page-beginner-guide-game-selection .container {
        padding: 0 15px;
    }
}