/* style/game-guides-skill-gameplay.css */

/* Variables for colors */
:root {
    --page-game-guides-skill-gameplay-primary-bg: #0A192F; /* Dark blue */
    --page-game-guides-skill-gameplay-secondary-color: #FFD700; /* Gold */
    --page-game-guides-skill-gameplay-text-light: #F0F2F5; /* Light text for dark backgrounds */
    --page-game-guides-skill-gameplay-text-dark: #1A2B42; /* Darker text for light backgrounds */
    --page-game-guides-skill-gameplay-accent-dark: #B39700; /* Darker gold for contrast */
    --page-game-guides-skill-gameplay-section-bg-light: #1A2B42; /* Slightly lighter dark blue for sections */
}

/* Base styling for the page content */
.page-game-guides-skill-gameplay {
    font-family: 'Arial', sans-serif;
    color: var(--page-game-guides-skill-gameplay-text-light);
    background-color: var(--page-game-guides-skill-gameplay-primary-bg);
    line-height: 1.6;
    padding-bottom: 50px; /* Space for potential fixed footer/ads */
}

/* Hero Section */
.page-game-guides-skill-gameplay__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--page-game-guides-skill-gameplay-primary-bg) 0%, #1A2B42 50%, var(--page-game-guides-skill-gameplay-secondary-color) 100%);
    color: var(--page-game-guides-skill-gameplay-text-light);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    gap: 40px;
}

.page-game-guides-skill-gameplay__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-game-guides-skill-gameplay__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-game-guides-skill-gameplay-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    line-height: 1.2;
}

.page-game-guides-skill-gameplay__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: var(--page-game-guides-skill-gameplay-text-light);
    opacity: 0.9;
}

.page-game-guides-skill-gameplay__hero-image {
    width: 100%;
    max-width: 900px;
    margin-top: 40px;
    z-index: 0;
}

.page-game-guides-skill-gameplay__hero-image .page-game-guides-skill-gameplay__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Section General */
.page-game-guides-skill-gameplay__section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 30px;
    background-color: var(--page-game-guides-skill-gameplay-section-bg-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides-skill-gameplay__section-title {
    font-size: 2.5em;
    color: var(--page-game-guides-skill-gameplay-secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-game-guides-skill-gameplay__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-game-guides-skill-gameplay-secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-game-guides-skill-gameplay__section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--page-game-guides-skill-gameplay-text-light);
}

.page-game-guides-skill-gameplay__section strong {
    color: var(--page-game-guides-skill-gameplay-secondary-color);
}

/* Skill Grid */
.page-game-guides-skill-gameplay__skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-game-guides-skill-gameplay__skill-item {
    background-color: var(--page-game-guides-skill-gameplay-primary-bg);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-game-guides-skill-gameplay__skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-game-guides-skill-gameplay__skill-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: var(--page-game-guides-skill-gameplay-secondary-color);
    padding: 10px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-skill-gameplay__skill-name {
    font-size: 1.8em;
    color: var(--page-game-guides-skill-gameplay-secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-guides-skill-gameplay__skill-item p {
    font-size: 1em;
    color: var(--page-game-guides-skill-gameplay-text-light);
    margin-bottom: 10px;
}

.page-game-guides-skill-gameplay__skill-item ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    margin-top: 10px;
    color: var(--page-game-guides-skill-gameplay-text-light);
}

.page-game-guides-skill-gameplay__skill-item ul li {
    margin-bottom: 5px;
    font-size: 0.95em;
}

/* Content Blocks */
.page-game-guides-skill-gameplay__content-block {
    background-color: var(--page-game-guides-skill-gameplay-primary-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-game-guides-skill-gameplay__sub-title {
    font-size: 1.8em;
    color: var(--page-game-guides-skill-gameplay-secondary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--page-game-guides-skill-gameplay-accent-dark);
    padding-bottom: 10px;
}

.page-game-guides-skill-gameplay__content-block ul,
.page-game-guides-skill-gameplay__content-block ol {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--page-game-guides-skill-gameplay-text-light);
}

.page-game-guides-skill-gameplay__content-block ol {
    list-style-type: decimal;
}

.page-game-guides-skill-gameplay__content-block li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

/* Images within content */
.page-game-guides-skill-gameplay__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-skill-gameplay__image--full-width {
    width: calc(100% + 60px); /* Adjust for section padding */
    margin-left: -30px;
    margin-right: -30px;
    border-radius: 0;
    max-width: none;
}

/* Advanced Tips List */
.page-game-guides-skill-gameplay__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 20px;
    color: var(--page-game-guides-skill-gameplay-text-light);
}

.page-game-guides-skill-gameplay__list li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-game-guides-skill-gameplay__list li strong {
    color: var(--page-game-guides-skill-gameplay-secondary-color);
}

/* Blockquote */
.page-game-guides-skill-gameplay__blockquote {
    background-color: #1A2B42;
    border-left: 5px solid var(--page-game-guides-skill-gameplay-secondary-color);
    padding: 20px 25px;
    margin: 30px auto;
    font-style: italic;
    font-size: 1.2em;
    color: var(--page-game-guides-skill-gameplay-text-light);
    max-width: 900px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Call to Action (CTA) */
.page-game-guides-skill-gameplay__cta {
    text-align: center;
    margin: 80px auto;
    padding: 50px 30px;
    background: linear-gradient(90deg, var(--page-game-guides-skill-gameplay-primary-bg), #1A2B42, var(--page-game-guides-skill-gameplay-primary-bg));
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    max-width: 1000px;
}

.page-game-guides-skill-gameplay__cta-title {
    font-size: 3em;
    color: var(--page-game-guides-skill-gameplay-secondary-color);
    margin-bottom: 25px;
    font-weight: bold;
}

.page-game-guides-skill-gameplay__cta-description {
    font-size: 1.2em;
    color: var(--page-game-guides-skill-gameplay-text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides-skill-gameplay__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.page-game-guides-skill-gameplay__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px;
}

.page-game-guides-skill-gameplay__btn--primary {
    background-color: var(--page-game-guides-skill-gameplay-secondary-color);
    color: var(--page-game-guides-skill-gameplay-primary-bg);
    border: 2px solid var(--page-game-guides-skill-gameplay-secondary-color);
}

.page-game-guides-skill-gameplay__btn--primary:hover {
    background-color: var(--page-game-guides-skill-gameplay-accent-dark);
    color: #FFF;
    border-color: var(--page-game-guides-skill-gameplay-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-game-guides-skill-gameplay__btn--secondary {
    background-color: transparent;
    color: var(--page-game-guides-skill-gameplay-secondary-color);
    border: 2px solid var(--page-game-guides-skill-gameplay-secondary-color);
}

.page-game-guides-skill-gameplay__btn--secondary:hover {
    background-color: var(--page-game-guides-skill-gameplay-secondary-color);
    color: var(--page-game-guides-skill-gameplay-primary-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-game-guides-skill-gameplay__btn--tertiary {
    background-color: #34495e; /* A slightly lighter dark blue/grey */
    color: var(--page-game-guides-skill-gameplay-text-light);
    border: 2px solid #34495e;
}

.page-game-guides-skill-gameplay__btn--tertiary:hover {
    background-color: #4a6580;
    border-color: #4a6580;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-guides-skill-gameplay__hero-title {
        font-size: 2.8em;
    }
    .page-game-guides-skill-gameplay__hero-subtitle {
        font-size: 1.3em;
    }
    .page-game-guides-skill-gameplay__section-title {
        font-size: 2em;
    }
    .page-game-guides-skill-gameplay__sub-title {
        font-size: 1.6em;
    }
    .page-game-guides-skill-gameplay__skill-name {
        font-size: 1.5em;
    }
    .page-game-guides-skill-gameplay__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-game-guides-skill-gameplay__hero {
        flex-direction: column;
        padding: 60px 20px;
    }
    .page-game-guides-skill-gameplay__hero-title {
        font-size: 2.2em;
    }
    .page-game-guides-skill-gameplay__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-guides-skill-gameplay__section {
        margin: 40px auto;
        padding: 30px 20px;
    }
    .page-game-guides-skill-gameplay__section-title {
        font-size: 1.8em;
    }
    .page-game-guides-skill-gameplay__skill-grid {
        grid-template-columns: 1fr;
    }
    .page-game-guides-skill-gameplay__cta-title {
        font-size: 2em;
    }
    .page-game-guides-skill-gameplay__cta-description {
        font-size: 1em;
    }
    .page-game-guides-skill-gameplay__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-game-guides-skill-gameplay__btn {
        width: 100%;
        max-width: 280px;
    }
    .page-game-guides-skill-gameplay__image--full-width {
        width: calc(100% + 40px); /* Adjust for section padding */
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media (max-width: 480px) {
    .page-game-guides-skill-gameplay__hero-title {
        font-size: 1.8em;
    }
    .page-game-guides-skill-gameplay__hero-subtitle {
        font-size: 1em;
    }
    .page-game-guides-skill-gameplay__section-title {
        font-size: 1.5em;
    }
    .page-game-guides-skill-gameplay__sub-title {
        font-size: 1.4em;
    }
    .page-game-guides-skill-gameplay__skill-name {
        font-size: 1.3em;
    }
    .page-game-guides-skill-gameplay__skill-icon {
        width: 60px;
        height: 60px;
    }
    .page-game-guides-skill-gameplay__blockquote {
        font-size: 1.05em;
        padding: 15px 20px;
    }
    .page-game-guides-skill-gameplay__cta-title {
        font-size: 1.8em;
    }
    .page-game-guides-skill-gameplay__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}

/* Animation for sections */
.page-game-guides-skill-gameplay .fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-game-guides-skill-gameplay .fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}