
    :root {
    --primary-color: #e44d26;
    --secondary-color: #ffc107;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --border-color: #333333;
}

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

.page-990k__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color-light);
    overflow: hidden;
    padding-top: 10px;
    background-color: var(--dark-bg);
}

.page-990k__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
    max-width: 100%;
}

.page-990k__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.page-990k__main-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-990k__hero-description {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.page-990k__promo-banner {
    background-color: var(--primary-color);
    padding: 15px 25px;
    border-radius: 8px;
    margin-top: 20px;
    display: inline-block;
    font-weight: bold;
}

.page-990k__promo-banner p {
    color: var(--dark-bg);
}

.page-990k__promo-link {
    display: block;
    margin-top: 10px;
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-990k__promo-link:hover {
    background-color: #ffd700;
}

.page-990k__section-title {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--dark-bg);
    padding-top: 60px;
}

.page-990k__promotions-section .page-990k__section-title,
.page-990k__cta-section .page-990k__section-title {
    color: var(--text-color-light);
}

.page-990k__section-subtitle {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--text-color-dark);
}

.page-990k__promotions-section .page-990k__section-subtitle {
    color: #cccccc;
}

.page-990k__about-section {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.page-990k__content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.page-990k__content-wrapper p {
    flex: 1;
    min-width: 300px;
    font-size: 1.1em;
    color: var(--text-color-dark);
}

.page-990k__about-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.page-990k__keyword-highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.page-990k__game-categories-section {
    padding: 60px 20px;
    background-color: #f0f0f0;
}

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

.page-990k__game-item {
    background-color: var(--text-color-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-990k__game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-990k__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    max-width: 100%;
}

.page-990k__game-title {
    font-size: 1.5em;
    color: var(--dark-bg);
    margin: 15px 0 10px;
}

.page-990k__game-description {
    padding: 0 15px 20px;
    color: var(--text-color-dark);
}

.page-990k__promotions-section {
    padding: 60px 20px;
    background-color: var(--dark-bg);
    color: var(--text-color-light);
}

.page-990k__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-990k__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-990k__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    max-width: 100%;
}

.page-990k__promo-title {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin: 15px 0 10px;
}

.page-990k__promo-description {
    padding: 0 20px 20px;
    color: #cccccc;
}

.page-990k__news-section {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.page-990k__news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-990k__news-item {
    background-color: var(--text-color-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-990k__news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-990k__news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    max-width: 100%;
}

.page-990k__news-title {
    font-size: 1.3em;
    color: var(--dark-bg);
    margin: 15px 15px 5px;
}

.page-990k__news-date {
    font-size: 0.9em;
    color: #777;
    margin: 0 15px 10px;
}

.page-990k__news-excerpt {
    padding: 0 15px 20px;
    color: var(--text-color-dark);
}

.page-990k__faq-section {
    padding: 60px 20px;
    background-color: #f0f0f0;
}

.page-990k__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-990k__faq-item {
    background-color: var(--text-color-light);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-990k__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.page-990k__faq-question:hover {
    background-color: #e9e9e9;
}

.page-990k__faq-q-text {
    font-size: 1.2em;
    color: var(--dark-bg);
    margin: 0;
    pointer-events: none;
}

.page-990k__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    pointer-events: none;
}

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

.page-990k__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    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(--text-color-dark);
}

.page-990k__faq-item.active .page-990k__faq-answer {
    max-height: 2000px !important;
    padding: 20px 20px !important;
    opacity: 1;
}

.page-990k__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
}

.page-990k__cta-section {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.page-990k__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-990k__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-990k__cta-button {
    display: inline-block;
    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-990k__cta-button--register {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
}

.page-990k__cta-button--register:hover {
    background-color: #ffd700;
    transform: translateY(-2px);
}

.page-990k__floating-buttons-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-990k__floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 50px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    color: var(--dark-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.page-990k__floating-button--register {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.page-990k__floating-button--register:hover {
    background-color: #cc421f;
    transform: translateY(-3px);
}

.page-990k__floating-button--login {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
}

.page-990k__floating-button--login:hover {
    background-color: #ffd700;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .page-990k__main-title {
        font-size: 2.5em;
    }
    .page-990k__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-990k__hero-section {
        min-height: 400px;
        padding-top: 10px !important;
    }
    .page-990k__main-title {
        font-size: 2em;
    }
    .page-990k__hero-description {
        font-size: 1em;
    }
    .page-990k__promo-banner {
        padding: 10px 15px;
    }
    .page-990k__promo-link {
        padding: 8px 15px;
    }

    .page-990k__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 40px;
    }
    .page-990k__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-990k__content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .page-990k__content-wrapper p {
        min-width: unset;
        font-size: 1em;
    }
    .page-990k__about-image {
        max-width: 100%;
    }

    .page-990k__game-grid,
    .page-990k__promo-grid,
    .page-990k__news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-990k__game-item,
    .page-990k__promo-card,
    .page-990k__news-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-990k__game-image,
    .page-990k__promo-image,
    .page-990k__news-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-990k__faq-list {
        padding: 0 10px;
    }
    .page-990k__faq-item {
        margin-bottom: 10px;
    }
    .page-990k__faq-question {
        padding: 15px 15px;
    }
    .page-990k__faq-q-text {
        font-size: 1.1em;
    }
    .page-990k__faq-answer {
        padding: 0 15px;
    }
    .page-990k__faq-item.active .page-990k__faq-answer {
        padding: 15px 15px !important;
    }

    .page-990k__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-990k__floating-buttons-wrapper {
        right: 10px;
        bottom: 10px;
    }
    .page-990k__floating-button {
        width: 100px;
        height: 45px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-990k__main-title {
        font-size: 1.8em;
    }
    .page-990k__hero-description {
        font-size: 0.9em;
    }
    .page-990k__section-title {
        font-size: 1.6em;
    }
    .page-990k__floating-buttons-wrapper {
        right: 5px;
        bottom: 5px;
    }
    .page-990k__floating-button {
        width: 90px;
        height: 40px;
        font-size: 0.85em;
    }
}
  