Changed around line 1
+ :root {
+ --primary-color: #8b0000;
+ --secondary-color: #f4e4bc;
+ --text-color: #2c1810;
+ --accent-color: #d4af37;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: "Microsoft YaHei", sans-serif;
+ color: var(--text-color);
+ background: linear-gradient(135deg, #f5f5f5, var(--secondary-color));
+ line-height: 1.6;
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
+ url('assets/bg.jpg') center/cover;
+ text-align: center;
+ color: white;
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
+ }
+
+ .start-btn {
+ padding: 1rem 2rem;
+ font-size: 1.2rem;
+ background: var(--accent-color);
+ border: none;
+ border-radius: 5px;
+ color: white;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .start-btn:hover {
+ transform: scale(1.05);
+ }
+
+ .dialogue-section {
+ min-height: 100vh;
+ padding: 2rem;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+
+ .dialogue-container {
+ max-width: 800px;
+ width: 100%;
+ background: white;
+ border-radius: 15px;
+ padding: 2rem;
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .menu-toggle {
+ display: block;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+ }