/* style/gameplay-guides.css */
.page-gameplay-guides {
    font-family: Arial, sans-serif;
    color: #E2E8F0; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

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

.page-gameplay-guides-section-title {
    color: #FFD700; /* Auxiliary gold color for titles */
    font-size: 2.5em;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-gameplay-guides-hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a476f 100%); /* Gradient background */
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gameplay-guides-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-gameplay-guides-hero > .page-gameplay-guides-container {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
}

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

.page-gameplay-guides-hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-gameplay-guides-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-gameplay-guides-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-gameplay-guides-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-gameplay-guides-btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 25px;
    font-size: 1em;
}

.page-gameplay-guides-btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
}

.page-gameplay-guides-btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-gameplay-guides-intro p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.1em;
    color: #CBD5E0;
    text-align: left;
}

.page-gameplay-guides-featured-guides {
    background-color: #2D3748; /* Slightly lighter dark background */
}

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

.page-gameplay-guides-card {
    background-color: #1A202C;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-gameplay-guides-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-gameplay-guides-card-title {
    font-size: 1.5em;
    color: #FFD700;
    padding: 15px 20px 0;
    margin-bottom: 10px;
}

.page-gameplay-guides-card-title a {
    color: inherit;
    text-decoration: none;
}

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

.page-gameplay-guides-card-description {
    color: #CBD5E0;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-gameplay-guides-card .page-gameplay-guides-btn-secondary {
    margin: 0 20px 20px;
    align-self: flex-start;
}

.page-gameplay-guides-general-tips {
    background-color: #1A202C;
    text-align: left;
}

.page-gameplay-guides-general-tips .page-gameplay-guides-section-title {
    text-align: center;
}

.page-gameplay-guides-tip-item {
    background-color: #2D3748;
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-gameplay-guides-tip-title {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-gameplay-guides-tip-item p {
    color: #CBD5E0;
    font-size: 1.05em;
}

.page-gameplay-guides-link-inline {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-gameplay-guides-link-inline:hover {
    text-decoration: underline;
}

.page-gameplay-guides-cta {
    background: linear-gradient(45deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
    padding: 80px 0;
    color: #1A202C;
    position: relative;
    overflow: hidden;
}

.page-gameplay-guides-cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-gameplay-guides-cta > .page-gameplay-guides-container {
    position: relative;
    z-index: 1;
}

.page-gameplay-guides-cta .page-gameplay-guides-section-title {
    color: #1A202C;
}

.page-gameplay-guides-cta .page-gameplay-guides-section-title::after {
    background-color: #1A202C;
}

.page-gameplay-guides-cta p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #333;
}

/* Floating Ad */
.page-gameplay-guides-floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFD700; /* Gold */
    color: #1A202C;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    animation: page-gameplay-guides-fadeInUp 0.5s ease-out;
}

.page-gameplay-guides-floating-ad-text {
    margin: 0;
    font-weight: bold;
    font-size: 1.1em;
}

@keyframes page-gameplay-guides-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .page-gameplay-guides-hero-description,
    .page-gameplay-guides-cta p {
        font-size: 1em;
    }

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

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

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

    .page-gameplay-guides-floating-ad {
        flex-direction: column;
        right: 10px;
        left: 10px;
        bottom: 10px;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-gameplay-guides-hero-title {
        font-size: 2em;
    }

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

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

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