@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

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

body {
  font-family: 'Cinzel', serif;
  color: #f0f0f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Fundo dark estilizado */
  background: radial-gradient(circle at top, #0b0c10 0%, #1f1f2e 60%, #000 100%);
  overflow-x: hidden;
}

/* Canvas de partículas */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* atrás de todo conteúdo */
  pointer-events: none; /* para não atrapalhar cliques */
}

/* Header */
header {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.8));
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

header h1 {
  font-size: 2.5rem;
  color: #a9d6ff;
  text-shadow: 0 0 10px #5ab9ff, 0 0 20px #1e90ff;
}

.subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-top: 0.5rem;
}

/* Seção de skins */
.skins, .tutorials {
  flex: 1;
  padding: 2rem;
}

.skins h2, .tutorials h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #a9d6ff;
  text-shadow: 0 0 10px #1e90ff;
}

/* Lista vertical */
.skins ul, .tutorials ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Cada link (card) */
.skin-card {
  display: block;
  text-align: center;
  padding: 1.2rem;
  border-radius: 15px;
  background: rgba(20, 20, 30, 0.85);
  color: #f0f0f0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border: 1px solid rgba(90, 185, 255, 0.4);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 8px rgba(90, 185, 255, 0.2);
}

.skin-card:hover {
  background: rgba(40, 40, 70, 0.9);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 20px rgba(90, 185, 255, 0.8), 0 0 40px rgba(30, 144, 255, 0.6);
  color: #a9d6ff;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #0b0b0b;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #777;
}