/* style/index-6ff-platform-overview.css */

/* Variables for consistency */
:root {
    --page-index-6ff-platform-overview-primary-color: #1A202C;
    --page-index-6ff-platform-overview-secondary-color: #E0B400;
    --page-index-6ff-platform-overview-text-light: #F0F0F0; /* High contrast text for dark background */
    --page-index-6ff-platform-overview-text-dark: #333333; /* High contrast text for light background */
    --page-index-6ff-platform-overview-background-light: #FFFFFF;
    --page-index-6ff-platform-overview-background-dark: #1A202C;
    --page-index-6ff-platform-overview-accent-dark: #9d7e00; /* Darker variant of secondary for contrast */
    --page-index-6ff-platform-overview-accent-light: #e9cb4d; /* Lighter variant of secondary for contrast */
}

.page-index-6ff-platform-overview {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-index-6ff-platform-overview-text-light);
    background-color: var(--page-index-6ff-platform-overview-background-dark);
}

.page-index-6ff-platform-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-6ff-platform-overview__section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-6ff-platform-overview__section:nth-child(even) {
    background-color: #2a3340; /* Slightly lighter dark background for contrast */
}

.page-index-6ff-platform-overview__section-title {
    font-size: 2.8em;
    color: var(--page-index-6ff-platform-overview-secondary-color);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.page-index-6ff-platform-overview__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--page-index-6ff-platform-overview-secondary-color);
    border-radius: 2px;
}

.page-index-6ff-platform-overview__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-index-6ff-platform-overview-text-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-6ff-platform-overview__text-content strong {
    color: var(--page-index-6ff-platform-overview-secondary-color);
}

/* Hero Section */
.page-index-6ff-platform-overview__hero-section {
    background: linear-gradient(135deg, var(--page-index-6ff-platform-overview-primary-color) 0%, #3a475a 100%);
    padding: 120px 0;
    color: var(--page-index-6ff-platform-overview-text-light);
    display: flex;
    align-items: center;
    min-height: 600px;
}

.page-index-6ff-platform-overview__hero-section .page-index-6ff-platform-overview__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-index-6ff-platform-overview__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-index-6ff-platform-overview__hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    color: var(--page-index-6ff-platform-overview-secondary-color);
    line-height: 1.2;
}

.page-index-6ff-platform-overview__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: var(--page-index-6ff-platform-overview-text-light);
}

.page-index-6ff-platform-overview__hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-6ff-platform-overview__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-index-6ff-platform-overview__button--primary {
    background-color: var(--page-index-6ff-platform-overview-secondary-color);
    color: var(--page-index-6ff-platform-overview-primary-color);
    border: 2px solid var(--page-index-6ff-platform-overview-secondary-color);
}

.page-index-6ff-platform-overview__button--primary:hover {
    background-color: var(--page-index-6ff-platform-overview-accent-light);
    transform: translateY(-3px);
}

.page-index-6ff-platform-overview__button--secondary {
    background-color: transparent;
    color: var(--page-index-6ff-platform-overview-secondary-color);
    border: 2px solid var(--page-index-6ff-platform-overview-secondary-color);
}

.page-index-6ff-platform-overview__button--secondary:hover {
    background-color: var(--page-index-6ff-platform-overview-secondary-color);
    color: var(--page-index-6ff-platform-overview-primary-color);
    transform: translateY(-3px);
}

.page-index-6ff-platform-overview__button--tertiary {
    background-color: #3a475a;
    color: var(--page-index-6ff-platform-overview-text-light);
    border: 2px solid #3a475a;
}

.page-index-6ff-platform-overview__button--tertiary:hover {
    background-color: var(--page-index-6ff-platform-overview-primary-color);
    border-color: var(--page-index-6ff-platform-overview-secondary-color);
    transform: translateY(-3px);
}

.page-index-6ff-platform-overview__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-index-6ff-platform-overview__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.page-index-6ff-platform-overview__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Image Grid */
.page-index-6ff-platform-overview__image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-6ff-platform-overview__grid-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-6ff-platform-overview__full-width-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Features Grid */
.page-index-6ff-platform-overview__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-index-6ff-platform-overview__feature-item {
    background-color: #2a3340;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-index-6ff-platform-overview__feature-item:hover {
    transform: translateY(-5px);
}

.page-index-6ff-platform-overview__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-index-6ff-platform-overview__feature-title {
    font-size: 1.6em;
    color: var(--page-index-6ff-platform-overview-secondary-color);
    margin-bottom: 15px;
}

.page-index-6ff-platform-overview__feature-description {
    font-size: 1em;
    color: var(--page-index-6ff-platform-overview-text-light);
}

/* Game List */
.page-index-6ff-platform-overview__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.page-index-6ff-platform-overview__game-item {
    background-color: #2a3340;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-index-6ff-platform-overview__game-item:hover {
    transform: translateY(-5px);
}

.page-index-6ff-platform-overview__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-index-6ff-platform-overview__game-title {
    font-size: 1.8em;
    color: var(--page-index-6ff-platform-overview-secondary-color);
    padding: 20px 20px 0;
}

.page-index-6ff-platform-overview__game-description {
    font-size: 1em;
    color: var(--page-index-6ff-platform-overview-text-light);
    padding: 0 20px 20px;
}

/* CTA Section */
.page-index-6ff-platform-overview__cta-section {
    background-color: #2a3340;
    padding: 50px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-6ff-platform-overview__cta-text {
    font-size: 1.8em;
    color: var(--page-index-6ff-platform-overview-text-light);
    margin-bottom: 30px;
}

/* Advantages List */
.page-index-6ff-platform-overview__advantages-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-6ff-platform-overview__advantages-list li {
    background-color: #2a3340;
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: var(--page-index-6ff-platform-overview-text-light);
    border-left: 5px solid var(--page-index-6ff-platform-overview-secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-index-6ff-platform-overview__advantages-list li strong {
    color: var(--page-index-6ff-platform-overview-secondary-color);
}

/* Promotion List */
.page-index-6ff-platform-overview__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-6ff-platform-overview__promo-list li {
    background-color: #2a3340;
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: var(--page-index-6ff-platform-overview-text-light);
    border-left: 5px solid var(--page-index-6ff-platform-overview-secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-index-6ff-platform-overview__promo-list li strong {
    color: var(--page-index-6ff-platform-overview-secondary-color);
}

/* Step-by-Step Guide */
.page-index-6ff-platform-overview__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-6ff-platform-overview__step-item {
    background-color: #2a3340;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-6ff-platform-overview__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-index-6ff-platform-overview__step-title {
    font-size: 1.8em;
    color: var(--page-index-6ff-platform-overview-secondary-color);
    margin-bottom: 15px;
}

.page-index-6ff-platform-overview__step-description {
    font-size: 1em;
    color: var(--page-index-6ff-platform-overview-text-light);
    flex-grow: 1;
}

.page-index-6ff-platform-overview__link-in-text {
    color: var(--page-index-6ff-platform-overview-secondary-color);
    text-decoration: underline;
}

.page-index-6ff-platform-overview__link-in-text:hover {
    color: var(--page-index-6ff-platform-overview-accent-light);
}

/* Responsible Gaming List */
.page-index-6ff-platform-overview__responsible-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-6ff-platform-overview__responsible-list li {
    background-color: #2a3340;
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: var(--page-index-6ff-platform-overview-text-light);
    border-left: 5px solid var(--page-index-6ff-platform-overview-secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Contact List */
.page-index-6ff-platform-overview__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-6ff-platform-overview__contact-list li {
    background-color: #2a3340;
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: var(--page-index-6ff-platform-overview-text-light);
    border-left: 5px solid var(--page-index-6ff-platform-overview-secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* FAQs Section */
.page-index-6ff-platform-overview__faq-item {
    background-color: #2a3340;
    padding: 25px 30px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-6ff-platform-overview__faq-question {
    font-size: 1.4em;
    color: var(--page-index-6ff-platform-overview-secondary-color);
    margin-bottom: 10px;
}

.page-index-6ff-platform-overview__faq-answer {
    font-size: 1em;
    color: var(--page-index-6ff-platform-overview-text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-6ff-platform-overview__hero-section .page-index-6ff-platform-overview__container {
        flex-direction: column;
        text-align: center;
    }

    .page-index-6ff-platform-overview__hero-content {
        text-align: center;
    }

    .page-index-6ff-platform-overview__hero-actions {
        justify-content: center;
    }

    .page-index-6ff-platform-overview__hero-title {
        font-size: 3em;
    }

    .page-index-6ff-platform-overview__hero-subtitle {
        font-size: 1.2em;
    }

    .page-index-6ff-platform-overview__hero-image-wrapper {
        text-align: center;
        margin-top: 40px;
    }

    .page-index-6ff-platform-overview__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-index-6ff-platform-overview__section {
        padding: 60px 0;
    }

    .page-index-6ff-platform-overview__hero-section {
        padding: 80px 0;
    }

    .page-index-6ff-platform-overview__hero-title {
        font-size: 2.5em;
    }

    .page-index-6ff-platform-overview__hero-subtitle {
        font-size: 1.1em;
    }

    .page-index-6ff-platform-overview__hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .page-index-6ff-platform-overview__button {
        width: 80%;
    }

    .page-index-6ff-platform-overview__section-title {
        font-size: 1.8em;
    }

    .page-index-6ff-platform-overview__text-content, 
    .page-index-6ff-platform-overview__feature-description, 
    .page-index-6ff-platform-overview__game-description, 
    .page-index-6ff-platform-overview__advantages-list li, 
    .page-index-6ff-platform-overview__promo-list li,
    .page-index-6ff-platform-overview__step-description,
    .page-index-6ff-platform-overview__responsible-list li,
    .page-index-6ff-platform-overview__contact-list li,
    .page-index-6ff-platform-overview__faq-answer {
        font-size: 0.95em;
    }

    .page-index-6ff-platform-overview__cta-text {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-index-6ff-platform-overview__hero-title {
        font-size: 2em;
    }

    .page-index-6ff-platform-overview__section-title {
        font-size: 1.6em;
    }

    .page-index-6ff-platform-overview__button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-index-6ff-platform-overview__full-width-image {
        height: 250px;
    }

    .page-index-6ff-platform-overview__grid-image {
        height: 180px;
    }

    .page-index-6ff-platform-overview__game-image {
        height: 150px;
    }
}