:root {
    --main: #e23b2e;
    --main-dark: #8f1d15;
    --main-light: #3a1f1d;
    --second: #f2b63d;
    --strip: #e23b2e;
    --page: #0d0d0f;
    --card: #17171a;
    --text: #dcd3cd;
    --text-soft: #8f857e;
    --line: #3a3230;
    --footer-top: #000000;
    --footer-bottom: #1a0b0b;
    --footer-text: #e0d8d2;
    --footer-soft: #7d746e;
    --overlay: rgba(0, 0, 0, 0.88);
    --font: "Poppins", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--page);
    background-image: radial-gradient(ellipse at top, #221212 0%, var(--page) 60%);
    background-repeat: no-repeat;
    color: var(--text);
    font-family: var(--font);
}

body.lp-lock {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.lp-site-main {
    width: 100%;
}

.lp-adult-strip {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 6px 8px;
    background: var(--strip);
}

.lp-adult-strip img {
    height: 36px;
}

.lp-adult-strip p {
    color: #0d0d0f;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.48px;
}

.lp-main-nav {
    width: 100%;
    background: #0d0d0f;
    border-bottom: 1px solid var(--line);
}

.lp-nav-row {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-logo img {
    height: 42px;
    max-width: 60vw;
    object-fit: contain;
}

.lp-nav-links {
    display: flex;
    gap: 36px;
}

.lp-nav-links a {
    color: var(--footer-text);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}

.lp-nav-links a:hover {
    color: var(--second);
}

.lp-menu-button {
    display: none;
}

.lp-menu-button img {
    height: 24px;
}

.lp-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    background: var(--overlay);
}

.lp-mobile-menu.lp-open {
    display: block;
}

.lp-mobile-menu-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
}

.lp-mobile-menu-close {
    position: absolute;
    right: 20px;
    top: 16px;
}

.lp-mobile-menu-close img {
    height: 36px;
}

.lp-mobile-menu-links {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 45px;
    padding-left: 30px;
}

.lp-mobile-menu-links a {
    color: var(--footer-text);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}

.lp-mobile-menu-links a:hover {
    color: var(--second);
}

.lp-hero-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 0;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.lp-hero-visual {
    position: absolute;
    left: 27px;
    top: 32px;
    height: 624px;
    z-index: 1;
}

.lp-hero-visual-mobile {
    display: none;
    object-fit: cover;
    object-position: left center;
}

.lp-hero-copy {
    width: 100%;
    padding: 16px 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: 20px;
    background: rgba(23, 23, 26, 0.86);
    backdrop-filter: blur(6px);
}

.lp-hero-copy h1 {
    max-width: 734px;
    color: var(--second);
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 45px;
}

.lp-hero-copy h2 {
    max-width: 734px;
    color: #b8a99f;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    line-height: 32px;
}

.lp-platforms {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 16px;
    position: relative;
    z-index: 2;
}

.lp-platform-card {
    width: 100%;
    max-width: 851px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 20px 32px;
    border-radius: 40px;
    outline: 2px solid var(--main);
    background: var(--card);
    box-shadow: 0 0 14px rgba(226, 59, 46, 0.35);
    position: relative;
}

.lp-platform-logo {
    height: 106px;
    width: 143px;
    object-fit: contain;
}

.lp-platform-info {
    min-width: 276px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lp-platform-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 2px 0;
}

.lp-platform-rating strong {
    color: var(--text);
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
}

.lp-stars {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 2px;
}

.lp-stars span:first-child {
    color: #4a423e;
}

.lp-stars span:last-child {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    width: calc(var(--rating) * 10%);
    color: var(--second);
}

.lp-platform-offer {
    color: var(--text);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.lp-platform-action {
    width: 304px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 2px solid #7a1313;
    background: var(--main);
    color: #0d0d0f;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.35), 0 0 12px rgba(226, 59, 46, 0.45);
}

.lp-platform-action:active {
    transform: translateY(1px);
}

.lp-main-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 32px 0;
    background: linear-gradient(180deg, var(--footer-top) 0%, var(--footer-bottom) 94%);
    color: var(--footer-text);
}

.lp-footer-icons {
    width: 1240px;
    max-width: calc(100% - 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 51px;
    padding: 32px 0;
    flex-wrap: wrap;
}

.lp-icon-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 24px;
    gap: 40px;
}

.lp-icon-row img {
    height: 54px;
}

.lp-legal-text {
    width: 1240px;
    max-width: calc(100% - 32px);
    margin-top: 30px;
    color: var(--footer-soft);
    font-size: 16px;
    line-height: 24px;
}

.lp-legal-text a {
    color: var(--footer-soft);
    text-decoration: underline;
}

.lp-legal-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 30px;
}

.lp-legal-links a {
    color: var(--footer-text);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: underline;
}

.lp-legal-links a:hover {
    color: var(--second);
}

.lp-copyright {
    color: var(--footer-soft);
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    padding: 0 16px;
    text-transform: capitalize;
}

.lp-cookie-notice {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    width: 364px;
    max-width: calc(100% - 24px);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    background: var(--card);
    color: var(--text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lp-cookie-notice.lp-show {
    display: flex;
}

.lp-cookie-notice p {
    padding: 0 8px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

.lp-cookie-notice a {
    color: var(--second);
    text-decoration: underline;
}

.lp-cookie-actions {
    display: flex;
    width: 100%;
    gap: 8px;
}

.lp-cookie-actions button {
    flex: 1;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #3a3330;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.lp-cookie-actions button:last-child {
    border-color: var(--main);
    background: var(--main);
    color: #0d0d0f;
}

.lp-age-popup {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--overlay);
}

.lp-age-popup.lp-show {
    display: flex;
}

.lp-age-panel {
    width: 454px;
    max-width: calc(100% - 32px);
    padding: 16px 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 8px;
    outline: 1px solid #4a423e;
    background: var(--card);
    color: var(--text);
    text-align: center;
}

.lp-age-panel p {
    font-size: 16px;
    line-height: 24px;
}

.lp-age-panel a {
    color: var(--second);
    text-decoration: underline;
}

.lp-age-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-age-actions button {
    height: 56px;
    border-radius: 8px;
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.lp-age-actions button:first-child {
    background: var(--main);
    color: #0d0d0f;
}

.lp-age-actions button:last-child {
    background: #3a3330;
    color: var(--footer-text);
    font-weight: 500;
}

.lp-page-section {
    width: 993px;
    max-width: calc(100% - 32px);
    margin: 48px auto;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--card);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.lp-page-title {
    align-self: center;
    max-width: 466px;
    color: var(--second);
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 44px;
}

.lp-page-section p,
.lp-page-section li {
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.lp-page-section ul {
    list-style: inside;
}

.lp-page-section > span {
    color: var(--second);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.lp-page-section a {
    color: var(--second);
    text-decoration: underline;
}

.lp-content-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lp-contact-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    padding: 48px 42px;
}

.lp-contact-info {
    width: 100%;
    max-width: 974px;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(23, 23, 26, 0.9);
    backdrop-filter: blur(5px);
}

.lp-newsletter-card {
    width: 100%;
    max-width: 350px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.lp-newsletter-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.lp-newsletter-head span {
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.lp-newsletter-head p {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 24px;
}

.lp-newsletter-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-newsletter-form input {
    width: 100%;
    height: 46px;
    padding: 10px 6px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--page);
    color: var(--text);
    font-size: 16px;
    line-height: 26px;
    outline: none;
}

.lp-newsletter-form input::placeholder {
    color: #6b625c;
}

.lp-newsletter-form button {
    height: 46px;
    border-radius: 8px;
    background: var(--main);
    color: #0d0d0f;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
}

.lp-newsletter-form button:hover {
    background: var(--main-dark);
}

.lp-thank-page {
    width: 100%;
    padding: 90px 0;
}

.lp-thank-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.lp-page-label {
    color: var(--main);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lp-thank-content h1 {
    color: var(--second);
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.lp-thank-content p {
    max-width: 640px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.lp-back-home {
    min-height: 46px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--main);
    color: #0d0d0f;
    font-weight: 700;
}

.lp-back-home:hover {
    background: var(--main-dark);
}

.lp-chemin-body {
    min-height: 100vh;
    background: var(--page);
    background-image: radial-gradient(ellipse at top, #221212 0%, var(--page) 60%);
    background-repeat: no-repeat;
}

.lp-chemin-page {
    min-height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-chemin-box {
    width: min(430px, 100%);
    padding: 34px;
    text-align: center;
    border: 1px solid var(--line);
    border-top: 4px solid var(--main);
    border-radius: 12px;
    background: var(--card);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.lp-chemin-box img {
    width: 200px;
    margin: 0 auto;
}

.lp-chemin-line {
    width: 180px;
    height: 4px;
    margin: 22px auto;
    position: relative;
    background: var(--line);
}

.lp-chemin-line::before,
.lp-chemin-line::after {
    content: "";
    position: absolute;
    top: -5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--main);
}

.lp-chemin-line::before {
    left: 0;
}

.lp-chemin-line::after {
    right: 0;
    background: var(--second);
}

.lp-chemin-box h1 {
    margin: 0;
    color: var(--second);
    font-size: 25px;
}

.lp-chemin-box p {
    margin: 8px 0 0;
    color: var(--text-soft);
    font-size: 13px;
}

@media only screen and (max-width: 1200px) {
    .lp-hero-visual {
        height: 500px;
    }

    .lp-hero-copy {
        padding: 16px 270px;
    }
}

@media only screen and (max-width: 1024px) {
    .lp-hero-visual {
        display: none;
    }

    .lp-hero-visual-mobile {
        display: block;
        position: absolute;
        top: 48px;
        left: 0;
        height: 200px;
    }

    .lp-hero-copy {
        min-height: 218px;
        justify-content: center;
        align-items: flex-end;
        padding: 8px 8px 8px 130px;
        background: rgba(23, 23, 26, 0.7);
    }

    .lp-hero-copy h1,
    .lp-hero-copy h2 {
        position: relative;
        z-index: 2;
        padding-left: 12px;
        text-align: left;
    }

    .lp-contact-wrap {
        padding: 48px 16px;
    }
}

@media only screen and (max-width: 900px) {
    .lp-platforms {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
    }

    .lp-platform-card {
        flex-direction: column;
        max-width: 343px;
        padding: 20px 24px 16px;
        gap: 20px;
    }

    .lp-platform-info {
        margin-top: -20px;
        padding-top: 4px;
    }

    .lp-platform-action {
        max-width: 259px;
    }
}

@media only screen and (max-width: 768px) {
    .lp-adult-strip img {
        height: 26px;
    }

    .lp-adult-strip p {
        font-size: 13px;
        line-height: 26px;
    }

    .lp-nav-links {
        display: none;
    }

    .lp-menu-button {
        display: block;
    }

    .lp-logo img {
        height: 32px;
    }

    .lp-nav-row {
        padding: 12px 16px;
    }

    .lp-page-section {
        margin: 26px 0;
        padding: 0 4px;
        gap: 8px;
    }

    .lp-page-title {
        font-size: 22px;
        line-height: 30px;
    }

    .lp-page-section > span {
        font-size: 17px;
    }

    .lp-main-footer {
        padding: 0 0 22px;
        gap: 20px;
    }

    .lp-footer-icons {
        gap: 0;
        padding: 0;
    }

    .lp-icon-row {
        padding: 20px 16px;
        gap: 32px;
    }

    .lp-icon-row img {
        height: 44px;
    }

    .lp-legal-text {
        margin-top: 0;
    }

    .lp-legal-links {
        padding: 12px 0 0;
    }

    .lp-hero-section {
        padding: 0;
    }

    .lp-hero-visual-mobile {
        height: 176px;
    }

    .lp-hero-copy {
        border-radius: 10px;
        gap: 8px;
        background: rgba(23, 23, 26, 0.7);
        backdrop-filter: blur(5px);
    }

    .lp-hero-copy h1 {
        font-size: 22px;
        line-height: 30px;
    }

    .lp-hero-copy h2 {
        font-size: 18px;
        line-height: 26px;
    }

    .lp-platforms {
        padding: 32px 16px;
        gap: 32px;
        margin: 0;
    }

    .lp-contact-wrap {
        flex-direction: column;
        gap: 10px;
        padding: 10px 16px;
    }

    .lp-cookie-notice {
        right: unset;
        bottom: 4px;
        padding: 8px 16px;
    }
}
