/* SYSTEM ARCHITECTURE & CYBER COLORS */
:root {
    --bg-universe: #0c051a; /* Pitch Deep Violet */
    --panel-neon: rgba(22, 11, 41, 0.75);
    --cyan-glow: #00e5ff;
    --magenta-glow: #d500f9;
    --text-white: #f1f5f9;
    --text-dark-gray: #94a3b8;
    --font-cyber: 'Orbitron', sans-serif;
    --font-data: 'Rajdhani', sans-serif;
    --border-neon: rgba(0, 229, 255, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-data);
    background-color: var(--bg-universe);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }

/* STARFIELD BACKGROUND LAYERS */
.space-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 50% 20%, #1a0933 0%, #06020d 100%);
}

/* CYBERNAVBAR GLASS PANEL */
.cyber-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(12, 5, 26, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-neon);
    padding: 15px 0;
}

.nav-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--cyan-glow));
}

.links-wrapper ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.links-wrapper ul li a {
    font-family: var(--font-cyber);
    color: var(--text-white);
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
}

.links-wrapper ul li a:hover {
    color: var(--cyan-glow);
    text-shadow: 0 0 10px var(--cyan-glow);
}

.action-wrapper {
    display: flex;
    gap: 15px;
}

/* BUTTON SYSTEMS */
.btn-cyber {
    font-family: var(--font-cyber);
    font-size: 12px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 4px;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--magenta-glow);
    color: var(--magenta-glow);
    box-shadow: 0 0 15px rgba(213, 0, 249, 0.4);
}

.btn-glow {
    background: var(--cyan-glow);
    color: #000;
    border: 1px solid var(--cyan-glow);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.btn-glow:hover {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

.btn-action-main {
    display: inline-block;
    font-family: var(--font-cyber);
    font-size: 16px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--magenta-glow), #ff007f);
    color: #fff;
    padding: 18px 40px;
    border-radius: 4px;
    letter-spacing: 1.5px;
    position: relative;
    box-shadow: 0 0 30px rgba(213, 0, 249, 0.5);
}

.btn-action-main:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(213, 0, 249, 0.8);
}

.btn-wide {
    width: 100%;
    max-width: 400px;
    padding: 16px 0;
    font-size: 15px;
}

/* HERO EXPEDITION BLOCK */
.hero-section {
    padding: 150px 0 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.cyber-badge {
    display: inline-block;
    font-family: var(--font-cyber);
    font-size: 11px;
    color: var(--cyan-glow);
    border: 1px solid var(--cyan-glow);
    padding: 5px 15px;
    border-radius: 2px;
    letter-spacing: 2px;
    background: rgba(0, 229, 255, 0.05);
    margin-bottom: 25px;
}

.hero-headline {
    font-family: var(--font-cyber);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.hero-headline span {
    color: transparent;
    -webkit-text-stroke: 1px var(--cyan-glow);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.hero-subtext {
    font-size: 18px;
    color: var(--text-dark-gray);
    margin-bottom: 40px;
    font-weight: 500;
}

.live-stats-bar {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px;
}

.stat-node {
    font-family: var(--font-cyber);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-white);
}

.neon-cyan { color: var(--cyan-glow); font-weight: bold; }
.neon-magenta { color: var(--magenta-glow); font-weight: bold; }

/* MAIN BANNER CONTAINER FRAME */
.cyber-frame {
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    background: #000;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.main-banner-img {
    width: 100%;
    display: block;
    height: auto;
    border-radius: 4px;
    opacity: 0.9;
}

.frame-glitch-text {
    position: absolute;
    bottom: 20px; right: 20px;
    background: #000;
    color: var(--cyan-glow);
    font-family: var(--font-cyber);
    font-size: 11px;
    padding: 4px 10px;
    letter-spacing: 1px;
    border-left: 2px solid var(--cyan-glow);
}

/* MARQUEE TICKER METRICS */
.cyber-ticker-wrap {
    background: #110724;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    font-family: var(--font-cyber);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--cyan-glow);
    animation: slide-left 30s linear infinite;
}

@keyframes slide-left {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ARTICLE CONTENT SYSTEM */
.article-section {
    padding: 80px 0;
}

.matrix-panel {
    background: var(--panel-neon);
    border: 1px solid var(--border-neon);
    box-shadow: 0 15px 45px rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 60px;
}

.article-title {
    font-family: var(--font-cyber);
    font-size: 28px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.neon-line {
    width: 100px; height: 3px;
    background: linear-gradient(90deg, var(--cyan-glow), var(--magenta-glow));
    margin: 0 auto 40px auto;
}

.main-article p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 25px;
    text-align: justify;
    font-weight: 500;
}

.lead-paragraph {
    font-size: 19px !important;
    color: #ffffff !important;
    line-height: 1.7;
}

.main-article h3 {
    font-family: var(--font-cyber);
    font-size: 22px;
    color: #ffffff;
    margin: 45px 0 25px 0;
    border-left: 3px solid var(--cyan-glow);
    padding-left: 15px;
}

/* CARDS MATRIX STRUCTURE */
.cyber-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.node-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.node-card:hover {
    background: rgba(0, 229, 255, 0.03);
    border-color: var(--cyan-glow);
    transform: translateY(-5px);
}

.node-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.node-card h4 {
    font-family: var(--font-cyber);
    font-size: 16px;
    margin-bottom: 12px;
    color: #fff;
}

.node-card p {
    font-size: 14px;
    color: var(--text-dark-gray);
    margin-bottom: 0;
    text-align: left;
}

.embedded-cta {
    background: linear-gradient(135deg, #17092c 0%, #080312 100%);
    border: 1px dashed var(--magenta-glow);
    border-radius: 6px;
    padding: 40px;
    margin-top: 50px;
}

.embedded-cta h3 {
    border: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
    text-align: center;
}

.embedded-cta p {
    text-align: center;
    color: var(--text-dark-gray);
    margin-bottom: 25px;
}

/* TERMINAL FOOTER LOGIC */
.cyber-footer {
    background: #06020c;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 70px 0 30px 0;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand-logo {
    height: 40px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-brand-section p {
    font-size: 14px;
    color: var(--text-dark-gray);
    max-width: 320px;
}

.footer-layout h4 {
    font-family: var(--font-cyber);
    font-size: 14px;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 25px;
}

.footer-links-section ul {
    list-style: none;
}

.footer-links-section ul li {
    margin-bottom: 12px;
}

.footer-links-section ul li a {
    font-size: 14px;
    color: var(--text-dark-gray);
}

.footer-links-section ul li a:hover {
    color: var(--cyan-glow);
}

.footer-compliance-section p {
    font-size: 13px;
    color: var(--text-dark-gray);
    margin-bottom: 20px;
}

.seo-foot-pills span {
    display: inline-block;
    background: rgba(0, 229, 255, 0.08);
    color: var(--cyan-glow);
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-family: var(--font-cyber);
}

.footer-credits {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px;
    font-size: 13px;
    color: #475569;
}

/* RESPONSIVE ADAPTABILITY MATRIX */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-cta-zone, .live-stats-bar {
        justify-content: center;
    }
    .cyber-grid-cards, .footer-layout {
        grid-template-columns: 1fr;
    }
    .footer-brand-section p {
        max-width: 100%;
    }
    .matrix-panel {
        padding: 40px 24px;
    }
}

@media (max-width: 768px) {
    .links-wrapper, .action-wrapper {
        display: none; /* Optimized layout for fluid smartphone speed */
    }
    .hero-headline {
        font-size: 32px;
    }
    .article-title {
        font-size: 22px;
    }
}