/* ==========================
ROOT COLORS
========================== */

:root {
  --primary: #ff1f5a;
  --secondary: #ff6a88;
  --dark: #0b0b0f;
  --glass: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: radial-gradient(circle at top, #140012, #000);
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ==========================
GALAXY BACKGROUND
========================== */

body::before {
  content: "";
  position: fixed;
  width: 200%;
  height: 200%;
  background: radial-gradient(white 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.05;
  animation: moveStars 80s linear infinite;
  z-index: -1;
}

@keyframes moveStars {
  from { transform: translate(0,0); }
  to { transform: translate(-600px,-600px); }
}

/* ==========================
LAYOUT
========================== */

.centered {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 40px rgba(255,0,80,0.25);
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

h1, h2 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--primary);
  text-shadow: 0 0 12px rgba(255,31,90,0.6);
}

input, textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: white;
}

textarea {
  resize: none;
  height: 120px;
}

button {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255,31,90,0.6);
}

/* ==========================
TABLE
========================== */

table {
  width: 95%;
  margin: 40px auto;
  border-collapse: collapse;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
}

th, td {
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

th {
  background: rgba(255,31,90,0.15);
}

tr:hover {
  background: rgba(255,255,255,0.05);
}

/* ==========================
SLIDESHOW
========================== */

.slide {
  display: none;
  text-align: center;
  padding: 50px 20px;
  animation: fadeIn 1s ease;
}

.slide.active {
  display: block;
}

.slide img {
  width: 120px;
  margin: 10px;
  border-radius: 12px;
}
