/* style/guides.css */

/* General Styles for page-guides */
.page-guides {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.page-guides-section {
    padding: 60px 0;
    text-align: center;
}

.page-guides-section:nth-of-type(even) {
    background-color: #e9ecef;
}

.page-guides-section-title {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-guides-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #28a745;
    border-radius: 2px;
}

/* Hero Section */
.page-guides-hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-guides-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-guides-hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-guides-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

/* Buttons */
.page-guides-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, transform 0.3s ease;
    margin: 10px;
    white-space: nowrap;
}

.page-guides-btn-primary {
    background-color: #28a745;
    color: #ffffff;
    border: 2px solid #28a745;
}

.page-guides-btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-3px);
}

.page-guides-btn-secondary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-guides-btn-secondary:hover {
    background-color: #0056b3;
    border-color: #004085;
    transform: translateY(-3px);
}

/* About 90ok Section */
.page-guides-about-90ok p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: left;
}

/* Grid for Game Types and Key Skills */
.page-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-guides-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-guides-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-guides-card-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
    min-height: 50px; /* Ensure consistent height for titles */
}

.page-guides-card-title a {
    color: #007bff;
    text-decoration: none;
}

.page-guides-card-title a:hover {
    text-decoration: underline;
}

.page-guides-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-guides-image-full-width {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Detail List Section */
.page-guides-detail-list .page-guides-grid {
    margin-top: 40px;
}

.page-guides-detail-card .page-guides-card-title {
    font-size: 1.4em;
    min-height: unset;
}

/* FAQ Section */
.page-guides-faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
}

.page-guides-faq-question {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-guides-faq-answer {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
}

/* Conclusion Section */
.page-guides-conclusion p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
}

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

    .page-guides-hero-subtitle {
        font-size: 1.1em;
    }

    .page-guides-section-title {
        font-size: 2em;
    }

    .page-guides-card-title {
        font-size: 1.4em;
    }

    .page-guides-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-guides-hero {
        padding: 60px 0;
    }

    .page-guides-hero-title {
        font-size: 2em;
    }

    .page-guides-hero-subtitle {
        font-size: 1em;
    }

    .page-guides-btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-guides-section {
        padding: 40px 0;
    }

    .page-guides-section-title {
        font-size: 1.8em;
    }

    .page-guides-card {
        padding: 20px;
    }

    .page-guides-card-title {
        font-size: 1.2em;
    }

    .page-guides-faq-question {
        font-size: 1.2em;
    }
}