/* ===== RESET ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background: linear-gradient(to bottom, #efe6ff 0%, #7a3cff 100%);
  color: #3b1aa6;
}

/* ===== HEADER ===== */
header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.9),
    rgba(210,180,255,0.9)
  );
  border-bottom: 2px solid #6a2cff;
}

header img {
  width: 80px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(140, 80, 255, 0.6);
}

header h1 {
  margin: 0;
  font-size: 2.4em;
  color: #8a5cff;
  text-shadow: 0 1px 0 #fff;
}

header p {
  margin: 5px 0 0;
  color: #5b2bd6;
}

/* ===== NAV BAR ===== */
nav {
  background: linear-gradient(
    to bottom,
    #b68cff,
    #6a2cff
  );
  padding: 12px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

nav a {
  margin: 0 12px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

nav a:hover {
  text-decoration: underline;
}

/* ===== MAIN CONTAINER ===== */
.container {
  max-width: 900px;
  margin: 50px auto;
  padding: 35px;

  background: rgba(255,255,255,0.88);
  border-radius: 24px;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* ===== GLASS PANELS ===== */
.glass {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.85),
    rgba(220,200,255,0.85)
  );
  border-radius: 18px;
  padding: 25px;
  margin-bottom: 30px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 6px 16px rgba(0,0,0,0.15);
}

.glass h2 {
  margin-top: 0;
  color: #6a2cff;
}

/* ===== BUTTON / INTERACTIVE ===== */
.button {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;

  background: linear-gradient(
    to bottom,
    #ffffff,
    #b68cff
  );
  border: 1px solid #6a2cff;
  color: #3b1aa6;
  text-decoration: none;

  box-shadow:
    0 4px 10px rgba(0,0,0,0.25),
    inset 0 1px 0 #fff;
}

.button:hover {
  background: linear-gradient(
    to bottom,
    #ffffff,
    #d4baff
  );
}

/* ===== WEBRING AREAS ===== */
#Dragonverse,
#gfdkris,
#aero-ring {
  margin: 25px auto;
  text-align: center;
}

/* Aero ring override (kept compatible) */
#aero-ring {
  background: linear-gradient(to bottom, #2b2b2b, #000);
  border-radius: 12px;
  padding: 12px;
  max-width: 16rem;

  box-shadow:
    0 0 6px rgba(0,0,0,0.6),
    inset 0 2px 1px rgba(255,255,255,0.15);
}

#aero-ring a {
  color: white !important;
  text-decoration: none;
}

#aero-ring a:hover {
  color: #cfcfcf !important;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 25px;
  font-size: 0.9em;
  color: #3b1aa6;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}
