:root {
    --primary-color: #ff4444;
    --primary-dark: #cc0000;
    --secondary-color: #ff6b35;
    --accent-color: #c1121f;
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --text-primary: #e5e7eb;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: #1f2937;
    --gradient-1: linear-gradient(135deg, #ff4444 0%, #c1121f 100%);
    --gradient-2: linear-gradient(135deg, #ff6b35 0%, #ff4444 100%);
    --shadow-glow: 0 0 20px rgba(255, 68, 68, 0.3);
    --shadow-glow-strong: 0 0 40px rgba(255, 68, 68, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Remove default focus outline for mouse users, keep for keyboard */
*:focus:not(:focus-visible) {
    outline: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 5% 10%, white, transparent),
        radial-gradient(1px 1px at 8% 25%, white, transparent),
        radial-gradient(2px 2px at 12% 40%, white, transparent),
        radial-gradient(1px 1px at 15% 55%, white, transparent),
        radial-gradient(2px 2px at 18% 70%, white, transparent),
        radial-gradient(1px 1px at 22% 85%, white, transparent),
        radial-gradient(2px 2px at 25% 15%, white, transparent),
        radial-gradient(1px 1px at 28% 30%, white, transparent),
        radial-gradient(2px 2px at 32% 45%, white, transparent),
        radial-gradient(1px 1px at 35% 60%, white, transparent),
        radial-gradient(2px 2px at 38% 75%, white, transparent),
        radial-gradient(1px 1px at 42% 90%, white, transparent),
        radial-gradient(2px 2px at 45% 20%, white, transparent),
        radial-gradient(1px 1px at 48% 35%, white, transparent),
        radial-gradient(2px 2px at 52% 50%, white, transparent),
        radial-gradient(1px 1px at 55% 65%, white, transparent),
        radial-gradient(2px 2px at 58% 80%, white, transparent),
        radial-gradient(1px 1px at 62% 5%, white, transparent),
        radial-gradient(2px 2px at 65% 25%, white, transparent),
        radial-gradient(1px 1px at 68% 40%, white, transparent),
        radial-gradient(2px 2px at 72% 55%, white, transparent),
        radial-gradient(1px 1px at 75% 70%, white, transparent),
        radial-gradient(2px 2px at 78% 85%, white, transparent),
        radial-gradient(1px 1px at 82% 10%, white, transparent),
        radial-gradient(2px 2px at 85% 30%, white, transparent),
        radial-gradient(1px 1px at 88% 45%, white, transparent),
        radial-gradient(2px 2px at 92% 60%, white, transparent),
        radial-gradient(1px 1px at 95% 75%, white, transparent),
        radial-gradient(2px 2px at 3% 50%, white, transparent),
        radial-gradient(1px 1px at 7% 65%, white, transparent),
        radial-gradient(2px 2px at 11% 80%, white, transparent),
        radial-gradient(1px 1px at 14% 95%, white, transparent),
        radial-gradient(2px 2px at 17% 5%, white, transparent),
        radial-gradient(1px 1px at 21% 20%, white, transparent),
        radial-gradient(2px 2px at 24% 35%, white, transparent),
        radial-gradient(1px 1px at 27% 50%, white, transparent),
        radial-gradient(2px 2px at 31% 65%, white, transparent),
        radial-gradient(1px 1px at 34% 80%, white, transparent),
        radial-gradient(2px 2px at 37% 95%, white, transparent),
        radial-gradient(1px 1px at 41% 10%, white, transparent),
        radial-gradient(2px 2px at 44% 25%, white, transparent),
        radial-gradient(1px 1px at 47% 40%, white, transparent),
        radial-gradient(2px 2px at 51% 55%, white, transparent),
        radial-gradient(1px 1px at 54% 70%, white, transparent),
        radial-gradient(2px 2px at 57% 85%, white, transparent),
        radial-gradient(1px 1px at 61% 15%, white, transparent),
        radial-gradient(2px 2px at 64% 30%, white, transparent),
        radial-gradient(1px 1px at 67% 45%, white, transparent),
        radial-gradient(2px 2px at 71% 60%, white, transparent),
        radial-gradient(1px 1px at 74% 75%, white, transparent),
        radial-gradient(2px 2px at 77% 90%, white, transparent),
        radial-gradient(1px 1px at 81% 5%, white, transparent),
        radial-gradient(2px 2px at 84% 20%, white, transparent),
        radial-gradient(1px 1px at 87% 35%, white, transparent),
        radial-gradient(2px 2px at 91% 50%, white, transparent),
        radial-gradient(1px 1px at 94% 65%, white, transparent),
        radial-gradient(2px 2px at 97% 80%, white, transparent),
        radial-gradient(1px 1px at 2% 90%, white, transparent),
        radial-gradient(2px 2px at 6% 5%, white, transparent),
        radial-gradient(1px 1px at 9% 15%, white, transparent),
        radial-gradient(2px 2px at 13% 28%, white, transparent),
        radial-gradient(1px 1px at 16% 42%, white, transparent),
        radial-gradient(2px 2px at 19% 58%, white, transparent),
        radial-gradient(1px 1px at 23% 72%, white, transparent),
        radial-gradient(2px 2px at 26% 88%, white, transparent),
        radial-gradient(1px 1px at 29% 3%, white, transparent),
        radial-gradient(2px 2px at 33% 18%, white, transparent),
        radial-gradient(1px 1px at 36% 33%, white, transparent),
        radial-gradient(2px 2px at 39% 48%, white, transparent),
        radial-gradient(1px 1px at 43% 63%, white, transparent),
        radial-gradient(2px 2px at 46% 78%, white, transparent),
        radial-gradient(1px 1px at 49% 93%, white, transparent),
        radial-gradient(2px 2px at 53% 8%, white, transparent),
        radial-gradient(1px 1px at 56% 23%, white, transparent),
        radial-gradient(2px 2px at 59% 38%, white, transparent),
        radial-gradient(1px 1px at 63% 53%, white, transparent),
        radial-gradient(2px 2px at 66% 68%, white, transparent),
        radial-gradient(1px 1px at 69% 83%, white, transparent),
        radial-gradient(2px 2px at 73% 98%, white, transparent),
        radial-gradient(1px 1px at 76% 13%, white, transparent),
        radial-gradient(2px 2px at 79% 28%, white, transparent),
        radial-gradient(1px 1px at 83% 43%, white, transparent),
        radial-gradient(2px 2px at 86% 58%, white, transparent),
        radial-gradient(1px 1px at 89% 73%, white, transparent),
        radial-gradient(2px 2px at 93% 88%, white, transparent),
        radial-gradient(1px 1px at 96% 3%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 20s ease-in-out infinite;
    opacity: 1;
}

@keyframes twinkle {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, -50px); }
}

.nebula {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 60% at 30% 40%, rgba(193, 18, 31, 0.08) 0%, rgba(255, 68, 68, 0.04) 40%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 70% 60%, rgba(255, 68, 68, 0.06) 0%, rgba(193, 18, 31, 0.03) 50%, transparent 75%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 107, 53, 0.04) 0%, transparent 60%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-positioning {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-subhead {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gradient-1);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Divisions */
.divisions {
    background: var(--bg-darker);
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.division-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.division-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.division-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.division-card:hover::before {
    transform: scaleX(1);
}

.division-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.division-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.division-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.division-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Charter */
.charter {
    background: var(--bg-darker);
}

.charter-content {
    max-width: 900px;
    margin: 0 auto;
}

.charter-main {
    margin-bottom: 4rem;
}

.charter-main p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.charter-main strong {
    color: var(--primary-color);
    font-weight: 600;
}

.founders-message {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    margin-top: 3rem;
    position: relative;
}

.founders-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
}

.founders-message h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.founder-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.founder-signature {
    margin-top: 2rem;
    color: var(--primary-color) !important;
    font-style: italic;
    font-weight: 500;
}

/* Leadership */
.leadership {
    background: var(--bg-dark);
    padding: 6rem 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.leader-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.leader-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.leader-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    background: var(--bg-darker);
    position: relative;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.leader-name {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.leader-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.leader-details {
    flex-grow: 1;
}

.leader-role {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.leader-role strong {
    color: var(--primary-color);
}

.leader-bio {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.leader-focus {
    color: var(--text-secondary);
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    line-height: 1.7;
}

.leader-focus strong {
    color: var(--primary-color);
}

/* Knowledge Base */
.knowledge {
    background: var(--bg-darker);
}

.knowledge-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
}

.knowledge-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.knowledge-placeholder p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Hero (for operations page) */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    background: var(--bg-darker);
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.page-hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
}

/* Operations Content */
.operations-content {
    padding: 4rem 0;
}

.operations-section {
    margin-bottom: 5rem;
}

.operations-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.operations-section > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    max-width: 900px;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.structure-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.structure-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.structure-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.philosophy-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item {
    display: flex;
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.philosophy-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.philosophy-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.philosophy-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.excellence-grid,
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.excellence-card,
.tech-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.excellence-card:hover,
.tech-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.excellence-card h3,
.tech-item h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.excellence-card p,
.tech-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.culture-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.culture-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.culture-item h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.culture-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.priorities-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.priority-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.priority-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.priority-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.priority-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.ticker {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.motto {
    font-style: italic;
    color: var(--text-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.membership-status {
    color: var(--secondary-color);
    font-weight: 600;
}

.status-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* News Section */
.news-list {
    padding: 4rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.news-card-thumbnail {
    width: 200px;
    min-width: 200px;
    height: 100%;
    min-height: 200px;
    overflow: hidden;
    background: var(--bg-darker);
    position: relative;
    flex-shrink: 0;
    align-self: stretch;
}

.news-card-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.news-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-thumbnail img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.news-card-date {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}

.news-card-region {
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 4px;
}

.news-card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.news-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title a:hover {
    color: var(--primary-color);
}

.news-card-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.news-card-author {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.news-card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.news-card-link:hover {
    gap: 0.75rem;
}

.news-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

/* News Post Page */
.news-post {
    min-height: 100vh;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.news-meta span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.news-date {
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}

.news-author {
    color: var(--text-secondary);
}

.news-region {
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 4px;
}

.news-content {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.news-body {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.news-body h2,
.news-body h3,
.news-body h4 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.news-body h2 {
    font-size: 2rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.news-body h3 {
    font-size: 1.5rem;
}

.news-body h4 {
    font-size: 1.25rem;
}

.news-body p {
    margin-bottom: 1.5rem;
}

.news-body ul,
.news-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.news-body li {
    margin-bottom: 0.5rem;
}

.news-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.news-body a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 68, 68, 0.3);
    transition: border-color 0.3s ease;
}

.news-body a:hover {
    border-bottom-color: var(--primary-color);
}

.news-body code {
    background: rgba(255, 68, 68, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--primary-color);
}

.news-body blockquote {
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-style: italic;
}

.news-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.news-body figure {
    margin: 2rem 0;
    text-align: center;
}

.news-body figure img {
    margin: 0 auto;
}

.news-body figcaption {
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.news-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.news-navigation {
    margin-top: 3rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .container {
        padding: 0 1.5rem;
    }

    .divisions-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        flex-direction: column;
        gap: 1rem;
    }

    .philosophy-number {
        font-size: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    .operations-section h2 {
        font-size: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        flex-direction: column;
    }

    .news-card-thumbnail {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }

    .news-body {
        padding: 2rem;
    }

    .leader-card {
        grid-template-columns: 1fr;
    }

    .leader-image {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem 3rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .division-card,
    .value-card,
    .structure-item {
        padding: 1.5rem;
    }
}


