/* style/game-guides-technical-support-troubleshooting.css */
.page-game-guides-technical-support-troubleshooting {
    font-family: 'Arial', sans-serif;
    color: #000000;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-game-guides-technical-support-troubleshooting__hero {
    background: linear-gradient(135deg, #FFD700 0%, #000000 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-game-guides-technical-support-troubleshooting__hero-content {
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.page-game-guides-technical-support-troubleshooting__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-game-guides-technical-support-troubleshooting__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-guides-technical-support-troubleshooting__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-game-guides-technical-support-troubleshooting__hero-button {
    display: inline-block;
    background-color: #DC143C;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.page-game-guides-technical-support-troubleshooting__hero-button:hover {
    background-color: #c01134;
    transform: translateY(-2px);
}

.page-game-guides-technical-support-troubleshooting__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-game-guides-technical-support-troubleshooting__section:nth-of-type(even) {
    background-color: #fbfbfb;
}

.page-game-guides-technical-support-troubleshooting__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.page-game-guides-technical-support-troubleshooting__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-game-guides-technical-support-troubleshooting__section-description {
    font-size: 1.1em;
    color: #333333;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides-technical-support-troubleshooting__issue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-game-guides-technical-support-troubleshooting__issue-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-technical-support-troubleshooting__issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-game-guides-technical-support-troubleshooting__issue-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides-technical-support-troubleshooting__issue-card-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}

.page-game-guides-technical-support-troubleshooting__sub-issue-title {
    font-size: 1.3em;
    color: #DC143C;
    margin-top: 25px;
    margin-bottom: 10px;
    border-left: 4px solid #FFD700;
    padding-left: 10px;
}

.page-game-guides-technical-support-troubleshooting__solution-list {
    list-style: disc inside;
    margin-left: 20px;
    color: #555555;
    margin-bottom: 15px;
}

.page-game-guides-technical-support-troubleshooting__solution-list li {
    margin-bottom: 8px;
}

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

.page-game-guides-technical-support-troubleshooting__contact-card {
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-guides-technical-support-troubleshooting__contact-card:hover {
    background-color: #222222;
    transform: translateY(-5px);
}

.page-game-guides-technical-support-troubleshooting__contact-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); /* Make icons white */
}

.page-game-guides-technical-support-troubleshooting__contact-card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-guides-technical-support-troubleshooting__contact-button {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-guides-technical-support-troubleshooting__contact-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-game-guides-technical-support-troubleshooting__faq-link {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
}

.page-game-guides-technical-support-troubleshooting__faq-link a {
    color: #DC143C;
    text-decoration: none;
    font-weight: bold;
}

.page-game-guides-technical-support-troubleshooting__faq-link a:hover {
    text-decoration: underline;
}

.page-game-guides-technical-support-troubleshooting__pro-tips .page-game-guides-technical-support-troubleshooting__tips-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-game-guides-technical-support-troubleshooting__pro-tips .page-game-guides-technical-support-troubleshooting__tips-list li {
    background-color: #f0f0f0;
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    font-size: 1.1em;
    color: #333333;
}

.page-game-guides-technical-support-troubleshooting__pro-tips .page-game-guides-technical-support-troubleshooting__tips-list li strong {
    color: #000000;
    font-weight: bold;
}

.page-game-guides-technical-support-troubleshooting__trust-cta {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-game-guides-technical-support-troubleshooting__trust-cta .page-game-guides-technical-support-troubleshooting__section-title {
    color: #FFD700;
}

.page-game-guides-technical-support-troubleshooting__trust-cta .page-game-guides-technical-support-troubleshooting__section-description {
    color: #f0f0f0;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-game-guides-technical-support-troubleshooting__main-cta {
    display: inline-block;
    background-color: #DC143C;
    color: #FFFFFF;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5);
}

.page-game-guides-technical-support-troubleshooting__main-cta:hover {
    background-color: #c01134;
    transform: translateY(-3px);
}

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

    .page-game-guides-technical-support-troubleshooting__hero-description {
        font-size: 1em;
    }

    .page-game-guides-technical-support-troubleshooting__section-title {
        font-size: 2em;
    }

    .page-game-guides-technical-support-troubleshooting__issue-grid,
    .page-game-guides-technical-support-troubleshooting__contact-methods {
        grid-template-columns: 1fr;
    }

    .page-game-guides-technical-support-troubleshooting__section {
        padding: 40px 0;
    }

    .page-game-guides-technical-support-troubleshooting__hero {
        padding: 60px 0;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .page-game-guides-technical-support-troubleshooting__hero-title {
        font-size: 2em;
    }

    .page-game-guides-technical-support-troubleshooting__hero-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .page-game-guides-technical-support-troubleshooting__section-title {
        font-size: 1.8em;
    }

    .page-game-guides-technical-support-troubleshooting__issue-card-title {
        font-size: 1.4em;
    }

    .page-game-guides-technical-support-troubleshooting__sub-issue-title {
        font-size: 1.1em;
    }

    .page-game-guides-technical-support-troubleshooting__contact-card-title {
        font-size: 1.5em;
    }

    .page-game-guides-technical-support-troubleshooting__main-cta {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}