
    :root {
    --page-sun79-primary-color: #e44d26; /* A vibrant orange-red, common in betting sites */
    --page-sun79-secondary-color: #f7b731; /* Golden yellow for accents */
    --page-sun79-dark-background: #1a1a1a; /* Dark background */
    --page-sun79-light-background: #2a2a2a; /* Slightly lighter dark background */
    --page-sun79-text-color: #f0f0f0; /* Light text for dark backgrounds */
    --page-sun79-accent-text-color: #ffffff; /* White for important text */
    --page-sun79-border-color: #444;
    --page-sun79-button-hover-color: #ff6f3d;
}

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

.page-sun79 * {
    box-sizing: border-box;
}

.page-sun79__section-title,
.page-sun79__sub-section-title {
    text-align: center;
    color: var(--page-sun79-secondary-color);
    margin-bottom: 30px;
    padding: 20px 15px 0;
    font-size: 2.2em;
    font-weight: bold;
}

.page-sun79__sub-section-title {
    font-size: 1.8em;
    color: var(--page-sun79-primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Hero Section */
.page-sun79__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px; /* 10px top padding as per instruction */
    background: linear-gradient(135deg, var(--page-sun79-dark-background) 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.page-sun79__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-sun79__hero-title {
    font-size: 2.8em;
    color: var(--page-sun79-accent-text-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sun79__hero-description {
    font-size: 1.1em;
    color: var(--page-sun79-text-color);
    margin-bottom: 30px;
}

.page-sun79__hero-cta-button,
.page-sun79__cta-bottom-button {
    display: inline-block;
    background-color: var(--page-sun79-primary-color);
    color: var(--page-sun79-accent-text-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-sun79__hero-cta-button:hover,
.page-sun79__cta-bottom-button:hover {
    background-color: var(--page-sun79-button-hover-color);
    transform: translateY(-2px);
}

.page-sun79__hero-image-wrapper {
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-sun79__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Product Section */
.page-sun79__products-section,
.page-sun79__why-choose-section,
.page-sun79__promotions-news-section,
.page-sun79__payment-providers-section,
.page-sun79__cta-bottom-section,
.page-sun79__faq-section {
    padding: 40px 20px;
    margin-bottom: 20px;
    background-color: var(--page-sun79-light-background);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
}

.page-sun79__products-grid,
.page-sun79__features-grid,
.page-sun79__news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.page-sun79__product-card,
.page-sun79__feature-item,
.page-sun79__news-card {
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-sun79__product-card:hover,
.page-sun79__feature-item:hover,
.page-sun79__news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-sun79__product-image,
.page-sun79__feature-icon,
.page-sun79__news-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--page-sun79-border-color);
}

.page-sun79__feature-icon {
    height: 150px; /* Slightly smaller for icons */
    object-fit: contain; /* Ensure icons are fully visible */
    padding: 20px;
}

.page-sun79__product-title,
.page-sun79__feature-title,
.page-sun79__news-title {
    font-size: 1.4em;
    color: var(--page-sun79-secondary-color);
    margin: 15px 10px 10px;
}

.page-sun79__product-description,
.page-sun79__feature-description {
    font-size: 0.95em;
    color: var(--page-sun79-text-color);
    padding: 0 15px 20px;
    flex-grow: 1;
}

/* News Section Specifics */
.page-sun79__news-card .page-sun79__news-image {
    height: 220px;
}

.page-sun79__news-content {
    padding: 15px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-sun79__news-date {
    font-size: 0.85em;
    color: #999;
    margin-bottom: 10px;
}

.page-sun79__news-description {
    font-size: 0.95em;
    color: var(--page-sun79-text-color);
    flex-grow: 1;
}

/* Payment & Providers Section */
.page-sun79__payment-providers-section {
    padding-bottom: 50px;
}

.page-sun79__section-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.page-sun79__payment-methods,
.page-sun79__game-providers {
    text-align: center;
}

.page-sun79__logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
    margin-top: 20px;
}

.page-sun79__logo-link {
    display: block;
    background-color: #444;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 200px; /* Max width for logos */
    box-sizing: border-box;
}

.page-sun79__logo-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-sun79__logo-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    min-height: 50px; /* Ensure logos have minimum height */
}

/* CTA Bottom Section */
.page-sun79__cta-bottom-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #222;
}

.page-sun79__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.page-sun79__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-sun79__faq-item {
    background-color: #333;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sun79__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background-color: #444;
    color: var(--page-sun79-accent-text-color);
    font-weight: bold;
    font-size: 1.1em;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-sun79__faq-question:hover {
    background-color: #555;
}

.page-sun79__faq-question-title {
    margin: 0;
    font-size: 1em; /* Adjust to fit the parent font size */
    color: var(--page-sun79-accent-text-color);
    pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-sun79__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent span from blocking click event */
}

.page-sun79__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px; /* Adjusted from 15px to 20px for consistency with question padding */
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    color: var(--page-sun79-text-color);
    background-color: #3a3a3a;
}

.page-sun79__faq-answer p {
    margin: 0;
    padding-bottom: 5px; /* Small padding at the bottom of the paragraph */
}

.page-sun79__faq-item.active .page-sun79__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px !important; /* Ensure padding is applied when active */
    opacity: 1;
}

.page-sun79__faq-item.active .page-sun79__faq-toggle {
    transform: rotate(45deg); /* Change '+' to 'x' visually */
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-sun79__hero-title {
        font-size: 2.2em;
    }

    .page-sun79__section-title {
        font-size: 1.8em;
    }

    .page-sun79__sub-section-title {
        font-size: 1.5em;
    }

    .page-sun79__hero-cta-button,
    .page-sun79__cta-bottom-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-sun79__products-grid,
    .page-sun79__features-grid,
    .page-sun79__news-grid,
    .page-sun79__logo-grid {
        grid-template-columns: 1fr; /* Single column layout for small screens */
    }

    .page-sun79__product-card,
    .page-sun79__feature-item,
    .page-sun79__news-card,
    .page-sun79__logo-link {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-sun79__products-section,
    .page-sun79__why-choose-section,
    .page-sun79__promotions-news-section,
    .page-sun79__payment-providers-section,
    .page-sun79__cta-bottom-section,
    .page-sun79__faq-section {
        padding: 20px 15px; /* Adjust section padding */
        margin: 10px auto;
    }

    .page-sun79__hero-section {
        padding: 10px 15px 30px;
    }

    .page-sun79__hero-image-wrapper {
        margin-top: 20px;
    }

    .page-sun79__logo-grid {
        padding: 0 10px; /* Adjust padding for logo grid */
    }

    .page-sun79__logo-image {
        min-height: 40px;
    }

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

    .page-sun79__faq-answer {
        padding: 0 15px;
    }

    .page-sun79__faq-item.active .page-sun79__faq-answer {
        padding: 15px !important;
    }

    /* Image responsiveness - already handled by max-width: 100%; height: auto; on images and container width */
    .page-sun79__hero-image,
    .page-sun79__product-image,
    .page-sun79__feature-icon,
    .page-sun79__news-image,
    .page-sun79__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-sun79__hero-image-wrapper,
    .page-sun79__product-card,
    .page-sun79__feature-item,
    .page-sun79__news-card,
    .page-sun79__logo-link {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* Word break for lists and descriptions */
    .page-sun79__product-description,
    .page-sun79__feature-description,
    .page-sun79__news-description,
    .page-sun79__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
}
  