/* style/game-guides.css */
:root {
    --primary-color: #003366;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f7f6;
    --bg-dark: #002244;
    --border-color: #e0e0e0;
}

.page-game-guides {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Hero Section */
.page-game-guides .hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #004488 100%);
    color: var(--text-light);
    text-align: center;
}

.page-game-guides .hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.page-game-guides .hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    object-fit: cover;
}

.page-game-guides .hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides .hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-game-guides .cta-button:hover {
    background: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-game-guides .intro-section {
    padding: 60px 0;
    background-color: var(--text-light);
    text-align: center;
}

.page-game-guides .intro-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.page-game-guides .intro-section p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 15px auto;
    color: var(--text-dark);
}

/* Game Types Section */
.page-game-guides .game-types-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.page-game-guides .game-types-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.page-game-guides .game-types-section > p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--text-dark);
}

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

.page-game-guides .game-card {
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-game-guides .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides .game-card .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-game-guides .game-card h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin: 20px 20px 10px 20px;
}

.page-game-guides .game-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-guides .game-card h3 a:hover {
    color: var(--secondary-color);
}

.page-game-guides .game-card p {
    font-size: 1em;
    color: var(--text-dark);
    padding: 0 20px;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-game-guides .game-card .card-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
    margin: 0 20px 20px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
}

.page-game-guides .game-card .card-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-game-guides .call-to-action {
    margin-top: 60px;
    padding: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-game-guides .call-to-action p {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Advanced Tips Section */
.page-game-guides .advanced-tips-section {
    padding: 60px 0;
    background-color: var(--text-light);
}

.page-game-guides .advanced-tips-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.page-game-guides .advanced-tips-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-game-guides .advanced-tips-section ul li {
    background: var(--bg-light);
    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.08);
    font-size: 1.1em;
    color: var(--text-dark);
    line-height: 1.8;
}

.page-game-guides .advanced-tips-section ul li strong {
    color: var(--primary-color);
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.page-game-guides .advanced-tips-section p {
    font-size: 1.1em;
    margin-top: 30px;
    color: var(--text-dark);
}

/* FAQ Section */
.page-game-guides .faq-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-game-guides .faq-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.page-game-guides .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-game-guides .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--text-light);
}

.page-game-guides .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--text-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-game-guides .faq-question:hover {
    background: #f5f5f5;
}

.page-game-guides .faq-question h3 {
    font-size: 1.3em;
    color: var(--primary-color);
    margin: 0;
}

.page-game-guides .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-game-guides .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.page-game-guides .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #fdfdfd;
}

.page-game-guides .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding: 15px 25px 25px 25px;
}

.page-game-guides .faq-answer p {
    font-size: 1em;
    color: var(--text-dark);
    margin: 0;
}

.page-game-guides .faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-game-guides .faq-answer a:hover {
    color: var(--secondary-color);
}

/* Conclusion Section */
.page-game-guides .conclusion-section {
    padding: 60px 0 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.page-game-guides .conclusion-section h2 {
    font-size: 2.8em;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-game-guides .conclusion-section p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

.page-game-guides .conclusion-section .cta-button {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.page-game-guides .conclusion-section .cta-button:hover {
    background: #e6c200;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-guides .hero-content h1 {
        font-size: 2.8em;
    }
    .page-game-guides .intro-section h2,
    .page-game-guides .game-types-section h2,
    .page-game-guides .advanced-tips-section h2,
    .page-game-guides .faq-section h2 {
        font-size: 2em;
    }
    .page-game-guides .game-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-guides .hero-section {
        padding: 60px 0;
    }
    .page-game-guides .hero-content h1 {
        font-size: 2.2em;
    }
    .page-game-guides .hero-content p {
        font-size: 1em;
    }
    .page-game-guides .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-game-guides .intro-section,
    .page-game-guides .game-types-section,
    .page-game-guides .advanced-tips-section,
    .page-game-guides .faq-section,
    .page-game-guides .conclusion-section {
        padding: 40px 0;
    }
    .page-game-guides .game-card h3 {
        font-size: 1.4em;
    }
    .page-game-guides .game-card p {
        font-size: 0.95em;
    }
    .page-game-guides .faq-question h3 {
        font-size: 1.1em;
    }
    .page-game-guides .faq-question {
        padding: 15px 20px;
    }
    .page-game-guides .faq-answer {
        padding: 0 20px;
    }
    .page-game-guides .faq-item.active .faq-answer {
        padding: 15px 20px 20px 20px;
    }
    .page-game-guides .conclusion-section h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-game-guides .hero-content h1 {
        font-size: 1.8em;
    }
    .page-game-guides .hero-image {
        margin-bottom: 20px;
    }
    .page-game-guides .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-game-guides .game-cards {
        grid-template-columns: 1fr;
    }
    .page-game-guides .game-card .card-image {
        height: 180px;
    }
    .page-game-guides .call-to-action {
        padding: 30px 20px;
    }
    .page-game-guides .call-to-action p {
        font-size: 1.2em;
    }
    .page-game-guides .advanced-tips-section ul li {
        padding: 20px;
        font-size: 1em;
    }
    .page-game-guides .faq-question h3 {
        font-size: 1em;
    }
    .page-game-guides .faq-toggle {
        font-size: 20px;
    }
}