/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Roboto';
    src: url('/assets../LkyMpl25-fonts/LkyMpl25-roboto.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}

body {
    font-family: Roboto;
    font-size: 16px;
    color: #1B1B1B;
    background-color: #FFF8EC;
    /* Кремовый фон как на макете */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    padding: 0px 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.visually-hidden_LkyMpl25 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}

.container_LkyMpl25 {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.text-center_LkyMpl25 {
    text-align: center;
}

/* --- BUTTONS --- */
.btn_LkyMpl25 {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn--green_LkyMpl25 {
    background-color: #46953D;
    border-radius: 16px;
    color: #fff;
}

.btn--green_LkyMpl25:hover {
    background-color: #367031;
}

.btn--orange_LkyMpl25 {
    background-color: #F6821D;
    color: #fff;
}

.btn--orange_LkyMpl25:hover {
    background-color: #d68910;
}

.btn--outline_LkyMpl25 {
    background-color: transparent;
    border: 2px solid #F39C12;
    color: #F39C12;
}

.btn--outline_LkyMpl25:hover {
    background-color: #F39C12;
    color: #fff;
}

.btn--small_LkyMpl25 {
    padding: 10px 49px;
    font-family: Roboto;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    vertical-align: middle;
    text-transform: uppercase;
}

/* --- HEADER --- */
.header_LkyMpl25 {
    background-color: #FFF9F0;
    padding: 24px 16px;
    position: relative;
    z-index: 100;
}

.header__inner_LkyMpl25 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo_LkyMpl25 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Roboto;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
}

.header__logo-img_LkyMpl25 {
    width: 48px;
    height: 48px;
    border-radius: 110px;
}

.nav_LkyMpl25 {
    display: flex;
}

.nav__list_LkyMpl25 {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav__link_LkyMpl25 {
    font-family: Roboto;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #1B1B1B;
    padding: 10px 0px;
}

.burger_LkyMpl25 {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger_LkyMpl25 span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

/* Mobile Menu */
@media (max-width: 992px) {
    .burger_LkyMpl25 {
        display: flex;
    }

    .nav_LkyMpl25 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFF9F0;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 99;
    }

    .nav_LkyMpl25.active_LkyMpl25 {
        transform: translateY(0);
    }

    .nav__list_LkyMpl25 {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
    }
}

/* --- HERO SECTION --- */
.hero_LkyMpl25 {
    padding-top: 24px;
    overflow: hidden;
}

.hero__container_LkyMpl25 {
    background-image: url('/assets../LkyMpl25-img/LkyMpl25-hero.webp');
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 16px;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 488px;
}

.hero__content_LkyMpl25 {
    max-width: 702px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero__title_LkyMpl25 {
    font-family: Roboto;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    text-align: center;
}

.hero__text_LkyMpl25 {
    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -2%;
    text-align: center;
}

.hero__btns_LkyMpl25 {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero__img_LkyMpl25 {
    flex: 1;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero__container_LkyMpl25 {
        flex-direction: column-reverse;
        text-align: center;
        background-image: none;
        min-height: 301px;
    }

    .hero__btns_LkyMpl25 {
        justify-content: center;
    }

    .hero__title_LkyMpl25 {
        font-size: 32px;
    }
}

/* --- CARDS SECTION (Popular Draws) --- */
.cards-section_LkyMpl25 {
    padding: 96px 0;
}

.section-title_LkyMpl25 {
    font-family: Roboto;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    text-align: center;
    padding-bottom: 48px;
}

.cards-grid_LkyMpl25 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card_LkyMpl25 {
    background: #F6821D1A;
    border: 1px solid #F6821D;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.card__logo_LkyMpl25 {
    height: 190px;
    object-fit: contain;
}

.card__title_LkyMpl25 {
    font-family: Roboto;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}

.card__desc_LkyMpl25 {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
}

@media (max-width: 900px) {
    .cards-grid_LkyMpl25 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cards-grid_LkyMpl25 {
        grid-template-columns: 1fr;
    }
}

/* --- GUIDE SECTION --- */
.guide_LkyMpl25 {
    background-color: #FFF9F0;
}

.guide__wrapper_LkyMpl25 {
    display: flex;
    gap: 24px;
    align-items: center;
}

.guide__steps_LkyMpl25 {
    width: 100%;
    max-width: 737px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step_LkyMpl25 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: #FCE7CE;
    border: 2px solid #F6821D;
    border-radius: 16px;
    padding: 12px;
}

.step__num_LkyMpl25 {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
}

.step__title_LkyMpl25 {
    font-family: Roboto;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #000000;
}

.step_LkyMpl25 p {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000000;
}

@media (max-width: 850px) {
    .guide__wrapper_LkyMpl25 {
        flex-direction: column;
    }
}

/* --- FEATURES SECTION --- */
.features_LkyMpl25 {
    padding: 96px 0;
}

.features__grid_LkyMpl25 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature_LkyMpl25 {
    background: transparent;
    border: 1px solid #46953D;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    align-items: center;
}

.feature__icon_LkyMpl25 {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
}

.feature__title_LkyMpl25 {
    font-family: Roboto;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 8px;
}

.feature_LkyMpl25 p {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
}

@media (max-width: 768px) {
    .features__grid_LkyMpl25 {
        grid-template-columns: 1fr;
    }
}

/* --- RESPONSIBLE PLAY --- */
.responsible_LkyMpl25 {
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 16px;
    background-color: #FFE0B2;
    padding: 24px;
    text-align: center;
    margin-bottom: 96px;
}

.section-title-resp_LkyMpl25 {
    font-family: Roboto;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    text-align: center;
}

.responsible__content_LkyMpl25 {
    max-width: 884px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.responsible__content_LkyMpl25 p {
    margin-top: 0px !important;
    font-family: Roboto !important;
    font-weight: 400 !important;
    font-size: 20px !important;
    line-height: 120% !important;
    text-align: center !important;
}

.highlight_LkyMpl25 {
    color: #F39C12;
    font-weight: 700;
}

/* --- FOOTER --- */
.footer_LkyMpl25 {
    background-color: #000;
    color: #ccc;
    padding: 60px 10px 20px;
    text-align: center;
    font-size: 13px;
    margin-top: auto;
}

.footer__block1_LkyMpl25 {
    background-color: #1B1B1B;
    border-radius: 16px;
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.footer__block1_LkyMpl25 p {
    color: #FEFEFE;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
}

.footer__block_LkyMpl25 {
    margin-bottom: 30px;
}

.footer__title_LkyMpl25 {
    font-family: Roboto;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    color: #F6821D;
}

.footer__title2_LkyMpl25 {
    font-family: Roboto;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    color: #F6821D;
    padding: 20px 0px;
}

.footer__block2_LkyMpl25 p {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #fff;
}

.footer__links_LkyMpl25 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}

.footer__links_LkyMpl25 a {
    color: #F6821D;
    text-decoration: underline;
    font-family: Roboto;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 120%;
}

.footer__pmain_LkyMpl25 {
    font-family: Roboto;
    font-weight: 200;
    font-style: Italic;
    font-size: 13px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    color: #F5F5F5;
    padding: 20px 0px;
}

.footer__logos_LkyMpl25 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.footer__age_LkyMpl25 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.footer__nav_LkyMpl25 {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer__nav_LkyMpl25 a {
    color: #fff;
    font-family: Roboto;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
}


/* About Page Styles */
.about-section_LkyMpl25 {
    padding: 0px 0px 96px 0px;
    text-align: center;
}

.about-title_LkyMpl25 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #111;
}

.about-section_LkyMpl25 h1 {
    padding-top: 48px;
}

.about-text_LkyMpl25 {
    font-family: Roboto;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #000;
}

/* Cards Grid */
.about-grid_LkyMpl25 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-card_LkyMpl25 {
    background-color: #fff;
    border: 3px solid #163300;
    /* Зеленый цвет рамки */
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.about-card-img_LkyMpl25 {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.about-card-title_LkyMpl25 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

.about-card-desc_LkyMpl25 {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

/* Adaptive Media Queries */
@media (max-width: 992px) {
    .about-grid_LkyMpl25 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .about-grid_LkyMpl25 {
        grid-template-columns: 1fr;
    }

    .about-title_LkyMpl25 {
        font-size: 32px;
    }

    .about-text_LkyMpl25 {
        font-size: 16px;
    }
}

/* --- GAME PAGE --- */
.game-tabs_LkyMpl25 {
    display: flex;
    gap: 24px;
    padding-top: 48px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.game-tab_LkyMpl25 {
    background: #fff;
    border: 1px solid #F39C12;
    border-radius: 25px;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.game-tab_LkyMpl25.active_LkyMpl25 {
    background-color: #F39C12;
    color: #fff;
}

.game-container_LkyMpl25 {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.game-board_LkyMpl25 {
    width: 100%;
    flex: 2;
    background: #fff;
    border: 1px solid #F6821D;
    border-radius: 20px;
    padding: 24px;
}

.numbers-grid_LkyMpl25 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.num-btn_LkyMpl25 {
    aspect-ratio: 1;
    border-radius: 300px;
    border: 1px solid #F6821D;
    background: #FFEDD8;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.num-btn_LkyMpl25:hover,
.num-btn_LkyMpl25.active_LkyMpl25 {
    background-color: #F39C12;
    color: #fff;
}

.game-actions_LkyMpl25 {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.game-sidebar_LkyMpl25 {
    flex: 1;
    background: #fff;
    border: 1px solid #F39C12;
    border-radius: 12px;
    padding: 20px;
}

.sidebar-row_LkyMpl25 {
    margin-bottom: 15px;
}

.sidebar-row_LkyMpl25 label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-select_LkyMpl25,
.form-input_LkyMpl25 {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.summary-total_LkyMpl25 {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: #F39C12;
    font-size: 18px;
    margin: 20px 0;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.disclaimer_LkyMpl25 {
    font-size: 11px;
    color: #777;
    margin-top: 15px;
    text-align: center;
}

@media (max-width: 800px) {
    .game-container_LkyMpl25 {
        flex-direction: column;
    }

    .game-sidebar_LkyMpl25 {
        width: 100%;
    }

    .numbers-grid_LkyMpl25 {
        grid-template-columns: repeat(7, 1fr);
    }

    .section-titleGame_LkyMpl25 {
        font-size: 24px !important;
    }

    .game-tabs_LkyMpl25 {
        gap: 16px;
        padding-top: 32px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .game-board_LkyMpl25 {
        padding: 16px 10px 32px 10px;
    }

    .numbers-grid_LkyMpl25 {
        gap: 16px 3px;
        margin: 16px 0;
    }
}

/* --- FORMS (Login, Signup, Contact) --- */
.form-page_LkyMpl25 {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.auth-card_LkyMpl25 {
    background: #fff;
    border: 1px solid #448c3e;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 628px;
    text-align: center;
}

.contact-layout_LkyMpl25 {
    display: flex;
    align-items: center;
    gap: 96px;
    max-width: 1197px;
    margin: 0 auto;
}

.section-titleGame_LkyMpl25 {
    font-family: Roboto;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -2%;
    font-variant: small-caps;
}

.contact-form-wrap_LkyMpl25 {
    border: 1px solid #46953D;
    border-radius: 8px;
    padding: 24px;
    background: #fff;
    width: 628px;
}

.form-group_LkyMpl25 {
    margin-bottom: 20px;
    position: relative;
    text-align: left;
}

.form-control_LkyMpl25 {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

.password-toggle_LkyMpl25 {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: none;
    opacity: 0.5;
}

.form-check_LkyMpl25 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 20px;
    text-align: left;
}

.form-msg_LkyMpl25 {
    margin-top: 15px;
    color: #448c3e;
    font-weight: 700;
}

@media (max-width: 768px) {
    .contact-layout_LkyMpl25 {
        flex-direction: column;
    }

    .contact-img_LkyMpl25 {
        display: none;
    }
}

/* --- POPUPS --- */
.popup_LkyMpl25 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s;
}

.popup_LkyMpl25.hidden_LkyMpl25 {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.popup-content_LkyMpl25 {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    border: 2px solid #448c3e;
    text-align: center;
}

.cookie-option_LkyMpl25 {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
    text-align: left;
}

.cookie-btns_LkyMpl25 {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

@media(max-width: 768px) {
    .section-title_LkyMpl25 {
        font-size: 24px;
    }

    .cards-section_LkyMpl25 {
        padding: 48px 0;
    }

    .features_LkyMpl25 {
        padding: 48px 0;
    }

    .footer__links_LkyMpl25 {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__logos_LkyMpl25 {
        gap: 30px;
    }

    .footer__nav_LkyMpl25 {
        flex-direction: column;
    }

    .section-title-resp_LkyMpl25 {
        font-size: 24px;
    }

    .contact-form-wrap_LkyMpl25 {
        width: auto;
    }
}

/* --- POLICY PAGES STYLES (Terms, Privacy, Cookies, Responsible) --- */
.policy-page_LkyMpl25 {
    padding: 60px 20px;
    background-color: #FFF9F0;
    min-height: 60vh;
}

.policy-content_LkyMpl25 {
    max-width: 1280px;
    margin: 0 auto;
}

.policy-title_LkyMpl25 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #111;
}

.policy-date_LkyMpl25 {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 50px;
    display: block;
}

.policy-subtitle_LkyMpl25 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000;
}

.policy-text_LkyMpl25 {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.policy-list_LkyMpl25 {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #333;
}

.policy-list_LkyMpl25 li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.policy-link_LkyMpl25 {
    color: #F39C12;
    text-decoration: underline;
    font-weight: 700;
}

.policy-link_LkyMpl25:hover {
    text-decoration: none;
}

@media (max-width: 600px) {
    .policy-title_LkyMpl25 {
        font-size: 28px;
    }
}