/* style/games-center-esports.css */
.page-games-center-esports {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-games-center-esports__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-games-center-esports__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-center-esports__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:esports_pattern,abstract,blue_gradient]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-games-center-esports__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00; /* High contrast with dark background */
    position: relative;
    z-index: 1;
}

.page-games-center-esports__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.page-games-center-esports__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.page-games-center-esports__btn--primary {
    background-color: #FFCC00;
    color: #003366;
}

.page-games-center-esports__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-games-center-esports__btn--secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-games-center-esports__btn--secondary:hover {
    background-color: #004d99;
    transform: translateY(-2px);
}

.page-games-center-esports__btn--link {
    background: none;
    color: #003366;
    padding: 0;
    text-decoration: underline;
    font-size: 1em;
}

.page-games-center-esports__btn--link:hover {
    color: #FFCC00;
    text-decoration: none;
}

.page-games-center-esports__btn--app {
    background-color: #003366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px;
    padding: 12px 25px;
}

.page-games-center-esports__btn--app:hover {
    background-color: #004d99;
}

.page-games-center-esports__app-icon {
    width: 24px;
    height: 24px;
}

.page-games-center-esports__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-games-center-esports__introduction-section, 
.page-games-center-esports__why-choose-section, 
.page-games-center-esports__betting-types-section, 
.page-games-center-esports__tips-section, 
.page-games-center-esports__registration-guide-section, 
.page-games-center-esports__app-download-section, 
.page-games-center-esports__faq-section, 
.page-games-center-esports__cta-final-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-games-center-esports__introduction-section {
    background-color: #f0f8ff;
}

.page-games-center-esports__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-games-center-esports__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-games-center-esports__introduction-section p, 
.page-games-center-esports__why-choose-section p, 
.page-games-center-esports__betting-types-section p, 
.page-games-center-esports__tips-section p, 
.page-games-center-esports__registration-guide-section p, 
.page-games-center-esports__app-download-section p, 
.page-games-center-esports__faq-section p, 
.page-games-center-esports__cta-final-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-games-center-esports__features-grid, 
.page-games-center-esports__betting-grid, 
.page-games-center-esports__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-games-center-esports__feature-item, 
.page-games-center-esports__betting-item, 
.page-games-center-esports__step-item {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #003366;
}

.page-games-center-esports__feature-item:hover, 
.page-games-center-esports__betting-item:hover, 
.page-games-center-esports__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-games-center-esports__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
}

.page-games-center-esports__feature-title, 
.page-games-center-esports__betting-title, 
.page-games-center-esports__step-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-games-center-esports__step-number {
    background-color: #FFCC00;
    color: #003366;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-games-center-esports__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-games-center-esports__tips-list li {
    background-color: #f0f8ff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid #FFCC00;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-games-center-esports__tips-list li strong {
    color: #003366;
}

.page-games-center-esports__cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #003366;
    border-radius: 8px;
    color: #fff;
}

.page-games-center-esports__cta-block p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #fff;
}

.page-games-center-esports__cta-block a {
    color: #FFCC00;
    text-decoration: underline;
}

.page-games-center-esports__cta-block a:hover {
    color: #fff;
}

.page-games-center-esports__app-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-games-center-esports__faq-item {
    background-color: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-games-center-esports__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-games-center-esports__faq-answer {
    font-size: 1.05em;
    color: #555;
    text-align: justify;
}

.page-games-center-esports__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.page-games-center-esports__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games-center-esports__hero-title {
        font-size: 2.8em;
    }

    .page-games-center-esports__hero-subtitle {
        font-size: 1.3em;
    }

    .page-games-center-esports__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-games-center-esports__hero-section {
        padding: 60px 0;
    }

    .page-games-center-esports__hero-title {
        font-size: 2.2em;
    }

    .page-games-center-esports__hero-subtitle {
        font-size: 1.1em;
    }

    .page-games-center-esports__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-games-center-esports__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-games-center-esports__introduction-section, 
    .page-games-center-esports__why-choose-section, 
    .page-games-center-esports__betting-types-section, 
    .page-games-center-esports__tips-section, 
    .page-games-center-esports__registration-guide-section, 
    .page-games-center-esports__app-download-section, 
    .page-games-center-esports__faq-section, 
    .page-games-center-esports__cta-final-section {
        padding: 40px 0;
    }

    .page-games-center-esports__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-games-center-esports__features-grid, 
    .page-games-center-esports__betting-grid, 
    .page-games-center-esports__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-games-center-esports__feature-item, 
    .page-games-center-esports__betting-item, 
    .page-games-center-esports__step-item {
        padding: 25px;
    }

    .page-games-center-esports__feature-title, 
    .page-games-center-esports__betting-title, 
    .page-games-center-esports__step-title {
        font-size: 1.3em;
    }

    .page-games-center-esports__tips-list li {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-games-center-esports__cta-block p {
        font-size: 1.1em;
    }

    .page-games-center-esports__app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-games-center-esports__app-buttons .page-games-center-esports__btn--app {
        width: 80%;
    }

    .page-games-center-esports__faq-question {
        font-size: 1.2em;
    }

    .page-games-center-esports__faq-answer {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-games-center-esports__hero-title {
        font-size: 1.8em;
    }

    .page-games-center-esports__hero-subtitle {
        font-size: 1em;
    }

    .page-games-center-esports__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-games-center-esports__section-title {
        font-size: 1.5em;
    }

    .page-games-center-esports__introduction-section p, 
    .page-games-center-esports__why-choose-section p, 
    .page-games-center-esports__betting-types-section p, 
    .page-games-center-esports__tips-section p, 
    .page-games-center-esports__registration-guide-section p, 
    .page-games-center-esports__app-download-section p, 
    .page-games-center-esports__faq-section p, 
.page-games-center-esports__cta-final-section p {
        font-size: 0.95em;
    }

    .page-games-center-esports__feature-title, 
    .page-games-center-esports__betting-title, 
    .page-games-center-esports__step-title {
        font-size: 1.2em;
    }

    .page-games-center-esports__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }

    .page-games-center-esports__faq-question {
        font-size: 1.1em;
    }
}