/* Factions Overview Page - Unique Styles Only */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; background: #0a0a0f; color: #e4e4e7; line-height: 1.6; }

/* Header */
header { background: #14141a; border-bottom: 1px solid #27272a; position: sticky; top: 0; z-index: 1000; }
.header-container { max-width: 1600px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 64px; }
.header-disclaimer { background: rgba(192, 254, 4, 0.08); border-bottom: 1px solid rgba(192, 254, 4, 0.15); padding: 10px 24px; text-align: center; }
.header-disclaimer p { font-size: 13px; color: #e4e4e7; margin: 0; }
.logo { font-size: 24px; font-weight: 800; background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-decoration: none; margin-right: 48px; }
.nav-links { display: flex; gap: 32px; align-items: center; flex: 1; }
.nav-link { color: #a1a1aa; text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.2s; }
.nav-link:hover { color: #e4e4e7; }
.nav-link.active { color: #c0fe04; }

/* Layout */
.layout { display: flex; max-width: 1600px; margin: 0 auto; min-height: calc(100vh - 64px); }

/* Main Content */
.main-content { flex: 1; padding: 40px 48px; max-width: 1200px; }

/* Page Header */
.page-header { margin-bottom: 48px; }
.page-title { font-size: 48px; font-weight: 900; color: #e4e4e7; margin-bottom: 16px; }
.page-description { font-size: 18px; color: #a1a1aa; line-height: 1.7; max-width: 800px; }

/* Factions Grid */
.factions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 64px; }
.faction-card { background: #14141a; border: 1px solid #27272a; border-radius: 12px; overflow: hidden; transition: all 0.3s ease; text-decoration: none; display: block; }
.faction-card:hover { border-color: #c0fe04; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(192, 254, 4, 0.1); }
.faction-header { padding: 32px; background: linear-gradient(135deg, #27272a 0%, #18181b 100%); border-bottom: 1px solid #27272a; }
.faction-name { font-size: 32px; font-weight: 800; color: #e4e4e7; margin-bottom: 8px; }
.faction-representative { font-size: 14px; color: #a1a1aa; font-weight: 600; }
.faction-representative span { color: #c0fe04; }
.faction-content { padding: 32px; }
.faction-description { font-size: 15px; color: #a1a1aa; line-height: 1.7; margin-bottom: 24px; }
.faction-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faction-feature { display: flex; align-items: center; gap: 12px; padding: 12px; background: rgba(192, 254, 4, 0.05); border: 1px solid rgba(192, 254, 4, 0.1); border-radius: 8px; }
.feature-icon { font-size: 24px; flex-shrink: 0; }
.feature-text { font-size: 13px; color: #a1a1aa; font-weight: 600; }

/* Info Section */
.info-section { background: #14141a; border: 1px solid #27272a; border-radius: 12px; padding: 32px; margin-bottom: 48px; }
.info-title { font-size: 24px; font-weight: 800; color: #e4e4e7; margin-bottom: 16px; }
.info-text { font-size: 15px; color: #a1a1aa; line-height: 1.7; margin-bottom: 12px; }
.info-list { list-style: none; margin-top: 16px; }
.info-list li { padding: 12px 0; border-bottom: 1px solid #27272a; color: #a1a1aa; font-size: 15px; }
.info-list li:last-child { border-bottom: none; }
.info-list strong { color: #c0fe04; font-weight: 700; }

/* Footer */
footer { background: #14141a; border-top: 1px solid #27272a; padding: 40px 48px; margin-top: 80px; }
.footer-content { text-align: center; color: #71717a; font-size: 14px; }
.footer-content a { color: #a1a1aa; text-decoration: none; }
.footer-content a:hover { color: #c0fe04; }

/* Mobile */
@media (max-width: 1024px) {
    .main-content { padding: 24px; }
    .factions-grid { grid-template-columns: 1fr; }
    .faction-features { grid-template-columns: 1fr; }
}
