.contact_hero_section {
    .form_container_grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .contact_form_wrapper {
        padding: 28px;
    }

    .form_info_block {
        padding: 21px;
    }

    .next_steps_container {
        padding: 28px;
    }

    .steps_list {
        gap: 18px;
    }

    .step_item {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }

    .action_buttons {
        flex-direction: column;
        align-items: center;
    }

background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--forest-green) 100%);
    padding: 140px 0 68px;
    text-align: center;
    color: var(--pearl-white);
}

.contact_badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--pearl-white);
    padding: 8px 21px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-block;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.contact_main_title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 21px;
    font-family: 'Montserrat', sans-serif;
}

.contact_description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto;
}

.contact_form_section {
    padding: 89px 0;
    background: var(--seafoam-light);
}

.form_container_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: start;
}

.form_info_block {
    padding: 34px;
}

.form_info_title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--charcoal-text);
    margin-bottom: 34px;
    font-family: 'Montserrat', sans-serif;
}

.info_feature_list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info_feature_item {
    padding: 24px;
    background: var(--pearl-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info_feature_item:hover {
    transform: translateY(-3px);
}

.feature_name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ocean-blue);
    margin-bottom: 8px;
}

.feature_description {
    color: var(--shadow-gray);
    line-height: 1.6;
    margin: 0;
}

.contact_form_wrapper {
    background: var(--pearl-white);
    padding: 42px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
}

.form_header_block {
    text-align: center;
    margin-bottom: 34px;
}

.form_title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal-text);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.form_subtitle {
    color: var(--shadow-gray);
    font-size: 14px;
    margin: 0;
}

.form_input_group {
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

#game_selection_group {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

#game_selection_group.visible {
    opacity: 1;
    transform: translateY(0);
}

.input_label {
    display: block;
    font-weight: 600;
    color: var(--charcoal-text);
    margin-bottom: 8px;
    font-size: 15px;
}

.form_input_field,
.form_select_field,
.form_textarea_field {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e1e8ed;
    background: var(--pearl-white);
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form_input_field:focus,
.form_select_field:focus,
.form_textarea_field:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(6, 214, 160, 0.1);
}

.form_textarea_field {
    resize: vertical;
    min-height: 120px;
}

.form_submit_section {
    text-align: center;
    margin-top: 34px;
}

.form_submit_button {
    background: var(--sunset-orange);
    color: var(--pearl-white);
    padding: 18px 48px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form_submit_button:hover {
    background: var(--warning-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.form_privacy_note {
    font-size: 13px;
    color: var(--shadow-gray);
    margin-top: 18px;
    line-height: 1.5;
    margin-bottom: 0;
}

.thankyou_section {
    padding: 140px 0 89px;
    text-align: center;
    background: var(--seafoam-light);
}

.thankyou_content {
    max-width: 680px;
    margin: 0 auto;
}

.success_icon {
    width: 80px;
    height: 80px;
    background: var(--ocean-blue);
    color: var(--pearl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 34px;
}

.thankyou_title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--charcoal-text);
    margin-bottom: 21px;
    font-family: 'Montserrat', sans-serif;
}

.thankyou_message {
    font-size: 1.1rem;
    color: var(--shadow-gray);
    margin-bottom: 48px;
    line-height: 1.6;
}

.next_steps_container {
    background: var(--pearl-white);
    padding: 42px;
    margin-bottom: 48px;
    text-align: left;
}

.next_steps_title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal-text);
    margin-bottom: 28px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.steps_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step_item {
    display: flex;
    align-items: center;
    gap: 21px;
}

.step_number {
    width: 42px;
    height: 42px;
    background: var(--ocean-blue);
    color: var(--pearl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step_content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal-text);
    margin-bottom: 5px;
}

.step_content p {
    color: var(--shadow-gray);
    margin: 0;
    font-size: 14px;
}

.action_buttons {
    display: flex;
    justify-content: center;
    gap: 21px;
    flex-wrap: wrap;
}

.legal_hero_section {
    background: var(--charcoal-text);
    padding: 140px 0 68px;
    text-align: center;
    color: var(--pearl-white);
}

.legal_main_title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 13px;
    font-family: 'Montserrat', sans-serif;
}

.legal_subtitle {
    font-size: 16px;
    color: var(--ocean-blue);
    margin-bottom: 18px;
    font-weight: 600;
}

.legal_description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto;
}

.legal_content_section {
    padding: 89px 0;
    background: var(--pearl-white);
}

.terms_content_wrapper {
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms_content_wrapper h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal-text);
    margin: 42px 0 21px 0;
    font-family: 'Montserrat', sans-serif;
}

.terms_content_wrapper h2:first-child {
    margin-top: 0;
}

.terms_content_wrapper p {
    color: var(--shadow-gray);
    margin-bottom: 18px;
    text-align: justify;
}

:root {
    --ocean-blue: #06d6a0;
    --seafoam-light: #e6faf5;
    --forest-green: #048a65;
    --sunset-orange: #e67e22;
    --charcoal-text: #2c3e50;
    --pearl-white: #ffffff;
    --shadow-gray: #34495e;
    --accent-purple: #9b59b6;
    --warning-red: #e74c3c;
    --info-blue: #3498db;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    line-height: 1.7;
    color: var(--charcoal-text);
    background: var(--pearl-white);
    font-size: 17px;
}

.content_wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

.navigation_header {
    background: var(--pearl-white);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.primary_navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    position: relative;
}

.brand_logo img {
    height: 42px;
    width: auto;
}

.mobile_nav_toggle {
    display: none;
}

.mobile_menu_button {
    display: none;
}

.hamburger_icon {
    width: 28px;
    height: 2px;
    background: var(--charcoal-text);
    position: relative;
    transition: all 0.25s ease;
}

.hamburger_icon:before,
.hamburger_icon:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background: var(--charcoal-text);
    transition: all 0.25s ease;
}

.hamburger_icon:before {
    top: -7px;
}

.hamburger_icon:after {
    top: 7px;
}

.navigation_menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu_item {
    list-style: none;
}

.menu_link {
    color: var(--charcoal-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu_link:hover {
    color: var(--ocean-blue);
}

.hero_showcase {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--forest-green) 100%);
    padding: 140px 0 89px;
    text-align: center;
    color: var(--pearl-white);
}

.hero_content_grid {
    max-width: 890px;
    margin: 0 auto;
}

.hero_welcome_badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--pearl-white);
    padding: 8px 21px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-block;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.hero_main_title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 21px;
    font-family: 'Montserrat', sans-serif;
}

.hero_description {
    font-size: 1.1rem;
    margin-bottom: 34px;
    opacity: 0.9;
}

.hero_stats_container {
    display: flex;
    justify-content: center;
    gap: 42px;
    margin: 34px 0 28px;
}

.hero_stat_item {
    text-align: center;
}

.stat_number {
    display: block;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--pearl-white);
    font-family: 'Montserrat', sans-serif;
}

.stat_label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 5px;
}

.hero_actions_container {
    display: flex;
    justify-content: center;
    gap: 21px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.primary_action_button {
    background: var(--sunset-orange);
    color: var(--pearl-white);
    padding: 15px 42px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.primary_action_button:hover {
    background: var(--warning-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 23px rgba(0, 0, 0, 0.15);
}

.secondary_hero_button {
    background: transparent;
    color: var(--pearl-white);
    padding: 15px 34px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.secondary_hero_button:hover {
    background: var(--pearl-white);
    color: var(--ocean-blue);
    border-color: var(--pearl-white);
    transform: translateY(-2px);
}

.hero_features_list {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hero_feature_item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}

.hero_feature_item:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sunset-orange);
    font-weight: 700;
}

.games_catalog_area {
    padding: 89px 0 76px;
    background: var(--seafoam-light);
}

.section_header_block {
    text-align: center;
    margin-bottom: 55px;
}

.section_subtitle {
    font-size: 12px;
    color: var(--ocean-blue);
    text-transform: uppercase;
    letter-spacing: 2.1px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.section_main_title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--charcoal-text);
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

.section_description {
    max-width: 640px;
    margin: 0 auto;
    color: var(--shadow-gray);
}

.games_catalog_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 34px;
    margin-top: 55px;
}

.game_showcase_card {
    background: var(--pearl-white);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.game_showcase_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.game_image_container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.game_showcase_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game_showcase_card:hover .game_showcase_image {
    transform: scale(1.05);
}

.game_details_content {
    padding: 28px 24px 32px;
}

.game_showcase_title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal-text);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.game_showcase_description {
    color: var(--shadow-gray);
    line-height: 1.6;
    margin-bottom: 21px;
    font-size: 15px;
}

.game_tags_container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.game_tag {
    background: var(--ocean-blue);
    color: var(--pearl-white);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.game_tag:hover {
    background: var(--forest-green);
}

.game_order_button {
    background: var(--sunset-orange);
    color: var(--pearl-white);
    padding: 13px 28px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
}

.game_order_button:hover {
    background: var(--warning-red);
    transform: translateY(-2px);
}

.features_showcase_section {
    background: var(--seafoam-light);
    padding: 76px 0;
}

.features_content_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.feature_main_image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.feature_title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--charcoal-text);
    margin-bottom: 13px;
    font-family: 'Montserrat', sans-serif;
}

.feature_subtitle {
    font-size: 1.2rem;
    color: var(--ocean-blue);
    margin-bottom: 21px;
    font-weight: 500;
}

.feature_description {
    margin-bottom: 18px;
    color: var(--shadow-gray);
}

.secondary_action_button {
    background: var(--ocean-blue);
    color: var(--pearl-white);
    padding: 12px 34px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary_action_button:hover {
    background: var(--forest-green);
    transform: translateY(-1px);
}

.gaming_services_area {
    padding: 89px 0 76px;
}

.services_header_section {
    text-align: center;
    margin-bottom: 68px;
}

.services_main_title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--charcoal-text);
    margin-bottom: 21px;
    font-family: 'Montserrat', sans-serif;
}

.services_description {
    max-width: 560px;
    margin: 0 auto;
    color: var(--shadow-gray);
}

.services_grid_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.service_card_wrapper {
    padding: 55px 24px 48px;
    text-align: center;
    background: var(--pearl-white);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.service_card_wrapper:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service_card_wrapper.active_service {
    background: var(--ocean-blue);
    color: var(--pearl-white);
}

.service_icon_area {
    margin-bottom: 34px;
}

.service_icon_placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    overflow: hidden;
}

.service_icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service_title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: inherit;
}

.service_description {
    color: inherit;
    opacity: 0.8;
}

.call_to_action_section {
    background: var(--charcoal-text);
    padding: 68px 0;
}

.cta_content_grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta_title {
    font-size: 2rem;
    color: var(--pearl-white);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.cta_primary_button {
    background: var(--ocean-blue);
    color: var(--pearl-white);
    padding: 16px 42px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-size: 13px;
}

.cta_primary_button:hover {
    background: var(--sunset-orange);
    transform: scale(1.05);
}

.main_footer {
    background: var(--charcoal-text);
    padding: 76px 0 34px;
    color: var(--pearl-white);
}

.footer_content_grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 55px;
    margin-bottom: 42px;
}

.footer_brand_title {
    color: var(--pearl-white);
    margin: 13px 0 21px;
    font-size: 1.3rem;
}

.footer_brand_description {
    opacity: 0.8;
    line-height: 1.6;
}

.footer_achievements {
    display: flex;
    gap: 24px;
    margin-top: 21px;
}

.achievement_item {
    text-align: center;
}

.achievement_number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ocean-blue);
    font-family: 'Montserrat', sans-serif;
}

.achievement_text {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.footer_links_section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.footer_section_title {
    color: var(--pearl-white);
    font-size: 1.1rem;
    margin-bottom: 21px;
}

.footer_links_list {
    list-style: none;
}

.footer_links_list li {
    margin-bottom: 8px;
}

.footer_links_list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_links_list a:hover {
    color: var(--ocean-blue);
}

.contact_info_block {
    margin-bottom: 21px;
}

.footer_contact_info {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.subscription_title {
    color: var(--pearl-white);
    font-size: 15px;
    margin-bottom: 13px;
    font-weight: 600;
}

.footer_subscription_form {
    display: flex;
    margin-top: 18px;
    gap: 8px;
}

.subscription_input {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pearl-white);
}

.subscription_input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscription_button {
    background: var(--ocean-blue);
    color: var(--pearl-white);
    padding: 12px 21px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.subscription_button:hover {
    background: var(--sunset-orange);
}

.footer_bottom_section {
    text-align: center;
}

.footer_bottom_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 21px;
}

.footer_certifications {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.cert_item {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copyright_divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 21px;
}

.copyright_text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media screen and (max-width: 890px) {
    .mobile_menu_button {
        display: block;
        cursor: pointer;
        padding: 13px;
        z-index: 2;
    }

    .navigation_menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--pearl-white);
        flex-direction: column;
        justify-content: center;
        transition: all 0.3s ease;
        padding-top: 68px;
    }

    .menu_item {
        width: 100%;
        text-align: center;
        margin: 13px 0;
    }

    .menu_link {
        display: inline-block;
        padding: 8px 18px;
        font-size: 18px;
    }

    .mobile_nav_toggle:checked ~ .navigation_menu {
        left: 0;
    }

    .mobile_nav_toggle:checked ~ .mobile_menu_button .hamburger_icon {
        background: transparent;
    }

    .mobile_nav_toggle:checked ~ .mobile_menu_button .hamburger_icon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile_nav_toggle:checked ~ .mobile_menu_button .hamburger_icon:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .hero_main_title {
        font-size: 2.3rem;
    }

    .hero_stats_container {
        flex-direction: column;
        gap: 21px;
        margin: 24px 0;
    }

    .hero_actions_container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero_features_list {
        flex-direction: column;
        align-items: center;
        gap: 13px;
    }

    .features_content_grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .cta_content_grid {
        flex-direction: column;
        gap: 21px;
        text-align: center;
    }

    .footer_content_grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer_achievements {
        justify-content: center;
        gap: 18px;
    }

    .footer_links_section {
        grid-template-columns: 1fr 1fr;
        gap: 21px;
    }

    .footer_bottom_content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer_certifications {
        justify-content: center;
        gap: 13px;
    }

    .footer_subscription_form {
        flex-direction: column;
    }

    .form_container_grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .contact_form_wrapper {
        padding: 28px;
    }

    .form_info_block {
        padding: 21px;
    }

    .next_steps_container {
        padding: 28px;
    }

    .steps_list {
        gap: 18px;
    }

    .step_item {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }

    .action_buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 640px) {
    .hero_main_title {
        font-size: 1.9rem;
    }

    .section_main_title {
        font-size: 1.8rem;
    }

    .games_catalog_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .game_showcase_card {
        margin-bottom: 21px;
    }

    .game_tags_container {
        gap: 6px;
    }

    .game_tag {
        font-size: 11px;
        padding: 4px 10px;
    }

    .services_grid_container {
        grid-template-columns: 1fr;
    }

    .footer_links_section {
        grid-template-columns: 1fr;
    }
}

.footer_logo {
    filter: brightness(0) invert(1);
    height: 20%;
}