body {
  background: #ffa726;
  color: #fff;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  background: rgba(255,204,128,0.3);
  border-radius: 0;
  box-shadow: none;
  padding: 40px 5vw 24px 5vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 0.2em;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 #e65100;
}

.pyramid-img {
  width: 90%;
  max-width: 400px;
  margin: 24px 0 16px 0;
  border: 8px solid #e65100;
  border-radius: 16px;
  background: #fff3e0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.intro {
  font-size: 1.2em;
  margin-bottom: 24px;
  color: #e65100;
  font-weight: bold;
}

section {
  background: #ffe0b2;
  margin: 24px 0;
  padding: 18px 16px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(230,81,0,0.07);
  text-align: left;
}

section h2 {
  color: #e65100;
  margin-top: 0;
  font-size: 1.4em;
  text-shadow: 1px 1px 0 #fff3e0;
}

ul {
  padding-left: 20px;
  color: #bf360c;
  font-size: 1.1em;
}

li {
  margin-bottom: 8px;
}

footer {
  margin-top: 32px;
  font-size: 1em;
  color: #fff;
  text-shadow: 1px 1px 0 #e65100;
}

.disclaimer {
  font-size: 0.95em;
  color: #fffde7;
  margin-top: 12px;
  font-style: italic;
}

.bonkzi-corner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
}

.bonkzi-coder-img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
}

.speech-bubble {
  background: #fffde7;
  color: #e65100;
  border-radius: 18px;
  padding: 16px 18px;
  margin-left: 12px;
  margin-bottom: 60px;
  font-size: 1.05em;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  box-shadow: 0 2px 8px rgba(230,81,0,0.10);
  position: relative;
  max-width: 220px;
}
.speech-bubble:after {
  content: '';
  position: absolute;
  left: -18px;
  bottom: 18px;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 18px solid #fffde7;
}

@media (max-width: 600px) {
  .container {
    padding: 12px 1vw 8px 1vw;
  }
  h1 {
    font-size: 1.4em;
    margin-bottom: 0.4em;
  }
  .pyramid-img {
    max-width: 98vw;
    margin: 12px 0 10px 0;
    border-width: 4px;
  }
  section {
    padding: 10px 6px;
    margin: 12px 0;
    font-size: 0.98em;
  }
  section h2 {
    font-size: 1.1em;
  }
  ul {
    font-size: 1em;
    padding-left: 12px;
  }
  .bonkzi-corner {
    left: 6px;
    bottom: 6px;
  }
  .bonkzi-coder-img {
    height: 70px;
  }
  .speech-bubble {
    padding: 8px 10px;
    margin-left: 6px;
    margin-bottom: 30px;
    font-size: 0.95em;
    max-width: 120px;
  }
  footer {
    font-size: 0.9em;
    margin-top: 18px;
  }
  .disclaimer {
    font-size: 0.85em;
    margin-top: 8px;
  }
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}
.modal-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  background: #fff3e0;
}
.close {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 2.5em;
  font-weight: bold;
  cursor: pointer;
  z-index: 2100;
  text-shadow: 2px 2px 8px #e65100;
  transition: color 0.2s;
}
.close:hover {
  color: #ffa726;
} 