:root {
    --caxeng-gold: #FFD700; /* Primary brand color */
    --caxeng-blue: #00BFFF; /* Secondary brand color */
    --caxeng-dark-blue: #004080; /* Darker blue for contrast, ensures WCAG AA with white text */
    --text-dark: #333333; /* Main text color on light backgrounds */
    --text-light: #ffffff; /* Text color on dark backgrounds */
    --bg-light: #f8f8f8; /* Light background for sections */
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
}

.page-fish-shooting-games-caxeng-exclusive {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.page-fish-shooting-games-caxeng-exclusive__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-fish-shooting-games-caxeng-exclusive__hero {
    background: linear-gradient(135deg, var(--caxeng-dark-blue) 0%, var(--caxeng-blue) 100%);
    color: var(--text-light);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-fish-shooting-games-caxeng-exclusive__hero-content {
    z-index: 2;
    max-width: 800px;
}

.page-fish-shooting-games-caxeng-exclusive__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--caxeng-gold);
    line-height: 1.2;
}

.page-fish-shooting-games-caxeng-exclusive__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-fish-shooting-games-caxeng-exclusive__hero-link {
    color: var(--caxeng-gold);
    text-decoration: none;
    font-weight: bold;
}

.page-fish-shooting-games-caxeng-exclusive__hero-link:hover {
    text-decoration: underline;
}

.page-fish-shooting-games-caxeng-exclusive__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-fish-shooting-games-caxeng-exclusive__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(50%);
}

.page-fish-shooting-games-caxeng-exclusive__heading {
    font-size: 2.5em;
    color: var(--caxeng-dark-blue);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-fish-shooting-games-caxeng-exclusive__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--caxeng-gold);
    border-radius: 2px;
}

.page-fish-shooting-games-caxeng-exclusive__sub-heading {
    font-size: 1.8em;
    color: var(--caxeng-dark-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-fish-shooting-games-caxeng-exclusive__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-fish-shooting-games-caxeng-exclusive__paragraph--cta {
    color: var(--text-light);
}

.page-fish-shooting-games-caxeng-exclusive__link {
    color: var(--caxeng-blue);
    text-decoration: none;
    font-weight: bold;
}

.page-fish-shooting-games-caxeng-exclusive__link:hover {
    text-decoration: underline;
}

.page-fish-shooting-games-caxeng-exclusive__link--cta {
    color: var(--caxeng-gold);
}

.page-fish-shooting-games-caxeng-exclusive__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-fish-shooting-games-caxeng-exclusive__btn--primary {
    background-color: var(--caxeng-gold);
    color: var(--caxeng-dark-blue);
}

.page-fish-shooting-games-caxeng-exclusive__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-light);
}

.page-fish-shooting-games-caxeng-exclusive__btn--secondary {
    background-color: var(--caxeng-blue);
    color: var(--text-light);
}

.page-fish-shooting-games-caxeng-exclusive__btn--secondary:hover {
    background-color: #00a3e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-light);
}

.page-fish-shooting-games-caxeng-exclusive__btn--link {
    background: none;
    color: var(--caxeng-blue);
    padding: 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-fish-shooting-games-caxeng-exclusive__btn--link:hover {
    color: var(--caxeng-dark-blue);
}

.page-fish-shooting-games-caxeng-exclusive__btn--center {
    display: block;
    margin: 40px auto 0 auto;
    width: fit-content;
}

.page-fish-shooting-games-caxeng-exclusive__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-fish-shooting-games-caxeng-exclusive__about {
    background-color: var(--bg-light);
}

.page-fish-shooting-games-caxeng-exclusive__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fish-shooting-games-caxeng-exclusive__feature-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fish-shooting-games-caxeng-exclusive__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-light);
}

.page-fish-shooting-games-caxeng-exclusive__feature-title {
    color: var(--caxeng-dark-blue);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-fish-shooting-games-caxeng-exclusive__feature-description {
    color: var(--text-dark);
}

.page-fish-shooting-games-caxeng-exclusive__exclusive-features {
    background-color: var(--caxeng-dark-blue);
    color: var(--text-light);
}

.page-fish-shooting-games-caxeng-exclusive__exclusive-features .page-fish-shooting-games-caxeng-exclusive__heading {
    color: var(--caxeng-gold);
}

.page-fish-shooting-games-caxeng-exclusive__exclusive-features .page-fish-shooting-games-caxeng-exclusive__heading::after {
    background-color: var(--caxeng-blue);
}

.page-fish-shooting-games-caxeng-exclusive__exclusive-features .page-fish-shooting-games-caxeng-exclusive__sub-heading {
    color: var(--caxeng-blue);
}

.page-fish-shooting-games-caxeng-exclusive__exclusive-features .page-fish-shooting-games-caxeng-exclusive__paragraph {
    color: var(--text-light);
}

.page-fish-shooting-games-caxeng-exclusive__exclusive-features .page-fish-shooting-games-caxeng-exclusive__link {
    color: var(--caxeng-gold);
}

.page-fish-shooting-games-caxeng-exclusive__content-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    text-align: left;
}

.page-fish-shooting-games-caxeng-exclusive__content-flex:last-of-type {
    margin-bottom: 0;
}

.page-fish-shooting-games-caxeng-exclusive__content-flex--reverse {
    flex-direction: row-reverse;
}

.page-fish-shooting-games-caxeng-exclusive__text-content {
    flex: 1;
}

.page-fish-shooting-games-caxeng-exclusive__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-fish-shooting-games-caxeng-exclusive__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fish-shooting-games-caxeng-exclusive__guide {
    background-color: var(--text-light);
}

.page-fish-shooting-games-caxeng-exclusive__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fish-shooting-games-caxeng-exclusive__step-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    text-align: left;
    position: relative;
    padding-top: 60px;
}

.page-fish-shooting-games-caxeng-exclusive__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--caxeng-gold);
    color: var(--caxeng-dark-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fish-shooting-games-caxeng-exclusive__step-title {
    color: var(--caxeng-dark-blue);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-fish-shooting-games-caxeng-exclusive__step-description {
    color: var(--text-dark);
}

.page-fish-shooting-games-caxeng-exclusive__tips {
    background-color: var(--caxeng-blue);
}

.page-fish-shooting-games-caxeng-exclusive__tips .page-fish-shooting-games-caxeng-exclusive__heading {
    color: var(--text-light);
}

.page-fish-shooting-games-caxeng-exclusive__tips .page-fish-shooting-games-caxeng-exclusive__heading::after {
    background-color: var(--caxeng-gold);
}

.page-fish-shooting-games-caxeng-exclusive__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fish-shooting-games-caxeng-exclusive__tip-item {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.page-fish-shooting-games-caxeng-exclusive__tip-title {
    color: var(--caxeng-dark-blue);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-fish-shooting-games-caxeng-exclusive__tip-description {
    color: var(--text-dark);
}

.page-fish-shooting-games-caxeng-exclusive__platform-overview {
    background-color: var(--bg-light);
}

.page-fish-shooting-games-caxeng-exclusive__overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fish-shooting-games-caxeng-exclusive__overview-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    text-align: center;
}

.page-fish-shooting-games-caxeng-exclusive__overview-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.page-fish-shooting-games-caxeng-exclusive__overview-title {
    color: var(--caxeng-dark-blue);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-fish-shooting-games-caxeng-exclusive__overview-description {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.page-fish-shooting-games-caxeng-exclusive__other-games {
    background-color: var(--caxeng-dark-blue);
    color: var(--text-light);
}

.page-fish-shooting-games-caxeng-exclusive__other-games .page-fish-shooting-games-caxeng-exclusive__heading {
    color: var(--caxeng-gold);
}

.page-fish-shooting-games-caxeng-exclusive__other-games .page-fish-shooting-games-caxeng-exclusive__heading::after {
    background-color: var(--caxeng-blue);
}

.page-fish-shooting-games-caxeng-exclusive__other-games .page-fish-shooting-games-caxeng-exclusive__paragraph {
    color: var(--text-light);
}

.page-fish-shooting-games-caxeng-exclusive__other-games .page-fish-shooting-games-caxeng-exclusive__link {
    color: var(--caxeng-gold);
}

.page-fish-shooting-games-caxeng-exclusive__game-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-fish-shooting-games-caxeng-exclusive__game-item {
    background-color: rgba(0, 64, 128, 0.7);
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fish-shooting-games-caxeng-exclusive__game-title {
    color: var(--caxeng-blue);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-fish-shooting-games-caxeng-exclusive__game-description {
    color: var(--text-light);
}

.page-fish-shooting-games-caxeng-exclusive__community {
    background-color: var(--bg-light);
}

.page-fish-shooting-games-caxeng-exclusive__community-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fish-shooting-games-caxeng-exclusive__community-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    text-align: left;
}

.page-fish-shooting-games-caxeng-exclusive__community-title {
    color: var(--caxeng-dark-blue);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-fish-shooting-games-caxeng-exclusive__community-description {
    color: var(--text-dark);
}

.page-fish-shooting-games-caxeng-exclusive__cta {
    background: linear-gradient(45deg, var(--caxeng-gold) 0%, var(--caxeng-blue) 100%);
    padding: 80px 20px;
    color: var(--text-light);
}

.page-fish-shooting-games-caxeng-exclusive__heading--cta {
    color: var(--caxeng-dark-blue);
}

.page-fish-shooting-games-caxeng-exclusive__heading--cta::after {
    background-color: var(--caxeng-dark-blue);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fish-shooting-games-caxeng-exclusive__hero-title {
        font-size: 2.5em;
    }

    .page-fish-shooting-games-caxeng-exclusive__hero-subtitle {
        font-size: 1.1em;
    }

    .page-fish-shooting-games-caxeng-exclusive__heading {
        font-size: 2em;
    }

    .page-fish-shooting-games-caxeng-exclusive__content-flex {
        flex-direction: column;
        text-align: center;
    }

    .page-fish-shooting-games-caxeng-exclusive__content-flex--reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-fish-shooting-games-caxeng-exclusive__section {
        padding: 40px 15px;
    }

    .page-fish-shooting-games-caxeng-exclusive__hero {
        padding: 60px 15px;
    }

    .page-fish-shooting-games-caxeng-exclusive__hero-title {
        font-size: 2em;
    }

    .page-fish-shooting-games-caxeng-exclusive__heading {
        font-size: 1.8em;
    }

    .page-fish-shooting-games-caxeng-exclusive__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-fish-shooting-games-caxeng-exclusive__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-fish-shooting-games-caxeng-exclusive__features-grid,
    .page-fish-shooting-games-caxeng-exclusive__steps-grid,
    .page-fish-shooting-games-caxeng-exclusive__tips-grid,
    .page-fish-shooting-games-caxeng-exclusive__overview-grid,
    .page-fish-shooting-games-caxeng-exclusive__game-list,
    .page-fish-shooting-games-caxeng-exclusive__community-items {
        grid-template-columns: 1fr;
    }

    .page-fish-shooting-games-caxeng-exclusive__step-item,
    .page-fish-shooting-games-caxeng-exclusive__feature-item,
    .page-fish-shooting-games-caxeng-exclusive__tip-item,
    .page-fish-shooting-games-caxeng-exclusive__overview-item,
    .page-fish-shooting-games-caxeng-exclusive__game-item,
    .page-fish-shooting-games-caxeng-exclusive__community-item {
        padding: 25px;
        padding-top: 50px; /* Adjust for step number */
    }

    .page-fish-shooting-games-caxeng-exclusive__step-number {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .page-fish-shooting-games-caxeng-exclusive__hero-title {
        font-size: 1.8em;
    }

    .page-fish-shooting-games-caxeng-exclusive__hero-subtitle {
        font-size: 1em;
    }

    .page-fish-shooting-games-caxeng-exclusive__heading {
        font-size: 1.6em;
    }

    .page-fish-shooting-games-caxeng-exclusive__sub-heading {
        font-size: 1.4em;
    }

    .page-fish-shooting-games-caxeng-exclusive__paragraph {
        font-size: 0.95em;
    }

    .page-fish-shooting-games-caxeng-exclusive__btn--large {
        width: 100%;
    }
}