Changed around line 1
+ :root {
+ --primary-color: #8b0000;
+ --secondary-color: #f4f4f4;
+ --text-color: #333;
+ --card-bg: #fff;
+ --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-color);
+ }
+
+ header {
+ background: var(--primary-color);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ box-shadow: 0 2px 5px rgba(0,0,0,0.2);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ color: white;
+ font-size: 1.5rem;
+ font-weight: bold;
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ .mobile-menu {
+ display: none;
+ }
+
+ main {
+ margin-top: 4rem;
+ padding: 2rem 5%;
+ }
+
+ .hero {
+ text-align: center;
+ padding: 4rem 0;
+ background: linear-gradient(rgba(139,0,0,0.9), rgba(139,0,0,0.7));
+ color: white;
+ margin: -2rem -5.5% 2rem;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .faction-section {
+ margin: 4rem 0;
+ }
+
+ h2 {
+ text-align: center;
+ margin-bottom: 2rem;
+ color: var(--primary-color);
+ }
+
+ .faction-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin: 2rem 0;
+ }
+
+ .faction-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: var(--transition);
+ }
+
+ .faction-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 6px 12px rgba(0,0,0,0.15);
+ }
+
+ .faction-card h3 {
+ color: var(--primary-color);
+ margin-bottom: 1rem;
+ }
+
+ .faction-card ul {
+ list-style-position: inside;
+ }
+
+ .timeline {
+ max-width: 800px;
+ margin: 0 auto;
+ position: relative;
+ }
+
+ .timeline::before {
+ content: '';
+ position: absolute;
+ width: 2px;
+ background: var(--primary-color);
+ top: 0;
+ bottom: 0;
+ left: 50%;
+ transform: translateX(-50%);
+ }
+
+ .timeline-item {
+ padding: 2rem 0;
+ position: relative;
+ width: 50%;
+ }
+
+ .timeline-item:nth-child(odd) {
+ left: 0;
+ padding-right: 2rem;
+ }
+
+ .timeline-item:nth-child(even) {
+ left: 50%;
+ padding-left: 2rem;
+ }
+
+ .timeline-item::before {
+ content: '';
+ position: absolute;
+ width: 20px;
+ height: 20px;
+ background: var(--primary-color);
+ border-radius: 50%;
+ top: 50%;
+ }
+
+ .timeline-item:nth-child(odd)::before {
+ right: -10px;
+ }
+
+ .timeline-item:nth-child(even)::before {
+ left: -10px;
+ }
+
+ footer {
+ background: var(--secondary-color);
+ padding: 2rem 5%;
+ text-align: center;
+ margin-top: 4rem;
+ }
+
+ footer nav {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-top: 1rem;
+ }
+
+ footer a {
+ color: var(--primary-color);
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .mobile-menu {
+ display: block;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .mobile-menu span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: white;
+ margin: 5px 0;
+ transition: var(--transition);
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: var(--primary-color);
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .timeline::before {
+ left: 0;
+ }
+
+ .timeline-item {
+ width: 100%;
+ padding-left: 2rem;
+ }
+
+ .timeline-item:nth-child(even) {
+ left: 0;
+ }
+
+ .timeline-item::before {
+ left: -10px;
+ }
+ }