/* RESET AND BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #000000;
    color: #00ff00;
    overflow-x: hidden;
    position: relative;
}

/* MATRIX BACKGROUND */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 70%);
    animation: matrixPulse 8s ease-in-out infinite;
    z-index: -3;
}

@keyframes matrixPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* PARTICLES */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%2300ff00" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1" fill="%2300ffff" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="50" cy="80" r="1" fill="%23ff00ff" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="2.5s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* HOLOGRAM OVERLAY */
.hologram-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 0, 0.03) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(0, 255, 255, 0.03) 50%, transparent 100%);
    animation: hologramScan 4s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes hologramScan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* CONTAINER */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CYBER HEADER */
.cyber-header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #00ff00;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.cyber-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-container {
    position: relative;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    animation: logoGlow 2s ease-in-out infinite;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #00ffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -5px;
}

.logo-accent {
    position: absolute;
    top: 0;
    right: -10px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00ff00, #00ffff);
    animation: accentPulse 1.5s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 0, 0.8); }
    50% { text-shadow: 0 0 30px rgba(0, 255, 0, 1), 0 0 40px rgba(0, 255, 0, 0.5); }
}

@keyframes accentPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* CYBER NAV */
.cyber-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #00ffff;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transform: translateY(-2px);
}

.nav-link.active {
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    color: #00ff00;
}

.nav-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.nav-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* HERO COMMAND CENTER */
.hero-command {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #000000 0%, #001122 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.hero-command::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    animation: commandGlow 6s ease-in-out infinite;
}

@keyframes commandGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.command-center {
    position: relative;
    z-index: 2;
}

.mission-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: #00ff00;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.status-panel {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.status-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    animation: panelScan 3s ease-in-out infinite;
}

@keyframes panelScan {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.panel-header {
    font-size: 0.9rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.status-value {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ff00;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    animation: valueGlow 2s ease-in-out infinite;
}

@keyframes valueGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 0, 0.8); }
    50% { text-shadow: 0 0 30px rgba(0, 255, 0, 1), 0 0 40px rgba(0, 255, 0, 0.5); }
}

.status-label {
    font-size: 0.8rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.status-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 255, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.status-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #00ffff);
    border-radius: 2px;
    animation: barPulse 2s ease-in-out infinite;
}

@keyframes barPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* REVENUE HOLOGRAM */
.revenue-hologram {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000000 0%, #001122 50%, #000000 100%);
    position: relative;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

.hologram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.hologram-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hologram-card.subscription {
    border-color: #00ff00;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.hologram-card.affiliate {
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.hologram-card.tool {
    border-color: #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.hologram-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.card-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.revenue-display {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    margin-bottom: 0.5rem;
}

.revenue-period {
    font-size: 0.9rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 5px;
    border: 1px solid rgba(0, 255, 0, 0.1);
}

.breakdown-item span:first-child {
    color: #00ffff;
    font-size: 0.9rem;
}

.value {
    color: #00ff00;
    font-weight: 700;
    font-size: 1rem;
}

/* CALCULATOR TERMINAL */
.calculator-terminal {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000000 0%, #001122 50%, #000000 100%);
}

.terminal-window {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #00ff00;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.terminal-header {
    background: linear-gradient(90deg, #00ff00, #00ffff);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    font-weight: 700;
}

.terminal-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
}

.terminal-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
}

.terminal-content {
    padding: 2rem;
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-field label {
    font-size: 0.9rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cyber-input {
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff00;
    border-radius: 5px;
    color: #00ff00;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cyber-input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    background: rgba(0, 255, 0, 0.05);
}

.calculation-display {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
}

.calc-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.calc-result:last-child {
    border-bottom: none;
}

.calc-result.total {
    background: rgba(0, 255, 0, 0.1);
    margin: 0 -1.5rem -1.5rem;
    padding: 1.5rem;
    border-radius: 0 0 10px 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.calc-label {
    color: #00ffff;
    font-weight: 600;
}

.calc-value {
    color: #00ff00;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
}

/* NETWORK ANALYSIS */
.network-analysis {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000000 0%, #001122 50%, #000000 100%);
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.network-node {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.network-node:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.4);
}

.node-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.node-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.node-status {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.node-status.online {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.node-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.metric-label {
    font-size: 0.8rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ff00;
}

.product-analysis {
    margin-bottom: 1.5rem;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.product-item:last-child {
    border-bottom: none;
}

.product-name {
    color: #00ffff;
    font-size: 0.9rem;
}

.commission {
    color: #00ff00;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

.node-link {
    display: block;
    text-align: center;
    background: linear-gradient(45deg, #00ff00, #00ffff);
    color: #000000;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.node-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.3);
}

/* ANALYTICS DASHBOARD */
.analytics-dashboard {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000000 0%, #001122 50%, #000000 100%);
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.analytics-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.analytics-card.traffic {
    border-color: #00ff00;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.analytics-card.conversion {
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.analytics-card.revenue {
    border-color: #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.analytics-card.projections {
    border-color: #ffff00;
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.2);
}

.analytics-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.4);
}

.analytics-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.metric-row:hover {
    background: rgba(0, 255, 0, 0.1);
    transform: translateX(5px);
}

.metric-label {
    color: #00ffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.metric-value {
    color: #00ff00;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
}

/* MISSION PROJECTIONS */
.mission-projections {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000000 0%, #001122 50%, #000000 100%);
}

.projection-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    border-radius: 15px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.3);
}

.timeline-item.ultimate {
    border-color: #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.timeline-marker {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    min-width: 80px;
    text-align: center;
}

.timeline-item.ultimate .timeline-marker {
    color: #ff00ff;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff00;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-item.ultimate .timeline-title {
    color: #ff00ff;
}

.timeline-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.stat {
    font-size: 1rem;
    color: #00ffff;
    font-weight: 600;
    padding: 0.5rem;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 5px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    text-align: center;
}

/* CYBER FOOTER */
.cyber-footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 2px solid #00ff00;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

.footer-status {
    font-size: 0.9rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SYSTEM STATUS */
.system-status {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000000 0%, #001122 50%, #000000 100%);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.status-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.status-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.4);
}

.status-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.status-content {
    flex: 1;
}

.status-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ff00;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-details span {
    font-size: 0.9rem;
    color: #00ffff;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

/* PERFORMANCE METRICS */
.performance-metrics {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000000 0%, #001122 50%, #000000 100%);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.metric-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.4);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.metric-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-chart {
    position: relative;
    height: 120px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-bar {
    width: 60px;
    background: linear-gradient(180deg, #00ff00, #00ffff);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    animation: chartGrow 2s ease-out;
}

@keyframes chartGrow {
    0% { height: 0; }
    100% { height: var(--height); }
}

.chart-value {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #00ff00;
    font-size: 1.1rem;
}

.chart-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #00ffff;
    text-align: center;
    white-space: nowrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .mission-title {
        font-size: 2rem;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .hologram-grid {
        grid-template-columns: 1fr;
    }
    
    .network-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .status-card {
        flex-direction: column;
        text-align: center;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* FUTURE AFFILIATE PAGE STYLES */
.niche-categories {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-count {
    font-size: 1.2rem;
    color: #00ff00;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-potential {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

.niches-grid {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
}

.niches-container {
    margin-top: 3rem;
}

.niche-category-section {
    margin-bottom: 4rem;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.niche-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.niche-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.niche-item {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.niche-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00ff00, #00ffff, #00ff00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.niche-item:hover::before {
    transform: scaleX(1);
}

.niche-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
}

.niche-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.niche-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.niche-potential {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.niche-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.niche-aov {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.niche-products {
    font-size: 0.9rem;
    color: #cccccc;
    font-style: italic;
}

.niche-commission {
    font-size: 1rem;
    color: #00ff00;
    font-weight: 600;
}

.revenue-projections {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.projections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.projection-card {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.projection-card.ultimate {
    background: rgba(0, 255, 0, 0.2);
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.projection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.projection-card:hover::before {
    left: 100%;
}

.projection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.4);
}

.projection-header {
    margin-bottom: 1.5rem;
}

.projection-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.projection-value {
    font-size: 2rem;
    font-weight: 900;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.projection-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.projection-item {
    font-size: 1rem;
    color: #ffffff;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    border-left: 3px solid #00ff00;
}

.implementation-strategy {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.strategy-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00ff00, #00ffff, #00ff00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.strategy-card:hover::before {
    transform: scaleX(1);
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
}

.strategy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.strategy-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.strategy-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.strategy-item {
    font-size: 1rem;
    color: #ffffff;
    padding: 0.5rem;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 5px;
    border-left: 3px solid #00ff00;
    text-align: left;
}

/* RESPONSIVE DESIGN FOR FUTURE PAGE */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .niche-items {
        grid-template-columns: 1fr;
    }
    
    .projections-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .niche-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .niche-potential {
        font-size: 1rem;
        padding: 0.3rem 0.8rem;
    }
}

/* PROJECTS PAGE STYLES */
.project-categories {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.projects-grid {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.project-category-section {
    margin-bottom: 4rem;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.project-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.project-item {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00ff00, #00ffff, #00ff00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.project-item:hover::before {
    transform: scaleX(1);
}

.project-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.project-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project-description {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.project-features {
    font-size: 0.9rem;
    color: #cccccc;
    font-style: italic;
}

/* RESPONSIVE DESIGN FOR PROJECTS PAGE */
@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
    }
    
    .project-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .project-value {
        font-size: 1rem;
        padding: 0.3rem 0.8rem;
    }
}

/* COMPREHENSIVE MOBILE RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .nav-container {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .revenue-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .projection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 255, 0, 0.3);
    }

    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: rgba(0, 255, 0, 0.3);
        touch-action: manipulation;
    }
    
    .nav-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    }
    
    .nav-link:active {
        transform: scale(0.98);
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .overview-card {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-value {
        font-size: 2rem;
    }

    .revenue-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .revenue-card {
        padding: 1.5rem;
    }

    .revenue-title {
        font-size: 1.3rem;
    }

    .revenue-value {
        font-size: 2rem;
    }

    .projection-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .projection-card {
        padding: 1.5rem;
    }

    .projection-title {
        font-size: 1.3rem;
    }

    .projection-value {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .hologram-grid {
        grid-template-columns: 1fr;
    }
    
    .network-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .status-card {
        flex-direction: column;
        text-align: center;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0.8rem;
        gap: 0.6rem;
    }

    .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .nav-icon {
        font-size: 1.2rem;
    }
    
    .nav-text {
        font-size: 0.8rem;
    }

    .overview-card {
        padding: 1.2rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-value {
        font-size: 1.6rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }

    .revenue-card {
        padding: 1.2rem;
    }

    .revenue-title {
        font-size: 1.1rem;
    }

    .revenue-value {
        font-size: 1.6rem;
    }
    
    .revenue-description {
        font-size: 0.9rem;
    }

    .projection-card {
        padding: 1.2rem;
    }

    .projection-title {
        font-size: 1.1rem;
    }

    .projection-value {
        font-size: 1.6rem;
    }
    
    .projection-description {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-subtitle {
        font-size: 0.9rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .category-count {
        font-size: 1.8rem;
    }
    
    .project-item {
        padding: 1rem;
    }
    
    .project-name {
        font-size: 1rem;
    }
    
    .project-value {
        font-size: 1rem;
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .nav-link {
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .overview-card,
    .revenue-card,
    .projection-card {
        padding: 1rem;
    }
    
    .card-title,
    .revenue-title,
    .projection-title {
        font-size: 1rem;
    }
    
    .card-value,
    .revenue-value,
    .projection-value {
        font-size: 1.4rem;
    }
    
    .card-description,
    .revenue-description,
    .projection-description {
        font-size: 0.8rem;
    }
    
    .category-card {
        padding: 1.2rem;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .category-count {
        font-size: 1.6rem;
    }
    
    .project-item {
        padding: 0.8rem;
    }
    
    .project-name {
        font-size: 0.9rem;
    }
    
    .project-value {
        font-size: 0.9rem;
        padding: 0.2rem 0.6rem;
    }
}

/* MOBILE SCROLL IMPROVEMENTS */
@media (max-width: 768px) {
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    .container {
        scroll-behavior: smooth;
    }
}

/* MOBILE TEXT SELECTION */
@media (max-width: 768px) {
    .nav-link,
    .card-title,
    .card-value,
    .revenue-title,
    .revenue-value,
    .projection-title,
    .projection-value {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

/* CLICKABLE NICHE ITEMS */
.clickable-niche {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.clickable-niche:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 255, 0, 0.3);
    border-color: #00ff00;
}

.click-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.clickable-niche:hover .click-indicator {
    opacity: 1;
    transform: translateY(-2px);
}

/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #00ff00;
    border-radius: 15px;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(90deg, #00ff00, #00ffff);
    color: #000000;
    padding: 1.5rem 2rem;
    border-radius: 13px 13px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10001;
}

.modal-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: none;
}

.close {
    color: #000000;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    color: #ffffff;
}

/* STRATEGIC PLAN STYLES */
.strategic-plan {
    line-height: 1.6;
}

.plan-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 10px;
    border-left: 4px solid #00ff00;
}

.plan-section h3 {
    color: #00ff00;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.plan-section ul {
    list-style: none;
    padding: 0;
}

.plan-section li {
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.plan-section li:before {
    content: '▶';
    color: #00ff00;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.plan-section li:last-child {
    border-bottom: none;
}

.plan-section strong {
    color: #00ffff;
    font-weight: 700;
}

/* MODAL RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .plan-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .plan-section h3 {
        font-size: 1.1rem;
    }
    
    .close {
        font-size: 1.5rem;
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 5% auto;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 0.8rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .plan-section {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .plan-section h3 {
        font-size: 1rem;
    }
}