:root {
    --primary-color: #007BFF; /* Deep Blue */
    --secondary-color: #FFC107; /* Gold */
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #001f4d; /* Darker shade of primary for contrast */
    --accent-color: #28a745; /* Green for success/highlights */
    --border-color: #e0e0e0;
}

.page-xo-so {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.page-xo-so .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-xo-so section {
    padding: 60px 0;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-xo-so section:nth-of-type(even) {
    background-color: var(--bg-light);
}

.page-xo-so h1,
.page-xo-so h2,
.page-xo-so h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-xo-so h1 {
    font-size: 2.8em;
    color: var(--text-light);
}

.page-xo-so h2 {
    font-size: 2.2em;
    margin-top: 40px;
}

.page-xo-so h3 {
    font-size: 1.8em;
    color: var(--text-dark);
}

.page-xo-so p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}

.page-xo-so a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-xo-so a:hover {
    color: var(--secondary-color);
}

.page-xo-so .cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-xo-so .cta-button:hover {
    background-color: #e6b000; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-xo-so .cta-button.small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-xo-so .cta-button.large {
    padding: 20px 40px;
    font-size: 1.3em;
}

/* Banner Section */
.page-xo-so .banner-section {
    background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.page-xo-so .banner-content {
    max-width: 900px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.page-xo-so .banner-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-align: center;
}

.page-xo-so .banner-image {
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
    position: relative;
    z-index: 0;
}

.page-xo-so .banner-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
    object-fit: cover;
}

/* Intro Section */
.page-xo-so .intro-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

/* Game Types Section */
.page-xo-so .game-types-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0;
}

.page-xo-so .game-types-section h2 {
    color: var(--secondary-color);
}

.page-xo-so .game-types-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-xo-so .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-xo-so .game-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-xo-so .game-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-xo-so .game-card h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 0;
    padding: 0 15px;
}

.page-xo-so .game-card p {
    color: var(--text-dark);
    font-size: 1em;
    padding: 0 15px;
    text-align: center;
    flex-grow: 1;
}

.page-xo-so .game-card .card-button {
    margin-top: 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-xo-so .game-card .card-button:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

/* Why Choose Us Section */
.page-xo-so .why-choose-us-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.page-xo-so .why-choose-us-section h2 {
    color: var(--primary-color);
}

.page-xo-so .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-xo-so .feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-xo-so .feature-item:hover {
    transform: translateY(-5px);
}

.page-xo-so .feature-item h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-xo-so .feature-item h3 i {
    font-size: 1.2em;
    margin-right: 10px;
    color: var(--secondary-color);
}

.page-xo-so .feature-item p {
    font-size: 1em;
    color: var(--text-dark);
    text-align: center;
}

.page-xo-so .feature-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Guide Section */
.page-xo-so .guide-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0;
}

.page-xo-so .guide-section h2 {
    color: var(--secondary-color);
}

.page-xo-so .guide-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-xo-so .guide-steps {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-xo-so .guide-steps li {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-xo-so .guide-steps li h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-xo-so .guide-steps li p {
    color: var(--text-dark);
    text-align: center;
    flex-grow: 1;
}

/* Promotions Section */
.page-xo-so .promotions-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.page-xo-so .promotions-section h2 {
    color: var(--primary-color);
}

.page-xo-so .promotions-section p.all-promos-link {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
}

.page-xo-so .promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-xo-so .promo-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-xo-so .promo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-xo-so .promo-card h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 0;
    padding: 0 15px;
}

.page-xo-so .promo-card p {
    color: var(--text-dark);
    font-size: 1em;
    padding: 0 15px;
    text-align: center;
    flex-grow: 1;
}

.page-xo-so .promo-card .card-button {
    margin-top: 20px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-xo-so .promo-card .card-button:hover {
    background-color: #e6b000;
}

/* Tips Section */
.page-xo-so .tips-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0;
}

.page-xo-so .tips-section h2 {
    color: var(--secondary-color);
}

.page-xo-so .tips-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-xo-so .tips-list li {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-xo-so .tips-list li h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-xo-so .tips-list li p {
    color: var(--text-dark);
    text-align: center;
}

/* FAQ Section */
.page-xo-so .faq-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.page-xo-so .faq-section h2 {
    color: var(--primary-color);
}

.page-xo-so .faq-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-xo-so .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-xo-so .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.page-xo-so .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-xo-so .faq-question:hover {
    background: #f5f5f5;
}

.page-xo-so .faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    color: var(--primary-color);
    text-align: left;
}

.page-xo-so .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-xo-so .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.page-xo-so .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
    background: #f9f9f9;
    color: var(--text-dark);
}

.page-xo-so .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 25px;
}

.page-xo-so .faq-answer p {
    margin: 0;
    text-align: justify;
}

/* CTA Bottom Section */
.page-xo-so .cta-bottom-section {
    background: linear-gradient(135deg, var(--bg-dark), var(--primary-color));
    color: var(--text-light);
    text-align: center;
    padding: 80px 20px;
}

.page-xo-so .cta-bottom-section h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.page-xo-so .cta-bottom-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-xo-so h1 {
        font-size: 2.5em;
    }
    .page-xo-so h2 {
        font-size: 2em;
    }
    .page-xo-so .banner-content p {
        font-size: 1.1em;
    }
    .page-xo-so .game-grid,
    .page-xo-so .feature-list,
    .page-xo-so .promo-grid,
    .page-xo-so .tips-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-xo-so .cta-button.large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-xo-so section {
        padding: 40px 0;
    }
    .page-xo-so h1 {
        font-size: 2em;
    }
    .page-xo-so h2 {
        font-size: 1.8em;
    }
    .page-xo-so h3 {
        font-size: 1.4em;
    }
    .page-xo-so p {
        font-size: 1em;
    }
    .page-xo-so .banner-section {
        flex-direction: column;
        padding: 60px 15px;
    }
    .page-xo-so .banner-image {
        margin-top: 30px;
    }
    .page-xo-so .cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-xo-so .game-card img,
    .page-xo-so .promo-card img {
        height: 200px;
    }
    .page-xo-so .feature-item h3 {
        font-size: 1.4em;
    }
    .page-xo-so .faq-question {
        padding: 15px 20px;
    }
    .page-xo-so .faq-question h3 {
        font-size: 1.1em;
    }
    .page-xo-so .faq-toggle {
        font-size: 20px;
    }
    .page-xo-so .faq-item.active .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-xo-so h1 {
        font-size: 1.8em;
    }
    .page-xo-so h2 {
        font-size: 1.6em;
    }
    .page-xo-so .cta-button.large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-xo-so .game-grid,
    .page-xo-so .feature-list,
    .page-xo-so .promo-grid,
    .page-xo-so .tips-list {
        grid-template-columns: 1fr;
    }
}