* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 27px;
    font-family: 'Verdana';
    background: #000;
    overflow-x: hidden;
    position: relative;
    color: white;
}

header {
  text-align: center;
  margin-bottom: 32px;
}

h1,
header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

header p {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0;
}

#dynamicCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.container {
  max-width: 900px;
  margin: 48px auto 0 auto;
  padding: 32px 20px 40px 20px;
  /* background: rgb(13, 39, 124); */
  background: rgba(13, 39, 124, 0.7);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
h1 {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.brand-name {
  background: linear-gradient(90deg, #f59e0b, #10b981 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Georgia, serif;
  font-weight: bold;
}


.glossary-card {
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.7);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(16,24,40,0.09);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: auto;
  border: 1.5px solid rgba(100, 116, 139, 0.28);
  transition: box-shadow 0.18s, background 0.18s;
  margin: 20px;
}

.glossary-card:hover {
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.13);
}

.icon-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.glossary-icon {
  font-size: 2.1rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.13);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.term-title {
  font-family:'Georgia';
  font-size: 1.18rem;
  font-weight: 700;
  color: #f59e0b;
}
.term-desc {
  color: #e5e7eb;
  font-size: 1.04rem;
  line-height: 1.7;
  margin-left: 20px;
  margin-top: -10px;
}

.section-list {
  padding: 0 0 0 18px;
  color: #e5e7eb;
  font-size: 1.06rem;
  line-height: 1.7;
}

headers .section-list {
    font-size: 1 rem;
}

.sections {
  padding-left: 20px;
}

.sections a {
    color: #f59e0b;
}

.section-list li, .split-list li {
  margin-bottom: 7px;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.split-card {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 16px;
  padding: 22px 20px;
  border: 1.5px solid rgba(100, 116, 139, 0.3);
  transition: all 0.2s;
}
.split-card:hover {
  background: rgba(15, 23, 42, 0.9);
}
.split-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f59e0b;
  margin-bottom: 12px;
  text-align: center;
  text-decoration: underline;
}
.split-list {
  margin: 0;
  padding: 0 0 0 18px;
  color: #e5e7eb;
  font-size: 1rem;
  line-height: 1.7;
}

.links {
  font-family: 'Georgia';
}

@media (max-width: 900px) {
    .split-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .glossary-grid {
    grid-template-columns: 1fr;
    gap: 22px;
}
.container {
    padding: 16px 6px 32px 6px;
}
}