body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #D3E4FD 0%, #E7F0FD 100%);
    font-family: "Yu Mincho", "MS Mincho", serif;
    overflow: hidden;
    position: relative;
}

.clouds {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    animation: float 20s infinite linear;
}

.cloud1 {
    width: 200px;
    height: 60px;
    top: 20%;
    left: -200px;
    animation-delay: 0s;
}

.cloud2 {
    width: 150px;
    height: 45px;
    top: 40%;
    left: -150px;
    animation-delay: -7s;
}

.cloud3 {
    width: 180px;
    height: 55px;
    top: 60%;
    left: -180px;
    animation-delay: -14s;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.cloud::before {
    width: 50%;
    height: 100%;
    top: -50%;
    left: 25%;
}

.cloud::after {
    width: 30%;
    height: 100%;
    top: -30%;
    left: 85%;
}

.content {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    padding: 2rem;
    text-align: center;
    z-index: 1;
}

.golden-text {
    color: #B8860B;
    font-size: 3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: glow 2s infinite alternate;
}

.message-box {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 600px;
    animation: float-slow 4s infinite alternate;
}

.message-box p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.angel-decoration {
    position: absolute;
    width: 100px;
    height: 150px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FEF7CD"><path d="M12 2L9 9h6l-3-7zm0 18.5L15 12H9l3 8.5z"/></svg>');
    background-repeat: no-repeat;
    opacity: 0.3;
}

.angel-decoration.left {
    left: 10%;
    top: 20%;
    transform: rotate(-15deg);
}

.angel-decoration.right {
    right: 10%;
    top: 20%;
    transform: rotate(15deg);
}

.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, #FEF7CD, transparent);
    border-radius: 50%;
    animation: float-orb 5s infinite alternate;
}

.orb:nth-child(1) { left: 20%; top: 30%; animation-delay: 0s; }
.orb:nth-child(2) { left: 50%; top: 60%; animation-delay: -2s; }
.orb:nth-child(3) { left: 80%; top: 40%; animation-delay: -4s; }

@keyframes float {
    from { transform: translateX(-100%); }
    to { transform: translateX(100vw); }
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

@keyframes float-slow {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

@keyframes float-orb {
    from { transform: translate(0, 0); }
    to { transform: translate(10px, -10px); }
}