:root {
    --primary-color: #1A202C;
    --accent-color: #FFD700;
    --text-light: #F0F0F0;
    --text-dark: #1A202C;
    --background-dark: #1A202C;
    --background-light: #f5f5f5;
}

.page-game-fairness-security-fund-security {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color on dark background */
    background-color: var(--background-dark);
}

.page-game-fairness-security-fund-security__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-fairness-security-fund-security__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a414e 100%);
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.page-game-fairness-security-fund-security__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.page-game-fairness-security-fund-security__hero-title {
    font-size: 3.5em;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-game-fairness-security-fund-security__hero-title .highlight {
    color: var(--accent-color);
}

.page-game-fairness-security-fund-security__hero-subtitle {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-game-fairness-security-fund-security__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    overflow: hidden;
}

.page-game-fairness-security-fund-security__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.page-game-fairness-security-fund-security__cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    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-game-fairness-security-fund-security__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-game-fairness-security-fund-security__section {
    padding: 80px 0;
}

.page-game-fairness-security-fund-security__section:nth-of-type(even) {
    background-color: #2a303c; /* Slightly lighter dark background for contrast */
}

.page-game-security-fund-security__section-title {
    font-size: 2.5em;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-game-fairness-security-fund-security__text-content {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 20px;
    text-align: justify;
}

.page-game-fairness-security-fund-security__text-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-game-fairness-security-fund-security__text-content a:hover {
    text-decoration: underline;
}

.page-game-fairness-security-fund-security__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-game-fairness-security-fund-security__feature-item {
    background-color: #2a303c;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-fairness-security-fund-security__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-game-fairness-security-fund-security__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-game-fairness-security-fund-security__feature-title {
    font-size: 1.6em;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-fairness-security-fund-security__feature-description {
    font-size: 1em;
    color: #b0b0b0;
    text-align: justify;
}

.page-game-fairness-security-fund-security__faq-item {
    background-color: #2a303c;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-game-fairness-security-fund-security__faq-question {
    font-size: 1.3em;
    color: var(--accent-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-game-fairness-security-fund-security__faq-answer {
    font-size: 1em;
    color: #cccccc;
    padding-top: 10px;
    border-top: 1px solid #3a414e;
    margin-top: 15px;
}

.page-game-fairness-security-fund-security__call-to-action {
    background-color: var(--primary-color);
    text-align: center;
    padding: 80px 0;
}

.page-game-fairness-security-fund-security__cta-button--large {
    font-size: 1.4em;
    padding: 18px 35px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-fairness-security-fund-security__hero-title {
        font-size: 2.8em;
    }

    .page-game-fairness-security-fund-security__hero-subtitle {
        font-size: 1.1em;
    }

    .page-game-fairness-security-fund-security__section-title {
        font-size: 2em;
    }

    .page-game-fairness-security-fund-security__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-fairness-security-fund-security__hero {
        padding: 80px 0;
        min-height: 500px;
    }

    .page-game-fairness-security-fund-security__hero-title {
        font-size: 2.2em;
    }

    .page-game-fairness-security-fund-security__hero-subtitle {
        font-size: 1em;
    }

    .page-game-fairness-security-fund-security__section {
        padding: 60px 0;
    }

    .page-game-fairness-security-fund-security__section-title {
        font-size: 1.8em;
    }

    .page-game-fairness-security-fund-security__feature-item {
        padding: 25px;
    }

    .page-game-fairness-security-fund-security__feature-title {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-game-fairness-security-fund-security__hero {
        padding: 60px 0;
        min-height: 400px;
    }

    .page-game-fairness-security-fund-security__hero-title {
        font-size: 1.8em;
    }

    .page-game-fairness-security-fund-security__hero-subtitle {
        font-size: 0.9em;
    }

    .page-game-fairness-security-fund-security__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-fairness-security-fund-security__section {
        padding: 40px 0;
    }

    .page-game-fairness-security-fund-security__section-title {
        font-size: 1.5em;
    }

    .page-game-fairness-security-fund-security__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-game-fairness-security-fund-security__faq-question {
        font-size: 1.1em;
    }

    .page-game-fairness-security-fund-security__cta-button--large {
        font-size: 1.2em;
        padding: 15px 30px;
    }
}