/* style/games-center-pg66-ways-of-the-qilin.css */

/* Variables for colors */
:root {
    --pg66-primary-color: #0A2463; /* Dark Blue */
    --pg66-secondary-color: #FFD700; /* Gold */
    --pg66-text-light: #FFFFFF;
    --pg66-text-dark: #333333; /* A darker shade for readability on light backgrounds */
    --pg66-text-on-primary: #FFFFFF;
    --pg66-text-on-secondary: #0A2463; /* Dark blue text on gold background */
    --pg66-accent-light: #546692; /* Lighter shade of primary for subtle backgrounds */
    --pg66-accent-dark: #b39700; /* Darker shade of secondary for text on gold */
}

.page-games-center-pg66-ways-of-the-qilin {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--pg66-text-dark); /* Default text color for light sections */
    background-color: #f8f8f8; /* Light background for overall page */
}

.page-games-center-pg66-ways-of-the-qilin__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-games-center-pg66-ways-of-the-qilin__hero-section {
    background: linear-gradient(135deg, var(--pg66-primary-color) 0%, #1A3B8A 100%); /* Gradient with primary color */
    color: var(--pg66-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-center-pg66-ways-of-the-qilin__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:qilin,pattern,abstract,oriental]') no-repeat center center/cover; /* Background pattern */
    opacity: 0.1;
    z-index: 0;
}

.page-games-center-pg66-ways-of-the-qilin__hero-section .page-games-center-pg66-ways-of-the-qilin__container {
    position: relative;
    z-index: 1;
}

.page-games-center-pg66-ways-of-the-qilin__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--pg66-secondary-color); /* Gold title */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-games-center-pg66-ways-of-the-qilin__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--pg66-text-light);
}

/* General Section Styling */
.page-games-center-pg66-ways-of-the-qilin__section {
    padding: 60px 0;
    background-color: var(--pg66-text-light); /* Default light background */
    border-bottom: 1px solid #eee;
}

.page-games-center-pg66-ways-of-the-qilin__section:nth-of-type(even) {
    background-color: #f0f4f7; /* Slightly darker background for alternating sections */
}

.page-games-center-pg66-ways-of-the-qilin__section-title {
    font-size: 2.5em;
    color: var(--pg66-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-games-center-pg66-ways-of-the-qilin__section-intro,
.page-games-center-pg66-ways-of-the-qilin__section-outro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
    color: var(--pg66-text-dark);
}

/* Content Wrapper for text and image side-by-side */
.page-games-center-pg66-ways-of-the-qilin__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-games-center-pg66-ways-of-the-qilin__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-games-center-pg66-ways-of-the-qilin__text-content {
    flex: 1;
    color: var(--pg66-text-dark);
}

.page-games-center-pg66-ways-of-the-qilin__text-content h3 {
    color: var(--pg66-primary-color);
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-games-center-pg66-ways-of-the-qilin__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-games-center-pg66-ways-of-the-qilin__text-content ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-games-center-pg66-ways-of-the-qilin__text-content ul li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-games-center-pg66-ways-of-the-qilin__image-content {
    flex: 1;
    text-align: center;
}

.page-games-center-pg66-ways-of-the-qilin__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.page-games-center-pg66-ways-of-the-qilin__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-games-center-pg66-ways-of-the-qilin__button--primary {
    background-color: var(--pg66-secondary-color); /* Gold button */
    color: var(--pg66-text-on-secondary); /* Dark blue text on gold */
    border: 2px solid var(--pg66-secondary-color);
}

.page-games-center-pg66-ways-of-the-qilin__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.page-games-center-pg66-ways-of-the-qilin__button--secondary {
    background-color: transparent;
    color: var(--pg66-secondary-color); /* Gold text */
    border: 2px solid var(--pg66-secondary-color);
    margin-left: 20px;
}

.page-games-center-pg66-ways-of-the-qilin__button--secondary:hover {
    background-color: var(--pg66-secondary-color);
    color: var(--pg66-text-on-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.page-games-center-pg66-ways-of-the-qilin__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    min-width: 120px;
    margin-top: 10px;
    margin-right: 10px;
}

/* Feature Grid */
.page-games-center-pg66-ways-of-the-qilin__feature-grid,
.page-games-center-pg66-ways-of-the-qilin__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-games-center-pg66-ways-of-the-qilin__feature-item,
.page-games-center-pg66-ways-of-the-qilin__strategy-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, box-shadow 0.3s ease;
}

.page-games-center-pg66-ways-of-the-qilin__feature-item:hover,
.page-games-center-pg66-ways-of-the-qilin__strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-games-center-pg66-ways-of-the-qilin__feature-icon,
.page-games-center-pg66-ways-of-the-qilin__strategy-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-games-center-pg66-ways-of-the-qilin__feature-item h3,
.page-games-center-pg66-ways-of-the-qilin__strategy-item h3 {
    color: var(--pg66-primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-games-center-pg66-ways-of-the-qilin__feature-item p,
.page-games-center-pg66-ways-of-the-qilin__strategy-item p {
    color: var(--pg66-text-dark);
    font-size: 1em;
}

/* CTA Section */
.page-games-center-pg66-ways-of-the-qilin__cta-section {
    background: var(--pg66-primary-color); /* Dark blue background */
    color: var(--pg66-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-games-center-pg66-ways-of-the-qilin__cta-title {
    color: var(--pg66-secondary-color); /* Gold title */
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-games-center-pg66-ways-of-the-qilin__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--pg66-text-light);
}

.page-games-center-pg66-ways-of-the-qilin__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Registration Guide */
.page-games-center-pg66-ways-of-the-qilin__registration-guide {
    background-color: #fff;
}

.page-games-center-pg66-ways-of-the-qilin__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-games-center-pg66-ways-of-the-qilin__steps-list li {
    background-color: #f0f4f7;
    border-left: 5px solid var(--pg66-secondary-color);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.page-games-center-pg66-ways-of-the-qilin__steps-list li h3 {
    color: var(--pg66-primary-color);
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-games-center-pg66-ways-of-the-qilin__steps-list li p {
    color: var(--pg66-text-dark);
    margin-bottom: 10px;
}

.page-games-center-pg66-ways-of-the-qilin__steps-list li a {
    color: var(--pg66-primary-color);
    text-decoration: underline;
}

.page-games-center-pg66-ways-of-the-qilin__steps-list li a:hover {
    color: var(--pg66-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games-center-pg66-ways-of-the-qilin__hero-title {
        font-size: 2.8em;
    }
    .page-games-center-pg66-ways-of-the-qilin__section-title {
        font-size: 2em;
    }
    .page-games-center-pg66-ways-of-the-qilin__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .page-games-center-pg66-ways-of-the-qilin__content-wrapper--reverse {
        flex-direction: column; /* Stacks normally on smaller screens */
    }
    .page-games-center-pg66-ways-of-the-qilin__cta-title {
        font-size: 2.2em;
    }
    .page-games-center-pg66-ways-of-the-qilin__button {
        min-width: unset;
        width: 100%;
    }
    .page-games-center-pg66-ways-of-the-qilin__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-games-center-pg66-ways-of-the-qilin__cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-games-center-pg66-ways-of-the-qilin__hero-section {
        padding: 80px 0;
    }
    .page-games-center-pg66-ways-of-the-qilin__hero-title {
        font-size: 2.2em;
    }
    .page-games-center-pg66-ways-of-the-qilin__hero-description {
        font-size: 1.1em;
    }
    .page-games-center-pg66-ways-of-the-qilin__section {
        padding: 40px 0;
    }
    .page-games-center-pg66-ways-of-the-qilin__section-title {
        font-size: 1.8em;
    }
    .page-games-center-pg66-ways-of-the-qilin__feature-grid,
    .page-games-center-pg66-ways-of-the-qilin__strategy-grid {
        grid-template-columns: 1fr;
    }
    .page-games-center-pg66-ways-of-the-qilin__cta-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-games-center-pg66-ways-of-the-qilin__hero-title {
        font-size: 1.8em;
    }
    .page-games-center-pg66-ways-of-the-qilin__hero-description {
        font-size: 1em;
    }
    .page-games-center-pg66-ways-of-the-qilin__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-games-center-pg66-ways-of-the-qilin__steps-list li {
        padding: 20px;
    }
    .page-games-center-pg66-ways-of-the-qilin__steps-list li h3 {
        font-size: 1.4em;
    }
}