@charset "UTF-8";

/* SP用スタイル */
.pc_only {
    display: none !important;
}

body {
    font-family: "Mochiy Pop One", sans-serif;
    margin: 0;
}

img {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-wrap {
    display: flex;
    max-width: 100%;
    width: 100%;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    background: rgb(255 255 255 / 90%);
    border-radius: 0;
    margin: 0;
    padding: 0 15px;
    box-sizing: border-box;
}

.header__menu {
    display: none;
}

/* Hamburger Icon */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #237B3A;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger span:nth-child(1) {
    margin-bottom: 5px;
}

.hamburger span:nth-child(3) {
    margin-top: 5px;
}

/* Hamburger Active State (X mark) */
.hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* SP Menu */
.sp-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgb(255 255 255 / 95%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    z-index: 999;
}

.sp-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.sp-menu__list {
    list-style: none;
    margin: 0;
    padding: 15px 0;
}

.sp-menu__list li {
    border-bottom: 1px solid #eee;
}

.sp-menu__list li:last-child {
    border-bottom: none;
}

.sp-menu__list a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background 0.2s;
}

.sp-menu__list a:hover,
.sp-menu__list a:active {
    background: #f5f5f5;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__logo img {
    width: 40px;
}

.header__logo span {
    font-size: 18px;
    color: #237B3A;
}

/* top */
.top {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(#7FB7FF 0%, #ffffff 100%);
    overflow: hidden;
}

.top-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

/* Cloud */
.cloud {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cloud span {
    position: absolute;
    display: block;
}

.cloud span img {
    width: 100%;
    height: auto;
}

.cloud-01 {
    width: 140px;
    top: 15%;
    left: 3%;
    animation: floatAround1 6s ease-in-out infinite;
}

.cloud-02 {
    width: 140px;
    top: 10%;
    right: 5%;
    animation: floatAround2 7s ease-in-out infinite;
}

.cloud-03 {
    width: 120px;
    top: 12%;
    left: 0;
    right: 0;
    animation: floatAround3 5s ease-in-out infinite;
    margin: 0 auto;
}

.cloud-04 {
    width: 90px;
    top: 25%;
    right: 10%;
    animation: floatAround4 8s ease-in-out infinite;
}

.cloud-05 {
    width: 90px;
    top: 8%;
    left: 15%;
    animation: floatAround4 8s ease-in-out infinite;
}

@keyframes floatAround1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(5px, -4px);
    }

    50% {
        transform: translate(3px, 3px);
    }

    75% {
        transform: translate(-4px, -2px);
    }
}

@keyframes floatAround2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-4px, 3px);
    }

    50% {
        transform: translate(3px, -5px);
    }

    75% {
        transform: translate(5px, 2px);
    }
}

@keyframes floatAround3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(3px, 4px);
    }

    50% {
        transform: translate(-5px, -3px);
    }

    75% {
        transform: translate(-3px, 5px);
    }
}

@keyframes floatAround4 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-3px, -5px);
    }

    50% {
        transform: translate(4px, 3px);
    }

    75% {
        transform: translate(6px, -4px);
    }
}

/* Title Area */
.title-area {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 90%;
}

.title-area h1 {
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: normal;
    font-size: 28px;
    color: #237B3A;
    margin: 0 0 10px 0;
}

.copy-title {
    font-size: 16px;
    color: #333;
}

/* Top Chara */
.top-chara {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    z-index: 10;
    animation: popUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(50px) scale(0.5);
    }

    60% {
        opacity: 1;
        transform: translateX(-50%) translateY(-10px) scale(1.1);
    }

    80% {
        transform: translateX(-50%) translateY(5px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* Recommen */
.recommen {
    position: absolute;
    bottom: 28%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    z-index: 10;
    width: 100%;
}

.recommen-cont {
    width: 115px;
    height: 115px;
    background: #F5A623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 13px;
    padding: 12px;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    white-space: nowrap;
}

.recommen-cont:nth-child(1) {
    animation-delay: 0.3s;
}

.recommen-cont:nth-child(2) {
    transform: translateY(50px) !important;
    animation-delay: 0.6s;
}

.recommen-cont:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* アプリで出来ること */
.app {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 15px;
}

.app h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 30px;
}

.app-bg {
    position: relative;
    width: 100%;
    max-width: min(90vw, 500px);
    margin: 0 auto;
}

.app-bg img {
    width: 100%;
    height: auto;
}

.app-content {
    position: absolute;
    top: 15%;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.app-left,
.app-right {
    width: 90%;
    padding: clamp(15px, 4vw, 25px);
    box-sizing: border-box;
}

.app-left {
    text-align: center;
}

.app-left .text-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url('/imges/round.svg') no-repeat center center;
    background-size: contain;
    margin-bottom: 15px;
    padding: 20px;
}

.app-left .text {
    color: #000000;
    width: min(18vw, 80px);
    height: min(18vw, 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: min(2.8vw, 14px);
}

.app-left .text-wrap .text {
    width: min(20vw, 100px);
}

.app-left .text-wrap {
    display: flex;
    margin-top: 0px;
}

.app-left h3 {
    font-size: min(4.5vw, 22px);
    margin: min(2vw, 12px) 0;
}

.app-left .img-wrap {
    width: min(28vw, 120px);
    margin: 0 auto;
}

.app-left .img-wrap img {
    width: 100%;
    height: auto;
}

.app-right {
    padding: 5vw 10%;
    word-break: break-word;
}

.app-right p {
    font-size: min(3vw, 12px);
    line-height: 1.8;
}

.app-right .wood {
    width: 25vw;
    margin: 5vw auto 1vw auto;
}



/* 安否確認の仕組み */
.safety {
    position: relative;
    background: url('/imges/safety-sp-bg.png') no-repeat center center;
    background-size: cover;
    padding: 50px 15px 80px 15px;
    overflow: hidden;
}

.safety h2 {
    text-align: center;
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.safety-subtitle {
    text-align: center;
    font-size: 14px;
    color: #000000;
    margin-bottom: 30px;
}

.safety-flow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    margin: 30px auto 0 auto;
}

.safety-step {
    position: relative;
    text-align: center;
}

.safety-step::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    bottom: -40px;
    right: -20px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 4;
}

.safety-step:nth-child(1)::after {
    background-image: url('/imges/chara-03.png');
}

.safety-step:nth-child(3)::after {
    background-image: url('/imges/chara-04.png');
}

.safety-step:nth-child(5)::after {
    background-image: url('/imges/chara-07.png');
}

.safety-box {
    position: relative;
    display: flex;
    width: 280px;
    height: auto;
    padding: 15px 20px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 15px;
}

.safety-box::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: -8px;
    right: -8px;
    background: #F5A623;
    z-index: 1;
}

.safety-box::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    border: 1px solid #F5A623;
    z-index: 2;
}

.safety-box .img-wrap {
    display: flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.safety-box .img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.safety-box p {
    position: relative;
    z-index: 3;
}

.safety-step p {
    margin-top: 0;
    font-size: 14px;
    color: #000000;
    font-weight: bold;
    text-align: left;
}

.safety-arrow {
    color: #F5A623;
    font-size: 24px;
    transform: rotate(90deg);
}

/* 家族との会話が生まれる理由 */
.family {
    position: relative;
    padding: 50px 15px 0 15px;
    overflow: hidden;
    background: #fff;
}

.family h2 {
    position: relative;
    text-align: center;
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    z-index: 2;
}

.family h2 span {
    color: #F5A623;
}

.family-subtitle {
    position: relative;
    text-align: center;
    font-size: 14px;
    color: #333;
    margin: 10px 0;
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.family-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.family-circle-01 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 5%;
    border: 5px solid #D9D9D9;
    animation-delay: 0s;
}

.family-circle-02 {
    width: 100px;
    height: 100px;
    top: 3%;
    right: 3%;
    border: 5px solid #CAFFBE;
    animation-delay: 0.5s;
}

.family-circle-03 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 3%;
    border: 5px solid rgb(255 165 0 / 50%);
    margin: auto;
    z-index: 3;
    animation-delay: 1s;
}

.family-circle-04 {
    width: 120px;
    height: 120px;
    bottom: -10%;
    left: 10%;
    background: #FFF7E0;
    animation-delay: 1.5s;
}

.family-circle-05 {
    width: 100px;
    height: 100px;
    right: 5%;
    bottom: 5%;
    background: #FFFEBB;
    animation-delay: 2s;
}

.family-content {
    position: relative;
    max-width: 100%;
    margin: 30px auto 0;
    z-index: 1;
}

.family-img {
    width: 100%;
    text-align: center;
    margin-bottom: -5px;
}

.family-img img {
    max-width: 100%;
}

.balloon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.family-balloon {
    padding: 70px 30px;
    font-size: 12px;
    white-space: nowrap;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
}

.family-balloon-left {
    background-image: url('/imges/l-bubble.svg');
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: 0.3s;
}

.family-balloon-right {
    background-image: url('/imges/r-bubble.svg');
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.family-chara {
    position: absolute;
    bottom: 20px;
    width: 80px;
    z-index: 3;
}

.family-chara-left {
    left: 5%;
}

.family-chara-right {
    right: 5%;
    bottom: 10px;
}

/* Lineup Section */
.lineup {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: #fff;
}

.lineup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    pointer-events: none;
}

.lineup-overlay h2 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.lineup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    pointer-events: auto;
    z-index: 3;
}

.lineup-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1048 / 1563;
}

.lineup-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/imges/puzzle-sp.png') top/cover no-repeat;
    z-index: 2;
    pointer-events: none;
}

.lineup-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lineup-slider .slick-list,
.lineup-slider .slick-track,
.lineup-slider .slick-slide {
    height: 100%;
}

.lineup-slider .slick-slide>div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-card {
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.lineup-card:hover {
    transform: scale(1.03);
}

.lineup-tag {
    position: absolute;
    width: 55vw;
    max-width: 280px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.lineup-tag span {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

.lineup-card-img {
    width: 55vw;
    max-width: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.lineup-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

.lineup-card-text {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* YouTube Section */
.youtube {
    padding: 50px 15px;
    text-align: center;
    background: linear-gradient(180deg, #E8F5E9 0%, #FFFFFF 100%);
}

.youtube h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.youtube-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.youtube-content {
    max-width: 100%;
    margin: 0 auto;
}

.youtube-video {
    position: relative;
    width: 100%;
    padding-bottom: 70%;
}

.youtube-video::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/imges/movie-bg01.png') center/contain no-repeat;
    z-index: 2;
    pointer-events: none;
}

.youtube-video iframe {
    position: absolute;
    top: 20%;
    left: 8%;
    width: 84%;
    height: 62%;
    border-radius: 10px;
    z-index: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal.is-open {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 350px;
    max-height: 85vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    z-index: 10;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 25px 20px;
    max-height: 80vh;
    overflow-y: auto;
    text-align: center;
}

.modal-title {
    font-size: 26px;
    color: #4CAF50;
    margin-bottom: 5px;
}

.modal-subtitle {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.modal-chara {
    width: 120px;
    margin: 0 auto 15px;
}

.modal-chara img {
    width: 100%;
    height: auto;
}

.modal-goal {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.modal-goal strong {
    color: #FF9800;
}

.modal-btn {
    display: block;
    width: 180px;
    margin: 10px auto;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.modal-btn-start {
    background: #FF9800;
    color: #fff;
}

.modal-btn-setting {
    background: #fff;
    color: #333;
    border: 2px solid #ddd;
}

.modal-description {
    font-size: 12px;
    color: #666;
    margin: 20px 0 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.modal-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    text-align: left;
}

.modal-section-reverse {
    flex-direction: row-reverse;
}

.modal-section-img {
    flex-shrink: 0;
    width: 100px;
}

.modal-section-img img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.modal-section-text {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

.modal-section-text p {
    margin-bottom: 8px;
}

.modal-btn-line {
    display: block;
    width: 200px;
    margin-top: 20px;
    padding: 12px 15px;
    background: #11713B;
    color: #fff;
    border-radius: 16px;
    font-size: 14px;
}

/* Floating Button */
.floating-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    padding: 15px 10px;
    background: linear-gradient(180deg, #FF9A3E 0%, #FF6B00 100%);
    border: none;
    border-radius: 12px 0 0 12px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.floating-btn span {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    font-family: "Mochiy Pop One", sans-serif;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 550px) {
    .app-content {
        width: 90%;
        top: 15%;
        bottom: 3%;
    }

    .app-left .text {
        width: min(16vw, 70px);
        height: min(16vw, 70px);
        font-size: min(2.5vw, 12px);
    }

    .app-left .text-wrap .text {
        width: min(16vw, 85px);
    }

    .app-left h3 {
        font-size: min(4vw, 18px);
        margin: min(1.5vw, 8px) 0;
    }

    .app-left .img-wrap {
        width: min(22vw, 90px);
    }

    .app-right {
        padding: 3vw 8%;
        margin-top: auto;
        margin-bottom: min(9vw, 40%);
    }

    .app-right p {
        font-size: min(2.8vw, 11px);
        line-height: 1.4;
    }

    .app-right .wood {
        width: 22vw;
        margin: 3vw auto 1vw auto;
    }

    .balloon-wrap {
        gap: 20px;
    }

    .family-balloon {
        padding: 50px 20px;
        font-size: 10px;
    }
}

/* Error Page */
.error-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(#7FB7FF 0%, #ffffff 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    box-sizing: border-box;
}

.error-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.error-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 100%;
    width: 90%;
    padding: 30px 15px;
}

.error-message {
    background: rgb(255 255 255 / 90%);
    border-radius: 16px;
    padding: 40px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.error-code {
    font-family: "Mochiy Pop One", sans-serif;
    font-size: 80px;
    font-weight: normal;
    color: #F5A623;
    margin: 0 0 15px 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-title {
    font-family: "Mochiy Pop One", sans-serif;
    font-size: 22px;
    font-weight: normal;
    color: #237B3A;
    margin: 0 0 20px 0;
}

.error-description {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 30px 0;
}

.error-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #F5A623;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.error-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

@media screen and (max-width: 550px) {
    .error-code {
        font-size: 60px;
    }

    .error-title {
        font-size: 18px;
    }

    .error-description {
        font-size: 12px;
        line-height: 1.6;
    }

    .error-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .error-message {
        padding: 30px 20px;
    }
}

/* Privacy Page */
.privacy-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(#7FB7FF 0%, #ffffff 100%);
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
    box-sizing: border-box;
}

.privacy-content {
    position: relative;
    z-index: 10;
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    background: rgb(255 255 255 / 95%);
    border-radius: 16px;
    padding: 40px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.privacy-lang-toggle {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 25px;
}

.lang-btn {
    padding: 8px 16px;
    background: #fff;
    color: #237B3A;
    border: 2px solid #237B3A;
    border-radius: 16px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Mochiy Pop One", sans-serif;
}

.lang-btn:active {
    transform: scale(0.95);
}

.lang-btn.active {
    background: #237B3A;
    color: #fff;
    box-shadow: 0 2px 6px rgba(35, 123, 58, 0.3);
}

.privacy-lang-content {
    display: none;
}

.privacy-lang-content.active {
    display: block;
}

.privacy-title {
    font-family: "Mochiy Pop One", sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: #237B3A;
    margin: 0 0 15px 0;
    text-align: center;
}

.privacy-subtitle {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.6;
}

.privacy-subtitle strong {
    color: #237B3A;
    font-size: 16px;
}

.privacy-subtitle em {
    color: #666;
    font-size: 12px;
}

.privacy-operator {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F5A623;
}

.privacy-section {
    margin-bottom: 25px;
}

.privacy-section h2 {
    font-family: "Mochiy Pop One", sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #237B3A;
    margin: 0 0 12px 0;
    padding-top: 8px;
}

.privacy-section h3 {
    font-size: 16px;
    color: #F5A623;
    margin: 15px 0 8px 0;
    font-weight: bold;
}

.privacy-section p {
    font-size: 13px;
    color: #333;
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.privacy-section ul {
    margin: 12px 0;
    padding-left: 20px;
}

.privacy-section li {
    font-size: 13px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 6px;
}

.privacy-section a {
    color: #237B3A;
    text-decoration: underline;
    transition: color 0.3s;
}

.privacy-section a:hover,
.privacy-section a:active {
    color: #F5A623;
}

.privacy-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid #F5A623;
}

.privacy-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #F5A623;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.privacy-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

@media screen and (max-width: 550px) {
    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-lang-toggle {
        margin-bottom: 20px;
        gap: 6px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .privacy-title {
        font-size: 24px;
    }

    .privacy-subtitle {
        font-size: 12px;
    }

    .privacy-subtitle strong {
        font-size: 14px;
    }

    .privacy-section h2 {
        font-size: 18px;
    }

    .privacy-section h3 {
        font-size: 14px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 12px;
        line-height: 1.6;
    }

    .privacy-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(255 255 255 / 98%);
    border-top: 3px solid #F5A623;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    padding: 15px;
    box-sizing: border-box;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.cookie-banner-text {
    width: 100%;
}

.cookie-banner-text p {
    font-size: 12px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: #237B3A;
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-banner-text a:hover,
.cookie-banner-text a:active {
    color: #F5A623;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Mochiy Pop One", sans-serif;
    flex: 1;
    max-width: 150px;
}

.cookie-btn:active {
    transform: scale(0.95);
}

.cookie-btn-accept {
    background: #237B3A;
    color: #fff;
    box-shadow: 0 2px 6px rgba(35, 123, 58, 0.3);
}

.cookie-btn-decline {
    background: #fff;
    color: #333;
    border: 2px solid #ddd;
}

@media screen and (max-width: 550px) {
    .cookie-banner {
        padding: 12px;
    }

    .cookie-banner-text p {
        font-size: 11px;
    }

    .cookie-btn {
        padding: 8px 20px;
        font-size: 12px;
        max-width: 130px;
    }
}