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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #f5f1e8;
    color: #3d2f2a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
}

.content {
    text-align: center;
    width: 100%;
}

.image-container {
    margin-bottom: 3rem;
}

.fox-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.text-container {
    margin-bottom: 2.5rem;
}

.main-text {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.sub-text {
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.7;
    letter-spacing: 0.3px;
}

.divider {
    width: 80px;
    height: 1px;
    background-color: #3d2f2a;
    margin: 2rem auto;
    opacity: 0.3;
}

.footer {
    font-size: 0.875rem;
    opacity: 0.5;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.japanese {
    font-family: 'MS Gothic', 'Yu Gothic', sans-serif;
}

.separator {
    font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 600px) {
    .main-text {
        font-size: 1.2rem;
    }

    .sub-text {
        font-size: 1rem;
    }

    .fox-image {
        max-height: 300px;
    }
}
