
    /* Base styles for the page-99-ok */
.page-99-ok {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.page-99-ok__section-title {
    font-size: 2.5em;
    color: #ffcc00; /* Gold/Yellow for titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-99-ok__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #cccccc;
}

.page-99-ok__brand-highlight {
    color: #00ff99; /* Green accent */
}

.page-99-ok__keyword-emphasis {
    color: #ffcc00;
    font-weight: bold;
}

/* Sticky Buttons */
.page-99-ok__sticky-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
    width: 90%;
    max-width: 350px;
    justify-content: space-around;
}

.page-99-ok__button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-99-ok__button--register {
    background-color: #00cc66; /* Green */
    color: #ffffff;
}

.page-99-ok__button--register:hover {
    background-color: #00a34e;
    transform: translateY(-2px);
}

.page-99-ok__button--login {
    background-color: #0099ff; /* Blue */
    color: #ffffff;
}

.page-99-ok__button--login:hover {
    background-color: #007acc;
    transform: translateY(-2px);
}

/* Hero Section */
.page-99-ok__hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:betting,mobile,casino]') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
    padding: 10px 20px 80px 20px; /* 10px top for fixed header offset, 80px bottom for content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    box-sizing: border-box;
}

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

.page-99-ok__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffcc00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-99-ok__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-99-ok__hero-image {
    display: none; /* Hide hero image as it's used as background */
}

.page-99-ok__cta-button {
    display: inline-block;
    background-color: #ff0066; /* Pink accent */
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-99-ok__cta-button:hover {
    background-color: #cc0052;
    transform: translateY(-3px);
}

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

.page-99-ok__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-99-ok__feature-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-99-ok__feature-item:hover {
    transform: translateY(-10px);
}

.page-99-ok__feature-icon {
    width: 200px; /* Min size 200x200 */
    height: auto;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    box-sizing: border-box;
}

.page-99-ok__feature-title {
    font-size: 1.8em;
    color: #ffcc00;
    margin-bottom: 15px;
}

.page-99-ok__feature-text {
    font-size: 1em;
    color: #cccccc;
}

/* Games Section */
.page-99-ok__games-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-99-ok__game-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-99-ok__game-card:hover {
    transform: translateY(-10px);
}

.page-99-ok__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    box-sizing: border-box;
}

.page-99-ok__game-title {
    font-size: 1.5em;
    color: #00ff99;
    margin: 15px 0 10px 0;
    padding: 0 15px;
}

.page-99-ok__game-description {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 15px 20px 15px;
}

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

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

.page-99-ok__promo-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-99-ok__promo-card:hover {
    transform: translateY(-10px);
}

.page-99-ok__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
}

.page-99-ok__promo-title {
    font-size: 1.6em;
    color: #ffcc00;
    margin: 20px 0 10px 0;
    padding: 0 15px;
}

.page-99-ok__promo-text {
    font-size: 1em;
    color: #cccccc;
    padding: 0 15px 20px 15px;
}

.page-99-ok__centered-button {
    margin-top: 50px;
    text-align: center;
}

.page-99-ok__cta-button--large {
    padding: 18px 45px;
    font-size: 1.3em;
    border-radius: 8px;
}

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

.page-99-ok__app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-99-ok__app-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.page-99-ok__app-description-text {
    text-align: left;
    max-width: 600px;
    color: #cccccc;
}

.page-99-ok__app-description-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-99-ok__app-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-99-ok__app-benefits li {
    background-color: #2a2a2a;
    margin-bottom: 10px;
    padding: 12px 20px;
    border-left: 4px solid #00ff99;
    border-radius: 5px;
    font-size: 1em;
    color: #e0e0e0;
    box-sizing: border-box;
}

.page-99-ok__cta-button--app-download {
    background-color: #0099ff;
}

.page-99-ok__cta-button--app-download:hover {
    background-color: #007acc;
}

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

.page-99-ok__providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for smaller items */
    gap: 20px;
    margin-top: 40px;
}

.page-99-ok__provider-item {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    color: #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    box-sizing: border-box;
}

.page-99-ok__provider-item:hover {
    background-color: #3a3a3a;
}

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

.page-99-ok__payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for smaller items */
    gap: 20px;
    margin-top: 40px;
}

.page-99-ok__payment-item {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    color: #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    box-sizing: border-box;
}

.page-99-ok__payment-item:hover {
    background-color: #3a3a3a;
}

/* FAQ Section */
.page-99-ok__faq-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-99-ok__faq-list {
    margin-top: 40px;
}

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

.page-99-ok__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #3a3a3a;
    color: #ffcc00;
    font-size: 1.2em;
    font-weight: bold;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-99-ok__faq-question:hover {
    background-color: #4a4a4a;
}

.page-99-ok__faq-question-title {
    margin: 0;
    color: inherit;
    font-size: 1em; /* Ensures h3 doesn't override parent font size */
    pointer-events: none; /* Prevent h3 from blocking click event on parent */
}

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

.page-99-ok__faq-item.active .page-99-ok__faq-toggle {
    transform: rotate(45deg); /* Change + to X (or rotate to -) */
}

.page-99-ok__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Adjust padding to match question's horizontal 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: #cccccc;
    font-size: 1em;
    background-color: #2a2a2a;
}

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

.page-99-ok__faq-answer p {
    margin: 0;
}

/* Contact Promo Section (final CTA) */
.page-99-ok__contact-promo-section {
    padding: 60px 20px 100px 20px; /* More padding at bottom to avoid sticky buttons */
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-99-ok__hero-title {
        font-size: 3em;
    }
    .page-99-ok__hero-description {
        font-size: 1.2em;
    }
    .page-99-ok__section-title {
        font-size: 2em;
    }
    .page-99-ok__app-content {
        flex-direction: column;
    }
    .page-99-ok__app-description-text {
        text-align: center;
    }
    .page-99-ok__app-benefits {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .page-99-ok__hero-title {
        font-size: 2.5em;
    }
    .page-99-ok__hero-description {
        font-size: 1.1em;
    }
    .page-99-ok__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-99-ok__section-title {
        font-size: 1.8em;
    }
    .page-99-ok__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-99-ok__features-grid,
    .page-99-ok__game-categories,
    .page-99-ok__promo-grid,
    .page-99-ok__providers-grid,
    .page-99-ok__payments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* List item responsive requirements */
    .page-99-ok__app-benefits li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding to fit */
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .page-99-ok__app-benefits {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-99-ok__feature-icon,
    .page-99-ok__game-image,
    .page-99-ok__promo-image,
    .page-99-ok__app-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-99-ok__faq-question,
    .page-99-ok__faq-answer {
        padding: 15px 15px; /* Reduced padding for mobile */
    }
    .page-99-ok__faq-item.active .page-99-ok__faq-answer {
        padding: 15px 15px !important;
    }
    .page-99-ok__faq-question-title {
        font-size: 0.95em;
    }
    .page-99-ok__faq-toggle {
        font-size: 1.3em;
    }

    .page-99-ok__sticky-buttons {
        bottom: 15px;
        gap: 10px;
        max-width: 95%;
    }
    .page-99-ok__button {
        padding: 10px 15px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-99-ok__hero-title {
        font-size: 2em;
    }
    .page-99-ok__hero-description {
        font-size: 1em;
    }
    .page-99-ok__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-99-ok__sticky-buttons {
        bottom: 10px;
        gap: 8px;
        max-width: 98%;
    }
}
  