/* style/card-games-golden-flower-strategy.css */

/* Base styles for the page */
.page-card-games-golden-flower-strategy {
    font-family: Arial, sans-serif;
    color: #E0E0E0; /* Light grey for text on dark background */
    line-height: 1.6;
    background-color: #1A202C; /* Main dark background */
}

.page-card-games-golden-flower-strategy h1,
.page-card-games-golden-flower-strategy h2,
.page-card-games-golden-games-golden-flower-strategy h3 {
    color: #FFD700; /* Accent gold for headings */
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-card-games-golden-flower-strategy h1 {
    font-size: 2.8rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-card-games-golden-flower-strategy h2 {
    font-size: 2.2rem;
    color: #FFD700; /* Gold for main section titles */
    border-bottom: 2px solid rgba(255, 215, 0, 0.5);
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

.page-card-games-golden-flower-strategy h3 {
    font-size: 1.8rem;
    color: #FFFFFF; /* White for sub-titles */
    margin-top: 1.5rem;
}

.page-card-games-golden-flower-strategy p {
    margin-bottom: 1rem;
    color: #D0D0D0; /* Slightly darker grey for paragraphs */
}

.page-card-games-golden-flower-strategy ul,
.page-card-games-golden-flower-strategy ol {
    margin-left: 20px;
    margin-bottom: 1rem;
    color: #D0D0D0;
}

.page-card-games-golden-flower-strategy li {
    margin-bottom: 0.5rem;
}

.page-card-games-golden-flower-strategy strong {
    color: #FFD700;
}

.page-card-games-golden-flower-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-card-games-golden-flower-strategy__section {
    padding: 60px 0;
    background-color: #1A202C;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-card-games-golden-flower-strategy__section:last-of-type {
    border-bottom: none;
}

/* Hero Section */
.page-card-games-golden-flower-strategy__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3A3F47 100%); /* Dark gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.page-card-games-golden-flower-strategy__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.page-card-games-golden-flower-strategy__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.page-card-games-golden-flower-strategy__hero-content {
    max-width: 700px;
    z-index: 1;
    flex: 1 1 50%;
    min-width: 300px;
    padding: 0 20px;
}

.page-card-games-golden-flower-strategy__hero h1 {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.page-card-games-golden-flower-strategy__hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #E0E0E0;
}

.page-card-games-golden-flower-strategy__hero-image-wrapper {
    flex: 1 1 40%;
    min-width: 250px;
    max-width: 500px;
    z-index: 1;
}

.page-card-games-golden-flower-strategy__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

.page-card-games-golden-flower-strategy__hero-image:hover {
    transform: translateY(-5px);
}

/* Buttons */
.page-card-games-golden-flower-strategy__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    font-size: 1rem;
}

.page-card-games-golden-flower-strategy__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-card-games-golden-flower-strategy__btn--primary:hover {
    background-color: #E0B800;
    transform: translateY(-2px);
}

.page-card-games-golden-flower-strategy__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-card-games-golden-flower-strategy__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-card-games-golden-flower-strategy__btn--large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Image styles within content */
.page-card-games-golden-flower-strategy__image--full-width {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-card-games-golden-flower-strategy__image--half-width {
    max-width: 60%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* List styling */
.page-card-games-golden-flower-strategy ol li strong {
    color: #FFD700;
}

/* FAQ Section */
.page-card-games-golden-flower-strategy__faq-item {
    background-color: #2A303C;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-card-games-golden-flower-strategy__faq-item h3 {
    color: #FFD700;
    margin-top: 0;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-card-games-golden-flower-strategy__faq-item p {
    margin-top: 10px;
    color: #C0C0C0;
}

/* Call to Action Section */
.page-card-games-golden-flower-strategy__cta-section {
    background-color: #1A202C;
    text-align: center;
    padding: 80px 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-card-games-golden-flower-strategy__cta-section h2 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.page-card-games-golden-flower-strategy__cta-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #D0D0D0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-card-games-golden-flower-strategy__hero-content {
        flex: 1 1 100%;
    }
    .page-card-games-golden-flower-strategy__hero-image-wrapper {
        flex: 1 1 100%;
        max-width: 80%;
    }
    .page-card-games-golden-flower-strategy__image--half-width {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-card-games-golden-flower-strategy h1 {
        font-size: 2.2rem;
    }
    .page-card-games-golden-flower-strategy h2 {
        font-size: 1.8rem;
    }
    .page-card-games-golden-flower-strategy h3 {
        font-size: 1.4rem;
    }
    .page-card-games-golden-flower-strategy__hero h1 {
        font-size: 2.8rem;
    }
    .page-card-games-golden-flower-strategy__hero p {
        font-size: 1rem;
    }
    .page-card-games-golden-flower-strategy__btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .page-card-games-golden-flower-strategy__btn--large {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-card-games-golden-flower-strategy__image--half-width {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .page-card-games-golden-flower-strategy h1 {
        font-size: 1.8rem;
    }
    .page-card-games-golden-flower-strategy h2 {
        font-size: 1.5rem;
    }
    .page-card-games-golden-flower-strategy__hero h1 {
        font-size: 2.2rem;
    }
    .page-card-games-golden-flower-strategy__hero-content,
    .page-card-games-golden-flower-strategy__hero-image-wrapper {
        padding: 0 10px;
    }
    .page-card-games-golden-flower-strategy__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
}