.page-79-bet {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
    line-height: 1.6;
    padding-bottom: 80px; /* Space for fixed buttons */
}

/* Base section styling */
.page-79-bet__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-79-bet__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold accent */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-79-bet__section-description {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-79-bet__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Decorative top spacing, assuming body has header offset */
    padding-bottom: 60px;
    background-color: #0d0d0d;
}

.page-79-bet__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
    max-width: 100% !important; /* Ensure responsiveness */
    box-sizing: border-box !important; /* Ensure responsiveness */
}

.page-79-bet__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.page-79-bet__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: bold;
}

.page-79-bet__hero-description {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-79-bet__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-79-bet__button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.page-79-bet__button--primary {
    background-color: #FFD700; /* Gold */
    color: #1a1a1a;
}

.page-79-bet__button--primary:hover {
    background-color: #FFC400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-79-bet__button--secondary {
    background-color: #2196F3; /* Blue */
    color: #fff;
}

.page-79-bet__button--secondary:hover {
    background-color: #1e88e5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Games Section */
.page-79-bet__games-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-79-bet__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-79-bet__game-card {
    background-color: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-79-bet__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-79-bet__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    max-width: 100% !important; /* Ensure responsiveness */
    box-sizing: border-box !important; /* Ensure responsiveness */
}

.page-79-bet__game-card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-79-bet__game-card-text {
    font-size: 1em;
    color: #ccc;
    padding: 0 15px;
}

/* Promotions Section */
.page-79-bet__promotions-section {
    background-color: #222;
    padding: 80px 20px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.page-79-bet__promo-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.page-79-bet__promo-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    max-width: 100% !important; /* Ensure responsiveness */
    height: auto !important; /* Ensure responsiveness */
    box-sizing: border-box !important; /* Ensure responsiveness */
}

.page-79-bet__promo-text {
    flex: 2;
    min-width: 300px;
    max-width: 600px;
}

.page-79-bet__promo-text p {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-79-bet__promo-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.page-79-bet__promo-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #f0f0f0;
    box-sizing: border-box; /* Required for list items */
    width: 100%; /* Required for list items */
    max-width: 100%; /* Required for list items */
    word-wrap: break-word; /* Required for list items */
    overflow-wrap: break-word; /* Required for list items */
}
@media (max-width: 768px) {
    .page-79-bet__promo-list li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 25px !important; /* Adjust padding for smaller screens */
        font-size: 1em;
    }
    .page-79-bet__promo-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}


/* Providers Section */
.page-79-bet__providers-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-79-bet__provider-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.page-79-bet__provider-logo {
    width: 180px;
    height: 100px;
    object-fit: contain;
    background-color: #333;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
    max-width: 100% !important; /* Ensure responsiveness */
    box-sizing: border-box !important; /* Ensure responsiveness */
}

.page-79-bet__provider-logo:hover {
    transform: scale(1.05);
}

/* Payment Section */
.page-79-bet__payment-section {
    background-color: #222;
    padding: 80px 20px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.page-79-bet__payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-79-bet__payment-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease;
}

.page-79-bet__payment-item:hover {
    transform: translateY(-5px);
}

.page-79-bet__payment-logo {
    width: 80px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    max-width: 100% !important; /* Ensure responsiveness */
    box-sizing: border-box !important; /* Ensure responsiveness */
}

.page-79-bet__payment-name {
    font-size: 1.1em;
    font-weight: bold;
    color: #FFD700;
}

/* FAQ Section */
.page-79-bet__faq-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.page-79-bet__faq-container {
    margin-top: 50px;
    text-align: left;
}

.page-79-bet__faq-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.page-79-bet__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #333;
    border-bottom: 1px solid #444;
    transition: background-color 0.3s ease;
    user-select: none;
}

.page-79-bet__faq-question:hover {
    background-color: #444;
}

.page-79-bet__faq-question-title {
    font-size: 1.4em;
    color: #FFD700;
    margin: 0;
    pointer-events: none; /* Crucial for click event on parent */
}

.page-79-bet__faq-toggle {
    font-size: 1.8em;
    color: #FFD700;
    font-weight: bold;
    transition: transform 0.3s ease;
    pointer-events: none; /* Crucial for click event on parent */
}

.page-79-bet__faq-item.active .page-79-bet__faq-toggle {
    transform: rotate(45deg);
}

.page-79-bet__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    color: #ccc;
    font-size: 1.1em;
}

.page-79-bet__faq-item.active .page-79-bet__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-79-bet__faq-answer p {
    margin: 0;
}

/* CTA Bottom Section */
.page-79-bet__cta-bottom-section {
    padding: 80px 20px;
    background-color: #0d0d0d;
    text-align: center;
    border-top: 1px solid #333;
}

/* Floating Buttons */
.page-79-bet__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-79-bet__floating-button {
    display: block;
    padding: 12px 25px;
    background-color: #FFD700; /* Gold-like color */
    color: #000;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-79-bet__floating-button:hover {
    background-color: #FFC400;
    transform: translateY(-2px);
}

.page-79-bet__floating-button--register {
    background-color: #4CAF50; /* Green */
    color: #fff;
}
.page-79-bet__floating-button--register:hover {
    background-color: #45a049;
}

.page-79-bet__floating-button--login {
    background-color: #2196F3; /* Blue */
    color: #fff;
}
.page-79-bet__floating-button--login:hover {
    background-color: #1e88e5;
}