
    .page-7kp88 {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a; /* Dark background */
    color: #f0f0f0; /* Light text for contrast */
    line-height: 1.6;
    overflow-x: hidden;
}

.page-7kp88__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent */
    text-align: center;
    margin-bottom: 20px;
    padding: 0 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-7kp88__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.page-7kp88__button--primary {
    background-color: #DC143C; /* Crimson */
    color: #ffffff;
}

.page-7kp88__button--primary:hover {
    background-color: #b20f30;
    transform: translateY(-2px);
}

.page-7kp88__button--secondary {
    background-color: #00BFFF; /* Deep Sky Blue */
    color: #ffffff;
    margin-left: 15px;
}

.page-7kp88__button--secondary:hover {
    background-color: #009acd;
    transform: translateY(-2px);
}

/* Hero Section */
.page-7kp88__hero-section {
    position: relative;
    padding: 10px 20px 60px; /* Minimal padding-top, assuming body handles header offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh; /* Ensures it takes up a good portion of the viewport */
    background: linear-gradient(135deg, #222, #0a0a0a);
    box-sizing: border-box;
}

.page-7kp88__brand-logo {
    margin-bottom: 30px;
}

.page-7kp88__brand-title {
    font-size: 4em;
    color: #FFD700;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-7kp88__brand-slogan {
    font-size: 1.5em;
    color: #f0f0f0;
    margin-top: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-7kp88__hero-image-container {
    width: 100%;
    max-width: 900px; /* Max width for the image */
    margin: 30px auto;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-7kp88__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.page-7kp88__hero-description {
    font-size: 1.2em;
    max-width: 700px;
    margin-bottom: 40px;
    padding: 0 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-7kp88__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Floating Buttons */
.page-7kp88__floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-7kp88__floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 100px;
    box-sizing: border-box;
    white-space: nowrap; /* Prevent text wrapping */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-7kp88__floating-button--register {
    background-color: #DC143C; /* Crimson */
}

.page-7kp88__floating-button--register:hover {
    background-color: #b20f30;
    transform: translateY(-2px);
}

.page-7kp88__floating-button--login {
    background-color: #00BFFF; /* Deep Sky Blue */
}

.page-7kp88__floating-button--login:hover {
    background-color: #009acd;
    transform: translateY(-2px);
}

/* Games Section */
.page-7kp88__games-section,
.page-7kp88__promotions-section,
.page-7kp88__about-section,
.page-7kp88__payments-providers-section,
.page-7kp88__faq-section,
.page-7kp88__cta-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-7kp88__games-grid,
.page-7kp88__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    padding: 0;
    list-style: none; /* Remove default list styling */
}

.page-7kp88__game-card,
.page-7kp88__promo-card {
    background-color: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-7kp88__game-card:hover,
.page-7kp88__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-7kp88__game-image,
.page-7kp88__promo-image {
    width: 100%;
    height: 200px; /* Fixed height for consistent card appearance */
    object-fit: cover;
    display: block;
    max-width: 100%;
    box-sizing: border-box;
}

.page-7kp88__game-title,
.page-7kp88__promo-title {
    font-size: 1.5em;
    color: #FFD700;
    margin: 20px 15px 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-7kp88__game-text,
.page-7kp88__promo-text {
    font-size: 1em;
    color: #cccccc;
    padding: 0 15px 20px;
    flex-grow: 1; /* Ensures text takes available space */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* About Section */
.page-7kp88__about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-7kp88__about-image {
    width: 50%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    max-height: 400px;
    box-sizing: border-box;
}

.page-7kp88__about-text {
    width: 50%;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-7kp88__about-text p {
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Payments and Providers */
.page-7kp88__payments-providers-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.page-7kp88__payments,
.page-7kp88__providers {
    text-align: center;
}

.page-7kp88__payment-icons,
.page-7kp88__provider-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding: 0;
    list-style: none; /* Remove default list styling */
}

.page-7kp88__payment-item,
.page-7kp88__provider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #f0f0f0;
    font-size: 1em;
    transition: transform 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
    width: 120px; /* Fixed width for better grid alignment */
    max-width: 100%;
}

.page-7kp88__payment-item:hover,
.page-7kp88__provider-item:hover {
    transform: translateY(-5px);
    color: #FFD700;
}

.page-7kp88__payment-icon,
.page-7kp88__provider-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
    background-color: #333;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    box-sizing: border-box;
}

/* FAQ Section */
.page-7kp88__faq-container {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    list-style: none; /* Remove default list styling */
}

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

.page-7kp88__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;
    box-sizing: border-box;
}

.page-7kp88__faq-question:hover {
    background-color: #444;
}

.page-7kp88__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #FFD700;
    pointer-events: none; /* Prevent h3 from blocking click */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-7kp88__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle from blocking click */
}

.page-7kp88__faq-item.active .page-7kp88__faq-toggle {
    transform: rotate(45deg); /* Change + to X (or similar) */
    content: '−'; /* This will be handled by JS */
}

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

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

.page-7kp88__faq-answer p {
    margin: 0;
    color: #cccccc;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* CTA Section */
.page-7kp88__cta-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-7kp88__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-7kp88__brand-title {
        font-size: 3.5em;
    }
    .page-7kp88__brand-slogan {
        font-size: 1.3em;
    }
    .page-7kp88__section-title {
        font-size: 2em;
    }
    .page-7kp88__about-content {
        flex-direction: column;
        text-align: center;
    }
    .page-7kp88__about-image,
    .page-7kp88__about-text {
        width: 100%;
    }
    .page-7kp88__about-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-7kp88__hero-section {
        padding: 10px 15px 40px;
        min-height: 60vh;
    }
    .page-7kp88__brand-title {
        font-size: 3em;
    }
    .page-7kp88__brand-slogan {
        font-size: 1.2em;
    }
    .page-7kp88__hero-description {
        font-size: 1.1em;
    }
    .page-7kp88__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-7kp88__button {
        width: 100%;
        max-width: 300px;
        margin-left: 0 !important; /* Override secondary button margin */
    }

    .page-7kp88__floating-buttons {
        gap: 10px;
        bottom: 15px;
        padding: 8px;
    }
    .page-7kp88__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
        min-width: 80px;
    }

    .page-7kp88__games-section,
    .page-7kp88__promotions-section,
    .page-7kp88__about-section,
    .page-7kp88__payments-providers-section,
    .page-7kp88__faq-section,
    .page-7kp88__cta-section {
        padding: 40px 15px;
    }

    .page-7kp88__section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-7kp88__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-7kp88__games-grid,
    .page-7kp88__promotions-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-7kp88__game-card,
    .page-7kp88__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-7kp88__game-text, .page-7kp88__promo-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-7kp88__payment-icons,
    .page-7kp88__provider-icons {
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-7kp88__payment-item,
    .page-7kp88__provider-item {
        width: 45% !important; /* Two columns */
        max-width: 45% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-7kp88__payment-icon,
    .page-7kp88__provider-icon {
        width: 60px;
        height: 60px;
    }

    .page-7kp88__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-7kp88__faq-question {
        padding: 15px 20px;
    }
    .page-7kp88__faq-question h3 {
        font-size: 1.1em;
    }
    .page-7kp88__faq-toggle {
        font-size: 1.5em;
    }
    .page-7kp88__faq-answer {
        padding: 0 20px;
    }
    .page-7kp88__faq-item.active .page-7kp88__faq-answer {
        padding: 15px 20px !important;
    }
    .page-7kp88__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-7kp88__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}
  