Changed around line 1
+ :root {
+ --primary-color: #e60012;
+ --secondary-color: #ffd700;
+ --text-color: #333;
+ --background-color: #fff;
+ --accent-color: #1a1a1a;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: "Segoe UI", system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ overflow-x: hidden;
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ }
+
+ .logo {
+ font-size: 2.5rem;
+ color: var(--primary-color);
+ }
+
+ #main-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .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 Section */
+ #hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ background: linear-gradient(135deg, #fff1f1, #fff);
+ position: relative;
+ overflow: hidden;
+ }
+
+ .dragon-animation {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ opacity: 0.1;
+ }
+
+ h1 {
+ font-size: 4rem;
+ color: var(--primary-color);
+ text-align: center;
+ margin-bottom: 1rem;
+ z-index: 1;
+ }
+
+ .subtitle {
+ font-size: 1.5rem;
+ color: var(--accent-color);
+ z-index: 1;
+ }
+
+ /* Content Sections */
+ section {
+ padding: 5rem 2rem;
+ }
+
+ h2 {
+ font-size: 2.5rem;
+ color: var(--primary-color);
+ margin-bottom: 2rem;
+ text-align: center;
+ }
+
+ .content-wrapper {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ /* Symbol Grid */
+ .symbol-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .symbol-item {
+ text-align: center;
+ padding: 2rem;
+ background: #fff;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .symbol-item:hover {
+ transform: translateY(-5px);
+ }
+
+ /* Dragon Types */
+ .dragon-types {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .type-card {
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ transition: transform 0.3s ease;
+ }
+
+ .type-card:hover {
+ transform: scale(1.05);
+ }
+
+ /* Footer */
+ footer {
+ background: var(--accent-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .footer-nav {
+ margin-top: 1rem;
+ }
+
+ .footer-nav a {
+ color: white;
+ text-decoration: none;
+ margin: 0 1rem;
+ }
+
+ /* Mobile Responsiveness */
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: block;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background: white;
+ padding: 1rem;
+ }
+
+ .nav-links.active {
+ display: flex;
+ flex-direction: column;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .subtitle {
+ font-size: 1.2rem;
+ }
+ }