
    /* General Styling for the page */
.page-78king-com {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
    overflow-x: hidden;
}

/* Section base styling */
.page-78king-com__hero-section,
.page-78king-com__product-showcase,
.page-78king-com__why-choose-us,
.page-78king-com__promotions,
.page-78king-com__faq-section,
.page-78king-com__cta-section {
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
}

/* Specific padding for hero to account for header offset */
.page-78king-com__hero-section {
    padding-top: 10px; /* Small decorative padding, assuming body has header offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Section Titles */
.page-78king-com__section-title,
.page-78king-com__hero-title,
.page-78king-com__cta-title {
    font-size: 2.5em;
    color: #ffcc00; /* Gold accent */
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}

.page-78king-com__section-description,
.page-78king-com__hero-description,
.page-78king-com__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #cccccc;
}

.page-78king-com__highlight {
    color: #ffcc00;
}

/* Buttons */
.page-78king-com__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    font-size: 1em;
    border: none;
    box-sizing: border-box;
}

.page-78king-com__button--primary {
    background-color: #ffcc00;
    color: #1a1a1a;
}

.page-78king-com__button--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-78king-com__button--secondary {
    background-color: transparent;
    color: #ffcc00;
    border: 2px solid #ffcc00;
    margin-left: 15px;
}

.page-78king-com__button--secondary:hover {
    background-color: #ffcc00;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.page-78king-com__button--large {
    padding: 15px 30px;
    font-size: 1.2em;
}

.page-78king-com__button--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Hero Section */
.page-78king-com__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-78king-com__hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.page-78king-com__hero-image-wrapper {
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    box-sizing: border-box;
}

.page-78king-com__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Product Showcase */
.page-78king-com__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center; /* Center items if they don't fill the grid */
}

.page-78king-com__game-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.page-78king-com__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-78king-com__game-card-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-bottom: 3px solid #ffcc00;
    box-sizing: border-box;
}

.page-78king-com__game-card-title {
    font-size: 1.5em;
    color: #ffcc00;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-78king-com__game-card-text {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 15px;
}

/* Why Choose Us */
.page-78king-com__why-choose-us {
    background-color: #1a1a1a;
}

.page-78king-com__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-78king-com__feature-item {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

.page-78king-com__feature-item:hover {
    transform: translateY(-5px);
    background-color: #333333;
}

.page-78king-com__feature-icon {
    width: 200px; /* Minimum size */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.page-78king-com__feature-title {
    font-size: 1.4em;
    color: #ffcc00;
    margin-bottom: 10px;
}

.page-78king-com__feature-description {
    font-size: 0.9em;
    color: #cccccc;
}

/* Promotions Section */
.page-78king-com__promotions {
    background-color: #222222;
}

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

.page-78king-com__promo-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.page-78king-com__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-78king-com__promo-card-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-bottom: 3px solid #ffcc00;
    box-sizing: border-box;
}

.page-78king-com__promo-card-title {
    font-size: 1.4em;
    color: #ffcc00;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-78king-com__promo-card-text {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 15px 20px;
}

.page-78king-com__promo-button-wrapper {
    padding-bottom: 20px;
}

/* FAQ Section */
.page-78king-com__faq-section {
    background-color: #1a1a1a;
}

.page-78king-com__faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.page-78king-com__faq-item {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.page-78king-com__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background-color: #333333;
    color: #ffcc00;
    font-weight: bold;
    font-size: 1.1em;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-78king-com__faq-question:hover {
    background-color: #444444;
}

.page-78king-com__faq-question-text {
    margin: 0;
    color: #ffcc00;
    font-size: 1.1em;
    pointer-events: none; /* Prevent h3 from blocking click on parent */
}

.page-78king-com__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle icon from blocking click on parent */
}

.page-78king-com__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    color: #cccccc;
    background-color: #2a2a2a;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    box-sizing: border-box;
}

.page-78king-com__faq-answer p {
    margin: 15px 0;
    padding: 0 5px; /* Adjust padding within answer content */
}

.page-78king-com__faq-item.active .page-78king-com__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 15px !important;
    opacity: 1;
}

.page-78king-com__faq-item.active .page-78king-com__faq-toggle {
    transform: rotate(45deg); /* Change '+' to 'x' or '-' */
}

/* CTA Section */
.page-78king-com__cta-section {
    background-color: #ffcc00;
    color: #1a1a1a;
    padding: 60px 20px;
    border-radius: 15px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-78king-com__cta-title {
    color: #1a1a1a;
    text-shadow: none;
}

.page-78king-com__cta-description {
    color: #444444;
}

.page-78king-com__cta-section .page-78king-com__button--large {
    background-color: #1a1a1a;
    color: #ffcc00;
}

.page-78king-com__cta-section .page-78king-com__button--large:hover {
    background-color: #333333;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-78king-com__section-title,
    .page-78king-com__hero-title,
    .page-78king-com__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-78king-com__hero-section {
        flex-direction: column;
        gap: 20px;
        padding-top: 10px; /* Still small padding, assuming shared.css handles header offset */
    }

    .page-78king-com__hero-title {
        font-size: 1.8em;
    }

    .page-78king-com__hero-description {
        font-size: 1em;
    }

    .page-78king-com__hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .page-78king-com__button--secondary {
        margin-left: 0;
    }

    .page-78king-com__section-title,
    .page-78king-com__cta-title {
        font-size: 1.6em;
    }

    .page-78king-com__section-description,
    .page-78king-com__cta-description {
        font-size: 0.95em;
    }

    .page-78king-com__game-categories,
    .page-78king-com__features-grid,
    .page-78king-com__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* List item specific responsive requirements */
    .page-78king-com__game-card,
    .page-78king-com__feature-item,
    .page-78king-com__promo-card,
    .page-78king-com__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-78king-com__faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-78king-com__faq-question-text {
        font-size: 1em;
    }

    .page-78king-com__faq-answer {
        padding: 0 10px; /* Adjusted padding for smaller screens */
    }

    .page-78king-com__faq-item.active .page-78king-com__faq-answer {
        padding: 15px 10px !important;
    }

    .page-78king-com__hero-image-wrapper,
    .page-78king-com__game-card-image,
    .page-78king-com__feature-icon,
    .page-78king-com__promo-card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .page-78king-com__section-title,
    .page-78king-com__hero-title,
    .page-78king-com__cta-title {
        font-size: 1.4em;
    }

    .page-78king-com__hero-description,
    .page-78king-com__section-description,
    .page-78king-com__cta-description {
        font-size: 0.9em;
    }

    .page-78king-com__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-78king-com__button--large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-78king-com__faq-question {
        padding: 10px 12px;
        font-size: 0.95em;
    }

    .page-78king-com__faq-question-text {
        font-size: 0.95em;
    }

    .page-78king-com__faq-toggle {
        font-size: 1.3em;
    }
    .page-78king-com__faq-item.active .page-78king-com__faq-answer {
        padding: 10px 10px !important;
    }
}
  