Changed around line 1
+ :root {
+ --primary-color: #e60012;
+ --text-color: #333;
+ --bg-color: #fff;
+ --accent-color: #ffd700;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--bg-color);
+ }
+
+ header {
+ padding: 1rem;
+ background: var(--bg-color);
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ position: fixed;
+ width: 100%;
+ z-index: 100;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ padding: 2rem;
+ background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
+ }
+
+ .character {
+ font-size: 15vw;
+ font-weight: bold;
+ color: var(--primary-color);
+ opacity: 0;
+ transform: translateY(50px);
+ animation: fadeUp 0.8s ease forwards;
+ }
+
+ .character:nth-child(2) {
+ animation-delay: 0.3s;
+ }
+
+ .translation {
+ font-size: 2rem;
+ margin-top: 2rem;
+ color: var(--text-color);
+ opacity: 0;
+ transform: translateY(30px);
+ animation: fadeUp 0.8s ease forwards 0.6s;
+ }
+
+ .content {
+ padding: 4rem 2rem;
+ text-align: center;
+ }
+
+ .info {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ color: var(--primary-color);
+ }
+
+ footer {
+ padding: 2rem;
+ text-align: center;
+ background: #f8f8f8;
+ }
+
+ footer a {
+ color: var(--text-color);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ footer a:hover {
+ color: var(--primary-color);
+ }
+
+ @keyframes fadeUp {
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ @media (max-width: 768px) {
+ .character {
+ font-size: 20vw;
+ }
+
+ .translation {
+ font-size: 1.5rem;
+ }
+
+ h1 {
+ font-size: 2rem;
+ }
+ }