/* --- Reset and Base --- */
body {
  margin: 0;
  padding: 0;
  font-family: 'Verdana', 'Arial', sans-serif;
  color: #444;
  background: url('pastel-dots-bg.png') repeat-y center top #d7f3f6;
}

a {
  color: #ff69b4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #de5d83;
}

section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #fffafa;
  border-radius: 24px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  border: 2px dotted #ffddee;
}

/* --- Navigation Bar --- */
nav.pastel-nav {
  background: rgba(255, 255, 255, 0.9);
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 3px dashed #f8d4e2;
}

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

nav li {
  display: inline-block;
  margin: 0 12px;
}

nav a {
  font-weight: bold;
  font-size: 16px;
  padding: 6px 12px;
  background: #ffeaf5;
  border: 2px solid #ffb6c1;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
}

nav a:hover {
  background: #ffdee7;
  transform: scale(1.05);
}

/* --- Bubble Table Style --- */
.bubble-table {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.bubble {
  background: #fef0f5;
  border: 2px dashed #ffb6c1;
  border-radius: 18px;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  display: inline-block;
  transition: 0.2s;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.04);
}

.bubble span {
  font-weight: bold;
  color: #ff69b4;
  margin-right: 6px;
}

.bubble:hover {
  background: #ffe6f0;
  transform: scale(1.04);
}

/* --- Platform Section Titles --- */
.platform-section h3 {
  background: #ffeaf5;
  border-left: 6px solid #ffb6c1;
  padding: 6px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  color: #d94d8c;
}

/* --- Discord Section --- */
#discord a {
  display: inline-block;
  padding: 10px 14px;
  background: #e0f0ff;
  border: 2px solid #99caff;
  border-radius: 20px;
  font-weight: bold;
  color: #3366cc;
  transition: all 0.2s;
}

#discord a:hover {
  background: #d0e7ff;
  transform: scale(1.05);
}

/* --- Responsive (Optional) --- */
@media screen and (max-width: 600px) {
  nav li {
    display: block;
    margin: 8px 0;
  }

  .bubble-table {
    flex-direction: column;
  }

  .bubble {
    width: 100%;
  }
}
