@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;600;700&display=swap');

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.container {
    max-width: 700px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.content {
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    margin-bottom: 4rem;
}

.name {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.name-en {
    font-size: 1.8rem;
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 0.2em;
}

.status {
    margin: 4rem 0;
}

.status-text {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.status-sub {
    font-size: 1.3rem;
    opacity: 0.7;
    font-style: italic;
}

.quote {
    margin: 3rem 0;
    font-size: 1.5rem;
    font-style: italic;
    opacity: 0.6;
}

.links {
    margin-top: 4rem;
}

.link-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.link-btn:hover {
    background: #fff;
    color: #1e3a8a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .name {
        font-size: 2.5rem;
    }

    .name-en {
        font-size: 1.2rem;
    }

    .status-text {
        font-size: 2rem;
    }
}