
    :root {
    --page-6623-primary-color: #00f0ff; /* Bright blue/cyan for accents */
    --page-6623-secondary-color: #ffcc00; /* Gold/yellow for other accents */
    --page-6623-background-dark: #1a1a2e; /* Dark background */
    --page-6623-background-light: #2c2c44; /* Slightly lighter background for cards */
    --page-6623-text-color: #e0e0e0; /* Light text color */
    --page-6623-heading-color: #ffffff; /* White headings */
    --page-6623-border-color: #3e3e5c; /* Border color */
    --page-6623-button-hover-dark: #00b3c2;
    --page-6623-button-hover-light: #e6b800;
}

.page-6623 {
    font-family: 'Arial', sans-serif;
    color: var(--page-6623-text-color);
    background-color: var(--page-6623-background-dark);
    line-height: 1.6;
    padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

.page-6623__hero-section {
    position: relative;
    text-align: center;
    padding: 10px 0 40px; /* 10px top padding as specified for hero/first section */
    background: linear-gradient(180deg, var(--page-6623-background-dark) 0%, #0d0d1a 100%);
}

.page-6623__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
    object-fit: cover;
}

.page-6623__brand-title-wrapper {
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-6623__brand-title {
    font-size: 2.8em;
    color: var(--page-6623-primary-color);
    margin: 0;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
    font-weight: bold;
    text-transform: uppercase;
}

.page-6623__hero-subtitle {
    font-size: 1.2em;
    color: var(--page-6623-text-color);
    margin-top: 5px;
}

.page-6623__hero-content {
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.page-6623__hero-heading {
    font-size: 2em;
    color: var(--page-6623-heading-color);
    margin-bottom: 15px;
}

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

.page-6623__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-6623__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap; /* Prevent text wrapping inside button */
}

.page-6623__button--primary {
    background-color: var(--page-6623-primary-color);
    color: var(--page-6623-background-dark);
}

.page-6623__button--primary:hover {
    background-color: var(--page-6623-button-hover-dark);
    transform: translateY(-3px);
}

.page-6623__button--secondary {
    background-color: var(--page-6623-secondary-color);
    color: var(--page-6623-background-dark);
}

.page-6623__button--secondary:hover {
    background-color: var(--page-6623-button-hover-light);
    transform: translateY(-3px);
}

.page-6623__section-title {
    font-size: 2em;
    color: var(--page-6623-heading-color);
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.page-6623__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
    color: var(--page-6623-text-color);
}

/* Promotions Section */
.page-6623__promotions-section {
    padding: 40px 0;
    background-color: var(--page-6623-background-light);
}

.page-6623__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-6623__promo-card {
    background-color: var(--page-6623-background-dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px 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-6623__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-6623__promo-image {
    width: 100%;
    height: 250px; /* Fixed height for consistent card appearance */
    object-fit: cover;
    margin-bottom: 15px;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

.page-6623__promo-title {
    font-size: 1.4em;
    color: var(--page-6623-primary-color);
    margin: 0 15px 10px;
}

.page-6623__promo-text {
    font-size: 0.95em;
    color: var(--page-6623-text-color);
    padding: 0 15px;
}

/* Games Section */
.page-6623__games-section {
    padding: 40px 0;
    background-color: var(--page-6623-background-dark);
}

.page-6623__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-6623__game-card {
    background-color: var(--page-6623-background-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.page-6623__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-6623__game-image {
    width: 100%;
    height: 180px; /* Fixed height for consistent game card appearance */
    object-fit: cover;
    margin-bottom: 15px;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

.page-6623__game-title {
    font-size: 1.3em;
    color: var(--page-6623-secondary-color);
    margin: 0 15px 10px;
}

.page-6623__game-description {
    font-size: 0.9em;
    color: var(--page-6623-text-color);
    padding: 0 15px;
}

/* Features Section */
.page-6623__features-section {
    padding: 40px 0;
    background-color: var(--page-6623-background-light);
}

.page-6623__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-6623__feature-item {
    background-color: var(--page-6623-background-dark);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.page-6623__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

.page-6623__feature-title {
    font-size: 1.5em;
    color: var(--page-6623-heading-color);
    margin-bottom: 10px;
}

.page-6623__feature-description {
    font-size: 1em;
    color: var(--page-6623-text-color);
}

/* FAQ Section */
.page-6623__faq-section {
    padding: 40px 0 80px; /* Extra padding for floating buttons */
    background-color: var(--page-6623-background-dark);
}

.page-6623__faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-6623__faq-item {
    background-color: var(--page-6623-background-light);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.page-6623__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    user-select: none;
    background-color: #3a3a50; /* Slightly different background for question */
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.page-6623__faq-question:hover {
    background-color: #4a4a60;
}

.page-6623__faq-question-text {
    font-size: 1.2em;
    color: var(--page-6623-heading-color);
    margin: 0;
    pointer-events: none; /* Crucial for click handling */
}

.page-6623__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--page-6623-primary-color);
    margin-left: 15px;
    transition: transform 0.3s ease;
    pointer-events: none; /* Crucial for click handling */
}

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

.page-6623__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    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: var(--page-6623-background-light);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

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

.page-6623__faq-answer p {
    margin: 0;
    color: var(--page-6623-text-color);
}

/* Floating Buttons */
.page-6623__floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.page-6623__floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.page-6623__floating-button--register {
    background-color: var(--page-6623-primary-color);
    color: var(--page-6623-background-dark);
}

.page-6623__floating-button--register:hover {
    background-color: var(--page-6623-button-hover-dark);
    transform: translateY(-2px);
}

.page-6623__floating-button--login {
    background-color: var(--page-6623-secondary-color);
    color: var(--page-6623-background-dark);
}

.page-6623__floating-button--login:hover {
    background-color: var(--page-6623-button-hover-light);
    transform: translateY(-2px);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .page-6623__brand-title {
        font-size: 2.2em;
    }
    .page-6623__hero-subtitle {
        font-size: 1em;
    }
    .page-6623__hero-heading {
        font-size: 1.6em;
    }
    .page-6623__hero-description {
        font-size: 1em;
    }
    .page-6623__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-6623__button {
        width: 80%; /* Make buttons full width on mobile */
        max-width: 300px;
        margin: 0 auto;
    }

    .page-6623__section-title {
        font-size: 1.8em;
    }
    .page-6623__section-description {
        font-size: 0.95em;
    }

    .page-6623__promo-grid,
    .page-6623__game-grid,
    .page-6623__feature-list {
        grid-template-columns: 1fr;
        padding: 0 15px; /* Adjust padding for mobile */
    }

    .page-6623__promo-card,
    .page-6623__game-card,
    .page-6623__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for cards */
    }

    .page-6623__promo-image,
    .page-6623__game-image,
    .page-6623__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    /* Ensure text in lists wraps */
    .page-6623__promo-text,
    .page-6623__game-description,
    .page-6623__feature-description,
    .page-6623__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-6623__faq-question {
        padding: 15px;
    }
    .page-6623__faq-question-text {
        font-size: 1.1em;
    }
    .page-6623__faq-toggle {
        font-size: 1.5em;
    }
    .page-6623__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for mobile FAQ */
    }

    .page-6623__floating-buttons {
        gap: 10px;
        bottom: 15px;
    }
    .page-6623__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-6623__brand-title {
        font-size: 1.8em;
    }
    .page-6623__hero-heading {
        font-size: 1.4em;
    }
    .page-6623__hero-description {
        font-size: 0.9em;
    }
    .page-6623__floating-buttons {
        width: calc(100% - 30px); /* Adjust width to fit */
        flex-wrap: wrap;
        justify-content: center;
        bottom: 10px;
    }
    .page-6623__floating-button {
        flex-grow: 1; /* Allow buttons to grow and fill space */
        min-width: unset;
        width: auto;
    }
}
  