/* style/resources-sedie-anti-cheat-guide.css */
.page-resources-sedie-anti-cheat-guide {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

.page-resources-sedie-anti-cheat-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-sedie-anti-cheat-guide__hero-section {
    background: linear-gradient(135deg, #0A192F, #2c3e50); /* Dark blue to slightly lighter dark blue for depth */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    position: relative;
    overflow: hidden;
}

.page-resources-sedie-anti-cheat-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-sedie-anti-cheat-guide__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f5f5f5;
}

.page-resources-sedie-anti-cheat-guide__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    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;
    border: none;
    cursor: pointer;
}

.page-resources-sedie-anti-cheat-guide__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-resources-sedie-anti-cheat-guide__cta-button--inline {
    margin-top: 20px;
}

.page-resources-sedie-anti-cheat-guide__cta-button--large {
    padding: 20px 40px;
    font-size: 1.2em;
    margin: 40px auto;
    display: block;
    width: fit-content;
}

.page-resources-sedie-anti-cheat-guide__content-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-resources-sedie-anti-cheat-guide__content-container {
    background-color: #1a2a40; /* Slightly lighter dark blue for content card */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-sedie-anti-cheat-guide__main-article p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-resources-sedie-anti-cheat-guide__heading {
    color: #FFD700; /* Gold for main headings */
    font-size: 2.2em;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
    font-weight: bold;
}

.page-resources-sedie-anti-cheat-guide__sub-heading {
    color: #f5f5f5; /* White for sub-headings */
    font-size: 1.7em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-sedie-anti-cheat-guide__main-article ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-resources-sedie-anti-cheat-guide__main-article ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-sedie-anti-cheat-guide__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-sedie-anti-cheat-guide__hero-title {
        font-size: 2.5em;
    }

    .page-resources-sedie-anti-cheat-guide__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-sedie-anti-cheat-guide__heading {
        font-size: 1.8em;
    }

    .page-resources-sedie-anti-cheat-guide__sub-heading {
        font-size: 1.4em;
    }

    .page-resources-sedie-anti-cheat-guide__content-container {
        padding: 20px;
    }

    .page-resources-sedie-anti-cheat-guide__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-sedie-anti-cheat-guide__hero-title {
        font-size: 2em;
    }

    .page-resources-sedie-anti-cheat-guide__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-sedie-anti-cheat-guide__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-sedie-anti-cheat-guide__heading {
        font-size: 1.5em;
    }

    .page-resources-sedie-anti-cheat-guide__sub-heading {
        font-size: 1.2em;
    }

    .page-resources-sedie-anti-cheat-guide__content-container {
        padding: 15px;
    }
}