/* Reset y variables globales */
:root {
  --bg-dark:       #101627;
  --bg-section:    #15203c;

  /* Colores principales */
  --color-bg:      #1D1D1D;
  --color-primary: #2272FF;
  --color-light:   #FFFFFF;
  --color-accent:  #e5533d;

  /* Alias para compatibilidad con tus estilos anteriores */
  --primary:       var(--color-primary);
  --light:         var(--color-light);

  /* Fuentes y pesos */
  --font-base:     'Lato', sans-serif;
  --heading-weight: 700;
  --body-weight:    400;

  /* Estilos glass */
  --glass-bg:      rgba(34,114,255,0.15);
  --glass-border:  rgba(34,114,255,0.3);
}

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

body {
  font-family: var(--font-base);
  background-color: var(--bg-dark);
  color: var(--color-light);
  overflow-x: hidden;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: var(--color-bg);
}

/* Tipografía base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-base);
  font-weight: var(--heading-weight);
}

p, a, li, div {
  font-family: var(--font-base);
  font-weight: var(--body-weight);
}

section {
  padding: 50px;
}

a {
  color: var(--color-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}
