/* 
    SMARTCORE TELECOM - THE INTELLIGENT NODE
    Theme: Signal / Energy / Core Intelligence
*/

:root {
    --bg-deep: #0B0118;
    --purple-glow: #7000FF;
    --magenta: #FF00E5;
    --cyan: #00F0FF;
    --white: #F0F0FF;
    --trans-glass: rgba(255, 255, 255, 0.03);
}

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

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--bg-deep);
    color: var(--white);
    overflow: hidden;
    height: 100vh;
}

.network-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, #1b0a33 0%, var(--bg-deep) 100%);
}

/* Background Effects */
.core-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(112, 0, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 1;
}

.energy-beams {
    position: absolute;
    top: 50%; left: 50%;
    width: 150%; height: 150%;
    background: conic-gradient(from 180deg at 50% 50%, transparent 0%, var(--purple-glow) 40%, transparent 50%, var(--magenta) 90%, transparent 100%);
    transform: translate(-50%, -50%);
    opacity: 0.05;
    animation: rotate-energy 30s infinite linear;
    z-index: 2;
}

@keyframes rotate-energy {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Central Content - Compact Floating Card */
.central-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 650px;
    padding: 50px 40px;
    background: rgba(11, 1, 24, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(112, 0, 255, 0.2);
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

header .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 10px;
}

.smart { color: var(--white); }
.core { color: var(--magenta); text-shadow: 0 0 15px var(--magenta); }

.sector {
    font-size: 0.8rem;
    letter-spacing: 8px;
    color: var(--cyan);
    margin-top: 5px;
    opacity: 0.8;
}

/* Core Node Visualization */
.core-node {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-center {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-deep);
    font-size: 1.2rem;
    box-shadow: 0 0 20px var(--white);
    z-index: 5;
}

.node-ring {
    position: absolute;
    border: 2px solid var(--purple-glow);
    border-radius: 50%;
}

.pulse-1 {
    width: 100%; height: 100%;
    animation: pulse 2s infinite ease-out;
}

.pulse-2 {
    width: 140%; height: 140%;
    animation: pulse 2s infinite ease-out 0.5s;
    opacity: 0.5;
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem; /* Scaled down */
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.glow {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

p {
    font-size: 1rem; /* Scaled down */
    color: rgba(240, 240, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.deployment-status {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 12px 30px;
    border-radius: 4px;
}

.status-msg {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--cyan);
}

.status-msg i { animation: blink 1s infinite; }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

footer {
    margin-top: 60px;
}

.service-tags {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--white);
    opacity: 0.5;
    font-weight: 700;
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.7rem;
    opacity: 0.3;
}

/* Animations */
.animate-zoom, .animate-fade {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-zoom { transform: scale(0.8); }

.visible {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    header .logo { font-size: 2rem; letter-spacing: 6px; }
    h1 { font-size: 1.8rem; }
    p { font-size: 0.9rem; }
    .deployment-status { padding: 12px 20px; }
}
