/* === RESET START === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'Cabin', sans-serif;
    background-color: #fff;
    color: #111;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === RESET END === */

/* === BASE === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Aldrich', sans-serif;
    font-weight: normal;
}

body.lsp-body {
    line-height: 1.5;
    background-color: #fefefe;
}

/* === HEADER === */
.topShell {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topShell__wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topShell__logo img {
    height: 42px;
}

.topShell__nav {
    display: flex;
}

.topShell__list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.topShell__list li a {
    font-weight: 500;
    transition: color 0.3s;
}

.topShell__list li a:hover {
    color: #ce1e58;
}

.topShell__burger {
    display: none;
    font-size: 1.5rem;
}

/* Mobile nav */
@media (max-width: 768px) {
    .topShell__nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 200px;
        padding: 1rem;
        border: 1px solid #ddd;
        display: none;
    }

    .topShell__nav.active {
        display: flex;
    }

    .topShell__burger {
        display: block;
    }
}

/* === HERO BLOCK === */
.heroWave__bg {
    background: url('../assets/bg-hero.jpg') center/cover no-repeat;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heroWave__shade {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.heroWave__inner {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.heroWave__title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .heroWave__title {
        font-size: 2.5rem;
    }
}

.heroWave__desc {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.heroWave__features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.heroWave__card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulseCard 3s infinite;
}

@keyframes pulseCard {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.heroWave__card i {
    font-size: 1.25rem;
}

/* === PROMO BLOCK === */
.pulseZone {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pulseZone__bg {
    background: url('../assets/promo-bg.jpg') center/cover fixed no-repeat;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pulseZone__shade {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.pulseZone__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 10px;
}

.pulseZone__headline {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .pulseZone__headline {
        font-size: 2rem;
    }
}

.pulseZone__btn {
    background: #ce1e58;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.pulseZone__btn:hover {
    background: #a90b40;
}

.trustPanel {
    padding: 5rem 2rem;
    background: #fafafa;
}

.trustPanel__wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trustPanel__title {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    font-family: 'Aldrich', sans-serif;
    color: #222;
}

.trustPanel__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.trustPanel__card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s, box-shadow 0.4s;
}

.trustPanel__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.trustPanel__card i {
    font-size: 2rem;
    color: #ce1e58;
    margin-bottom: 1rem;
}

.trustPanel__cardTitle {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.trustPanel__cardText {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.froggroove {
    background: linear-gradient(135deg, #1f1b3a 0%, #3a1f4f 50%, #711a52 100%);
    position: relative;
    overflow: hidden;
}


.froggroove__wrap {
    position: relative;
    z-index: 2;
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.froggroove__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.froggroove__text {
    flex: 1 1 500px;
    color: #fff;
}

.froggroove__title {
    font-family: 'Aldrich', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.froggroove__desc {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ddd;
}

.froggroove__btn {
    background: #ce1e58;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.froggroove__btn:hover {
    background: #a90b40;
}

.froggroove__image {
    flex: 1 1 400px;
    text-align: center;
}

.froggroove__image img {
    width: 320px;
    max-width: 100%;
    animation: bounceFrog 4s ease-in-out infinite;
}

@keyframes bounceFrog {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .froggroove__content {
        flex-direction: column-reverse;
        text-align: center;
    }
}

.voiceField {
    background: #f6f6f6;
    padding: 5rem 2rem;
}

.voiceField__wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.voiceField__title {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    font-family: 'Aldrich', sans-serif;
    color: #222;
}

.voiceField__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
    gap: 2rem;
}

.voiceField__card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voiceField__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.voiceField__text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.voiceField__authorWrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.voiceField__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ce1e58;
}

.voiceField__author {
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}

.faqNest {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 5rem 2rem;
}

.faqNest__wrap {
    max-width: 900px;
    margin: 0 auto;
}

.faqNest__title {
    text-align: center;
    font-size: 2.25rem;
    font-family: 'Aldrich', sans-serif;
    margin-bottom: 3rem;
    color: #222;
}

.faqNest__accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faqNest__item {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faqNest__item.open {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.faqNest__question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    color: #333;
    cursor: pointer;
    transition: background 0.3s;
}

.faqNest__question:hover {
    background: #f0f0f0;
}

.faqNest__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faqNest__item.open .faqNest__answer {
    max-height: 500px;
    padding: 0.75rem 1.5rem 1.25rem;
}

.faqNest__answer p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.safePlayZone {
    background: #fff0f5;
    padding: 4rem 2rem;
    border-top: 1px solid #ddd;
}

.safePlayZone__wrap {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.safePlayZone__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Aldrich', sans-serif;
    color: #8c1f3d;
}

.safePlayZone__text {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

.safePlayZone__support {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.safePlayZone__support img {
    transition: transform 0.3s ease;
    max-width: 220px;
    background: #222;
    padding: 10px;
    border-radius: 5px;
}

.safePlayZone__support img:hover {
    transform: scale(1.05);
}

.talkGate {
    background: #fefefe;
    padding: 5rem 2rem;
    border-top: 1px solid #eee;
}

.talkGate__wrap {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.talkGate__title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    font-family: 'Aldrich', sans-serif;
    color: #222;
}

.talkGate__contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #444;
}

.talkGate__contact i {
    margin-right: 0.5rem;
    color: #ce1e58;
}

.talkGate__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.talkGate__form input,
.talkGate__form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    resize: none;
}

.talkGate__form button {
    background: #ce1e58;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.talkGate__form button:hover {
    background: #a90b40;
}

/* Modal Thank You */
.talkModal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.talkModal__box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.talkModal__box p {
    margin-bottom: 1.5rem;
    color: #222;
}

.talkModal__box button {
    background: #ce1e58;
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.deepFooter {
    background: #111;
    color: #ccc;
    padding: 3rem 2rem 1rem;
    font-size: 0.95rem;
}

.deepFooter__wrap {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.deepFooter__col {
    flex: 1 1 280px;
}

.deepFooter__about h4 {
    font-family: 'Aldrich', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.deepFooter__about p {
    line-height: 1.6;
    color: #bbb;
}

.deepFooter__age {
    display: flex;
    align-items: center;
    justify-content: center;
}

.deepFooter__badge {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    background: #ce1e58;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.deepFooter__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.deepFooter__links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.deepFooter__links a:hover {
    color: #fff;
}

.deepFooter__bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid #222;
    padding-top: 1rem;
}

.cookieNote {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    color: #eee;
    padding: 1rem 1.5rem;
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease forwards;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookieNote__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookieNote__text {
    font-size: 0.95rem;
    flex: 1 1 70%;
}

.cookieNote__text a {
    color: #ce1e58;
    text-decoration: underline;
}

.cookieNote__btn {
    background: #ce1e58;
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    flex: 0 0 auto;
    transition: background 0.3s ease;
}

.cookieNote__btn:hover {
    background: #a90b40;
}

.ageGate {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ageGate__inner {
    text-align: center;
    max-width: 500px;
    padding: 2rem;
    background: #1f1f1f;
    border-radius: 16px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
}

.ageGate__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Aldrich', sans-serif;
}

.ageGate__text {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #ccc;
}

.ageGate__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ageGate__btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.ageGate__btn--yes {
    background: #ce1e58;
    color: #fff;
}

.ageGate__btn--yes:hover {
    background: #a90b40;
}

.ageGate__btn--no {
    background: #444;
    color: #fff;
}

.ageGate__btn--no:hover {
    background: #222;
}