/* style/games-sports-esports-prediction.css */

/* Base styles for the page content wrapper */
.page-games-sports-esports-prediction {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey text on dark background */
    background-color: #1A202C; /* Deep dark background */
    line-height: 1.6;
    scroll-behavior: smooth;
}

.page-games-sports-esports-prediction .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
.page-games-sports-esports-prediction h1,
.page-games-sports-esports-prediction h2,
.page-games-sports-esports-prediction h3 {
    color: #FFD700; /* Gold for headings */
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-games-sports-esports-prediction h1 {
    font-size: 2.8em;
    margin-bottom: 30px;
    color: #FFD700; /* Ensure strong contrast */
}

.page-games-sports-esports-prediction h2 {
    font-size: 2.2em;
    padding-top: 40px;
    color: #FFD700; /* Ensure strong contrast */
}

.page-games-sports-esports-prediction h3 {
    font-size: 1.6em;
    color: #FFD700; /* Ensure strong contrast */
}

/* Paragraphs and descriptions */
.page-games-sports-esports-prediction p {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: #E0E0E0; /* Light grey for body text */
}

.page-games-sports-esports-prediction .section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #B0B0B0; /* Slightly lighter for descriptions */
}

/* Buttons */
.page-games-sports-esports-prediction .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
    border: none;
}

.page-games-sports-esports-prediction .btn-primary {
    background-color: #FFD700; /* Gold background */
    color: #1A202C; /* Dark text on gold */
}

.page-games-sports-esports-prediction .btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #000000;
}

.page-games-sports-esports-prediction .btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-games-sports-esports-prediction .btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-games-sports-esports-prediction .btn-promo,
.page-games-sports-esports-prediction .btn-step,
.page-games-sports-esports-prediction .btn-download,
.page-games-sports-esports-prediction .btn-cta {
    background-color: #FFD700;
    color: #1A202C;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-games-sports-esports-prediction .btn-promo:hover,
.page-games-sports-esports-prediction .btn-step:hover,
.page-games-sports-esports-prediction .btn-download:hover,
.page-games-sports-esports-prediction .btn-cta:hover {
    background-color: #e6c200;
    color: #000000;
}

/* Sections */
.page-games-sports-esports-prediction section {
    padding: 80px 0;
}

.page-games-sports-esports-prediction .hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a414e 100%); /* Subtle gradient */
    padding: 100px 0;
    text-align: center;
}

.page-games-sports-esports-prediction .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700;
}

.page-games-sports-esports-prediction .hero-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #F0F0F0;
}

.page-games-sports-esports-prediction .hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Grid Layout for features and game cards */
.page-games-sports-esports-prediction .grid-layout,
.page-games-sports-esports-prediction .game-cards-grid,
.page-games-sports-esports-prediction .promo-cards-grid,
.page-games-sports-esports-prediction .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-games-sports-esports-prediction .grid-item,
.page-games-sports-esports-prediction .game-card,
.page-games-sports-esports-prediction .promo-card,
.page-games-sports-esports-prediction .step-item {
    background-color: #2A303C; /* Slightly lighter dark for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-sports-esports-prediction .grid-item:hover,
.page-games-sports-esports-prediction .game-card:hover,
.page-games-sports-esports-prediction .promo-card:hover,
.page-games-sports-esports-prediction .step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-games-sports-esports-prediction .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-games-sports-esports-prediction .item-title {
    color: #FFD700;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-games-sports-esports-prediction .game-image,
.page-games-sports-esports-prediction .promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-games-sports-esports-prediction .game-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-sports-esports-prediction .promo-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

/* Strategy List */
.page-games-sports-esports-prediction .strategy-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-games-sports-esports-prediction .strategy-item {
    background-color: #2A303C;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games-sports-esports-prediction .strategy-item .item-title {
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.page-games-sports-esports-prediction .strategy-item p {
    text-align: left;
    font-size: 1em;
    color: #B0B0B0;
}

/* Live Betting Section */
.page-games-sports-esports-prediction .live-betting-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-games-sports-esports-prediction .live-betting-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-games-sports-esports-prediction .live-betting-text {
    flex: 1;
    min-width: 300px;
}

.page-games-sports-esports-prediction .live-betting-text h3 {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #FFD700;
}

.page-games-sports-esports-prediction .live-betting-text p {
    color: #E0E0E0;
    margin-bottom: 15px;
}

/* How to Start Section */
.page-games-sports-esports-prediction .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-games-sports-esports-prediction .step-number {
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #1A202C;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-games-sports-esports-prediction .faq-accordion {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-games-sports-esports-prediction .accordion-item {
    background-color: #2A303C;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-games-sports-esports-prediction .accordion-header {
    background-color: #3A414E; /* Slightly darker than card background */
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 0; /* Override default h3 margin */
    transition: background-color 0.3s ease;
}

.page-games-sports-esports-prediction .accordion-header:hover {
    background-color: #4A515E;
}

.page-games-sports-esports-prediction .accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-games-sports-esports-prediction .accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-games-sports-esports-prediction .accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #E0E0E0;
}

.page-games-sports-esports-prediction .accordion-content.active {
    max-height: 500px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-games-sports-esports-prediction .accordion-content p {
    margin-bottom: 1em;
}

/* Call to Action Section */
.page-games-sports-esports-prediction .cta-section {
    background-color: #2A303C;
    text-align: center;
    padding: 60px 0;
    border-top: 5px solid #FFD700;
}

.page-games-sports-esports-prediction .cta-section .section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.page-games-sports-esports-prediction .cta-section .section-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-games-sports-esports-prediction h1 {
        font-size: 2.5em;
    }

    .page-games-sports-esports-prediction h2 {
        font-size: 1.8em;
    }

    .page-games-sports-esports-prediction h3 {
        font-size: 1.4em;
    }

    .page-games-sports-esports-prediction .hero-description {
        font-size: 1.1em;
    }

    .page-games-sports-esports-prediction .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-games-sports-esports-prediction .btn-secondary {
        margin-left: 0;
    }

    .page-games-sports-esports-prediction .live-betting-content {
        flex-direction: column;
    }

    .page-games-sports-esports-prediction .live-betting-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-games-sports-esports-prediction h1 {
        font-size: 2em;
    }

    .page-games-sports-esports-prediction h2 {
        font-size: 1.6em;
    }

    .page-games-sports-esports-prediction .hero-description {
        font-size: 1em;
    }

    .page-games-sports-esports-prediction .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-games-sports-esports-prediction .grid-layout,
    .page-games-sports-esports-prediction .game-cards-grid,
    .page-games-sports-esports-prediction .promo-cards-grid,
    .page-games-sports-esports-prediction .steps-grid,
    .page-games-sports-esports-prediction .strategy-list {
        grid-template-columns: 1fr;
    }
}