/* 
   Estilos base para portfolio oscuro minimalista 
*/

:root {
    --bg-color: #0f172a;
    --text-primary: #f8fafc; /* Blanco puro para máxima legibilidad */
    --text-secondary: #cbd5e1; /* Gris brillante para subtítulos */
    --accent-color: #4ade80; /* Cambiado a Verde Terminal globalmente */
    --border-terminal: 1px dashed var(--accent-color); /* Borde punteado verde */
    --glass-bg: rgba(15, 23, 42, 0.7); /* Vidrio oscuro en lugar de claro */
    --glass-border: rgba(74, 222, 128, 0.2); /* Reflejo verde */

    /* Colores inspirados en MoureDev */
    --color-green: #4ade80;
    --color-orange: #fb923c;
    --color-blue: #60a5fa;
    --color-red: #f87171;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu Mono', monospace; /* Cambiado de 'Inter' a 'Ubuntu Mono' globalmente */
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-family: 'Ubuntu Mono', monospace; /* Segura que los títulos también son mono */
}

.mono-text {
    font-family: 'Ubuntu Mono', monospace !important;
}

.hand-drawn-title {
    font-family: 'Ubuntu Mono', monospace !important;
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Contenedor del fondo animado permanente */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background-color: #0f172a; /* Fondo oscuro sólido detrás de la red */
}

#networkCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.25; /* Disminuimos el protagonismo de la red */
    filter: blur(2px); /* Difuminado sutil para que parezca estar al fondo */
}

/* --- Layout Principal --- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 210px;
    /* Reducido en 30% aprox */
    transition: all ease-in-out 0.5s;
    z-index: 9997;
    /* OPCIÓN 3: Verde Terminal Retro (Oscuro) */
    background: rgba(6, 24, 15, 0.85); /* Verde pantano casi negro transparente */
    border-right: 1px solid var(--color-green); /* Borde luminoso verde consola */
    box-shadow: 2px 0 15px rgba(74, 222, 128, 0.15); /* Resplandor lateral verde */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0 15px;
    overflow-y: auto;
}

#main {
    margin-left: 210px;
    position: relative;
    z-index: 10;
    pointer-events: none;
    /* Deja el click principal al canvas de fondo */
}

#main>* {
    pointer-events: auto;
    /* Elementos del DOM interactivos */
}

/* --- Perfil y Navbar --- */
.profile {
    padding-top: 30px;
}

.profile-img-wrapper {
    width: 170px;
    height: auto;
    margin: 0 auto;
    border: 3px solid var(--glass-border);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    background-color: var(--bg-color);
}

.profile-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.profile h1 {
    font-size: 24px;
    margin: 15px 0 0;
    padding: 0;
    font-weight: 600;
    text-align: center;
}

.profile h1 a {
    color: #fff;
    text-decoration: none;
}

/* --- Redes Sociales Flotantes --- */
.floating-socials {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--text-primary);
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.floating-socials a:hover {
    background: var(--accent-color);
    color: #fff; /* Blanco sobre verde */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
}

.nav-menu {
    padding-top: 30px;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin-bottom: 20px;
}

.nav-menu a {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.nav-menu a i {
    font-size: 24px;
    padding-right: 12px;
    color: #6f7180;
}

.nav-menu a:hover,
.nav-menu .active {
    color: #fff;
}

.nav-menu a:hover i,
.nav-menu .active i {
    color: var(--accent-color);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.greeting {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-family: 'Ubuntu Mono', monospace;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.typed-text {
    color: var(--text-primary);
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 35px;
    background-color: var(--accent-color);
    margin-left: 4px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-buttons {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-buttons a {
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero-primary {
    background: var(--accent-color);
    color: #fff;
    padding: 16px 36px;
    border-radius: 4px;
    /* Bordes ligeramente redondeados, estilo Lendex */
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-hero-primary:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

/* Play Button Animation (Lendex Style) */
.play-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-hero-play {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
}

.btn-hero-play i {
    margin-left: 4px;
    /* Centrado visual del ícono de play */
}

.btn-hero-play::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    animation: ripple 2s linear infinite;
    opacity: 0;
}

.btn-hero-play::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    animation: ripple 2s linear infinite;
    animation-delay: 1s;
    opacity: 0;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.btn-hero-play:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.play-text {
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}

/* --- Utils de Alineación --- */
.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.section-container {
    padding: 60px 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}

.section-title.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* --- Info Boxes (Tree View) --- */
.info-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.info-box-wrapper {
    display: flex;
    flex-direction: column;
}

.info-box {
    background: rgba(15, 23, 42, 0.6);
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    border: var(--border-terminal); /* Borde Punteado Verde Global */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box.border-green {
    border-color: var(--accent-color);
}

.color-white {
    color: #fff;
}

.color-accent {
    color: var(--accent-color);
}

.tree-view {
    font-family: 'Ubuntu Mono', monospace;
    text-align: left;
}

.tree-root {
    font-size: 1.25rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.tree-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.tree-list li {
    margin-bottom: 5px;
    white-space: nowrap; /* Prevent wrapping to break the tree structure */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Experience Section --- */
.experience-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.experience-card {
    display: flex;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.6);
    border: var(--border-terminal); /* Borde Punteado Verde Global */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .experience-card {
        flex-direction: row;
        align-items: stretch;
    }
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.exp-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .exp-image-wrapper {
        width: 40%;
        height: auto;
        min-height: 250px;
    }
}

.exp-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .exp-image-wrapper img {
    transform: scale(1.05); /* Zoom on hover */
}

.exp-content {
    padding: 30px;
    width: 100%;
}

@media (min-width: 768px) {
    .exp-content {
        width: 60%;
    }
}

.exp-title {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.exp-company {
    font-size: 1.15rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.exp-company span {
    color: #94a3b8;
    font-size: 0.9em;
}

.exp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.exp-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.exp-list li:last-child {
    margin-bottom: 0;
}

/* --- Skills --- */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.progress-item {
    margin-bottom: 25px;
}

.progress-item .skill {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.progress-item .skill .val {
    float: right;
    font-style: normal;
}

.progress-bar-wrap {
    background: rgba(15, 23, 42, 0.5); /* Fondo muy oscuro para el contenedor */
    height: 8px; /* Ligeramente más bajo para estilizar terminal */
    border-radius: 0; /* Sin bordes redondeados, estilo bloque */
    overflow: hidden;
    border: 1px solid #334155;
}

.progress-bar {
    height: 100%;
    background-color: transparent !important;
    border-bottom: 4px dashed var(--accent-color); /* Líneas punteadas verdes láser */
    transition: width 1.5s ease-in-out;
    width: 0;
}

/* --- Utils --- */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* --- Responsive --- */
@media (max-width: 1199px) {
    #header {
        left: -210px;
    }

    #main {
        margin-left: 0;
    }

    .hero {
        padding: 0 2rem;
    }

    .section-container {
        padding: 60px 20px;
    }

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

    .cursor {
        height: 25px;
    }
}

/* --- OVERRIDES Y NUEVOS COMPONENTES --- */

/* --- WhatsApp Flotante --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.whatsapp-float:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
}

/* --- Botón Contáctame Outline --- */
.btn-hero-outline {
    position: relative;
    background: transparent;
    color: var(--accent-color);
    padding: 14px 34px;
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-hero-outline:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-hero-outline::before,
.btn-hero-outline::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 30px;
    border: 2px solid var(--accent-color);
    animation: ripple-pill 2s linear infinite;
    opacity: 0;
    pointer-events: none;
}

.btn-hero-outline::after {
    animation-delay: 1s;
}

@keyframes ripple-pill {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scaleX(1.1) scaleY(1.35);
        opacity: 0;
    }
}

/* Corregir botón Play para modo claro */
.btn-hero-play {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.play-text {
    color: var(--text-primary);
}

.btn-hero-play::before,
.btn-hero-play::after {
    border-color: var(--accent-color);
}

/* --- Opciones de Skills (Solo Puntero Láser activo) --- */

/* Opción 6: Puntero Láser (Dot) */
.progress-bar-wrap-dot {
    background: transparent;
    height: 3px;
    border-radius: 1px;
    position: relative;
    margin-top: 15px;
    overflow: visible;
}

.progress-bar-wrap-dot .progress-bar {
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 1.5s ease;
    position: relative;
}

.progress-bar-wrap-dot .dot-head {
    content: '';
    position: absolute;
    right: -6px;
    top: -5px;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.7);
}



/* --- Formulario Opción 3: Terminal Hacker --- */
.contact-form-terminal {
    background: #0f172a;
    border-radius: 8px;
    overflow: hidden;
    color: #4ade80;
    font-family: 'Ubuntu Mono', monospace;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.term-header {
    background: #1e293b;
    padding: 10px 15px;
    font-size: 14px;
    color: #cbd5e1;
    border-bottom: 1px solid #334155;
    display: flex;
    align-items: center;
}

.term-header::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
    margin-right: 8px;
    box-shadow: 20px 0 0 #eab308, 40px 0 0 #22c55e;
}

.term-header span {
    margin-left: 60px;
}

.term-body {
    padding: 25px;
}

.term-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.term-group label {
    margin-bottom: 5px;
}

.term-input {
    background: transparent;
    border: none;
    border-bottom: 1px dashed #4ade80;
    color: #4ade80;
    font-family: inherit;
    font-size: 16px;
    padding: 5px 0;
    outline: none;
}

.term-input:focus {
    border-bottom: 1px solid #4ade80;
    background: rgba(74, 222, 128, 0.05);
}

.btn-term {
    background: transparent;
    color: #4ade80;
    border: none;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-term:hover {
    color: #22c55e;
    text-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.btn-submit-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-submit-premium:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}



/* --- Video Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid #334155;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--accent-color);
}

.terminal-video-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.terminal-video-wrapper .term-header {
    background: #1e293b;
    padding: 12px 15px;
    font-size: 14px;
    color: #cbd5e1;
    border-bottom: 1px solid #334155;
    display: flex;
    align-items: center;
    font-family: 'Ubuntu Mono', monospace;
}

.terminal-video-wrapper .term-header::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
    margin-right: 8px;
    box-shadow: 20px 0 0 #eab308, 40px 0 0 #22c55e;
}

.terminal-video-wrapper .term-header span {
    margin-left: 60px;
}

.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.demo-gif {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Glitch Terminal Effect --- */
.glitch-line {
    position: relative;
    color: var(--accent-color);
    font-family: 'Ubuntu Mono', monospace;
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(74, 222, 128, 0.4);
    margin-bottom: 5px;
    word-break: break-word;
}

.glitch-line.glitch {
    transform: translateX(2px) skewX(2deg);
    text-shadow: -2px 0 red, 2px 0 var(--color-blue);
    opacity: 0.8;
}

.glitch-line .cursor {
    height: 1.2rem;
    vertical-align: text-bottom;
}

/* --- Server Status Dashboard --- */
.status-dashboard {
    background: rgba(15, 23, 42, 0.7);
    border: var(--border-terminal);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.1);
    font-family: 'Ubuntu Mono', monospace;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.status-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 25px;
    border-bottom: 1px dashed rgba(74, 222, 128, 0.3);
    padding-bottom: 15px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-color);
}

.status-dot.blink {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0.3; }
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.status-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}

.status-card:hover {
    border-color: rgba(74, 222, 128, 0.5);
    background: rgba(0, 0, 0, 0.5);
}

.status-card i {
    font-size: 2.5rem;
    color: var(--text-primary); /* Blanco para que no se cargue de color */
}

.status-info {
    flex-grow: 1;
}

.status-info h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.status-val {
    display: inline-block;
    margin-top: 5px;
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: bold;
}

.net-stats {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(74, 222, 128, 0.3);
}

.service-badge {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 5px 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--accent-color);
}