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

html,
body {
    font-family: 'Sawarabi Mincho', serif;
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero {
    height: 100vh;
    background: url('https://mojomu.com/assets/img/sakura-tree-in-kaori-sc.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(20px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}

.hero h1 {
    font-size: 1.2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

section p.lead {
    font-size: 1rem;
    color: #555;
}

section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.screenshot-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.screenshot {
    width: 280px;
    height: 160px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform .3s;
    overflow: hidden;
}

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

.screenshot:hover {
    transform: scale(1.05);
}

.cta-button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    margin: 0px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #222;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: background .3s;
}

.cta-button:hover {
    background-color: #444;
}

.screen-effect-container {
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    left: 0px;
    top: 0px;
}

.screen-effect {
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    left: 0px;
    top: 0px;
    pointer-events: none;
}

.sakura {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url('https://mojomu.com/assets/img/sakura-figure.png');
    background-size: cover;
    opacity: 0.9;
    animation: fall 10s linear infinite;
    z-index: 0;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

.mouse-sakura {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url('https://mojomu.com/assets/img/sakura-figure.png');
    background-size: cover;
    animation: fadeOut 1.2s ease-out forwards;
    z-index: 3;
}

.mouse-sakura-blur {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url('https://mojomu.com/assets/img/sakura-figure.png');
    background-size: cover;
    opacity: 0.03;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: scale(0.3) rotate(360deg);
    }
}

.social-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: #222;
    transition: transform .3s, box-shadow .3s;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.social-card img {
    height: 24px;
    width: auto;
}

.profile-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.profile {
    text-align: center;
    max-width: 200px;
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile .name {
    margin-top: 10px;
}

.profile .quote {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.text {
    max-width: 800px;
    line-height: 1.8;
    text-align: left;
    margin-top: 20px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    border-radius: 12px;
    margin: 2px 3px;
    background-color: #eee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.badge-pink {
    background-color: #f8c4d9;
}

.badge-purple {
    background-color: #dcd0ff;
}

.badge-dark {
    background-color: #b8c1d1;
}

.badge-red {
    background-color: #f7b4a4;
}

.badge-blue {
    background-color: #add8f7;
}

footer {
    background-color: #111;
    color: #ccc;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.95rem;
}

@media (min-width:768px) {
    .hero h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 2.4rem;
    }
}