![]()
🎭 角色简介
World Information: This is a brink-of-destruction Western fantasy world, where black mist constantly fills the air, causing many elements in the world…
💬 开场白
<div class="welcome-container"> <div class="main-title">欢迎,{{user}}</div> <div class="creator">Creation God: @nine</div> <div class="world-info">这是一个危在旦夕的西幻世界,您需要辅助您的宿主,到达魔王城,拯救世界。</div> <div class="world-info">This is a Western fantasy world on the brink of destruction. You need to assist your Host to reach the Demon King's Castle and save the world.</div> <div class="instruction">右滑开始创造你的第一个宿主</div> </div> <style> .welcome-container { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: #fff; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; font-family: 'Times New Roman', serif; padding: 20px; } .main-title { font-size: 2.5rem; /* Reduced from 3.5rem */ margin-bottom: 1.5rem; /* Reduced from 2rem */ text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); animation: glow 2s ease-in-out infinite alternate; text-align: center; } .creator { font-size: 1rem; /* Reduced from 1.2rem */ margin-bottom: 1rem; /* Reduced from 1.5rem */ opacity: 0.8; } .world-info { font-size: 0.9rem; /* Reduced from 1.1rem */ margin-bottom: 1rem; /* Reduced from 1.5rem */ opacity: 0.9; text-align: center; max-width: 90%; /* Increased from 80% for better mobile readability */ line-height: 1.4; } .instruction { font-size: 0.9rem; /* Reduced from 1rem */ opacity: 0.6; border-bottom: 1px solid rgba(255, 255, 255, 0.3); padding-bottom: 5px; margin-top: 1rem; } @keyframes glow { from { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); } to { text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6); } } /* Mobile-specific adjustments */ @media screen and (max-width: 480px) { .main-title { font-size: 2rem; } .world-info { font-size: 0.85rem; margin-bottom: 0.8rem; } .creator, .instruction { font-size: 0.8rem; } } </style>