Changed around line 1
+ :root {
+ --primary-color: #2a1b3d;
+ --secondary-color: #44318d;
+ --accent-color: #a4b3b6;
+ --text-light: #e8e8e8;
+ --text-dark: #2a2a2a;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-dark);
+ overflow-x: hidden;
+ }
+
+ .main-header {
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(42, 27, 61, 0.95);
+ backdrop-filter: blur(10px);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ }
+
+ .logo {
+ color: var(--text-light);
+ font-size: 1.5rem;
+ font-weight: bold;
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--text-light);
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ .toggle-nav {
+ display: none;
+ background: none;
+ border: none;
+ color: var(--text-light);
+ font-size: 1.5rem;
+ cursor: pointer;
+ }
+
+ #hero {
+ height: 100vh;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ color: var(--text-light);
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeInUp 1s ease-out;
+ }
+
+ .hero-content p {
+ font-size: 1.5rem;
+ animation: fadeInUp 1s ease-out 0.3s backwards;
+ }
+
+ .teaser-section {
+ padding: 5rem 0;
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ }
+
+ #novel {
+ background: linear-gradient(45deg, #1a1a1a, #2a1b3d);
+ color: var(--text-light);
+ }
+
+ #game {
+ background: linear-gradient(45deg, #44318d, #2a1b3d);
+ color: var(--text-light);
+ }
+
+ .content-wrapper {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .teaser-content {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 4rem;
+ align-items: center;
+ }
+
+ .teaser-image {
+ height: 400px;
+ border-radius: 10px;
+ background-size: cover;
+ background-position: center;
+ box-shadow: 0 10px 30px rgba(0,0,0,0.3);
+ transition: var(--transition);
+ }
+
+ .teaser-image:hover {
+ transform: scale(1.02);
+ }
+
+ .novel-image {
+ background-image: url('data:image/svg+xml,');
+ }
+
+ .game-image {
+ background-image: url('data:image/svg+xml,');
+ }
+
+ .tagline {
+ font-size: 1.5rem;
+ font-style: italic;
+ margin-bottom: 1rem;
+ color: var(--accent-color);
+ }
+
+ .feature-list {
+ display: flex;
+ gap: 1rem;
+ margin: 2rem 0;
+ }
+
+ .feature-list span {
+ padding: 0.5rem 1rem;
+ background: rgba(255,255,255,0.1);
+ border-radius: 20px;
+ font-size: 0.9rem;
+ }
+
+ .notify-btn {
+ padding: 1rem 2rem;
+ border: none;
+ border-radius: 25px;
+ background: var(--accent-color);
+ color: var(--text-dark);
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .notify-btn:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(0,0,0,0.3);
+ }
+
+ .modal {
+ display: none;
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: rgba(0,0,0,0.8);
+ z-index: 1001;
+ }
+
+ .modal-content {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ background: var(--primary-color);
+ padding: 2rem;
+ border-radius: 10px;
+ color: var(--text-light);
+ width: 90%;
+ max-width: 400px;
+ }
+
+ .close-modal {
+ position: absolute;
+ right: 1rem;
+ top: 1rem;
+ cursor: pointer;
+ }
+
+ #notify-form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ margin-top: 1rem;
+ }
+
+ #notify-form input {
+ padding: 0.8rem;
+ border: none;
+ border-radius: 5px;
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: var(--text-light);
+ padding: 2rem 0;
+ text-align: center;
+ }
+
+ .social-links {
+ margin-top: 1rem;
+ }
+
+ .social-links a {
+ color: var(--text-light);
+ text-decoration: none;
+ margin: 0 0.5rem;
+ font-size: 1.2rem;
+ }
+
+ @keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ @media (max-width: 768px) {
+ .toggle-nav {
+ display: block;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background: var(--primary-color);
+ flex-direction: column;
+ padding: 1rem 0;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .teaser-content {
+ grid-template-columns: 1fr;
+ gap: 2rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ }
+ }