/* Fonts */
@font-face {
  font-family: 'MINECRAFT';
  src: url('fonts/Minecraft.ttf') format('truetype');
}

@font-face {
  font-family: 'DAYDREAM';
  src: url('fonts/Daydream.ttf') format('truetype');
}

/* General Layout */
body {
  margin: 0;
  font-family: 'MINECRAFT', sans-serif;
  background-image: url('images/sunrises.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: pixelated;
  color: white;
  padding-bottom: 100px;
  opacity: 0;
  animation: fadeInBody 1s ease forwards;
  animation-delay: 0.2s;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.support-container {
  text-align: center;
  padding: 60px 20px 30px;
  max-width: 900px;
  margin: auto;
}

h1 {
  font-family: 'DAYDREAM', sans-serif;
  font-size: 2.8rem;
  color: #ffddb0;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #eee;
}

/* Sections */
section {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  margin-bottom: 40px;
  border-left: 4px solid #ffddb0;
  border-radius: 12px;
  backdrop-filter: blur(3px);
  box-shadow: 0 0 12px rgba(255, 221, 176, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s ease forwards;
}

section.animate-rise.delay-2 {
  animation-delay: 0.5s;
}
section.animate-rise.delay-3 {
  animation-delay: 0.7s;
}
section.animate-rise.delay-4 {
  animation-delay: 0.9s;
}

section h2 {
  font-family: 'DAYDREAM', sans-serif;
  color: #ffe6c3;
  margin-bottom: 15px;
}

ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

ul li {
  padding-left: 20px;
  position: relative;
}

ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #ffddb0;
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 20px auto 0;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-family: 'MINECRAFT', sans-serif;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form button {
  padding: 12px;
  background: #ffddb0;
  color: #222;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'MINECRAFT', sans-serif;
}

.contact-form button:hover {
  background: #ffe6c3;
}

/* Bottom Nav Bar */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  height: 80px;
  z-index: 10;
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 1.1s;
}

.circle-group {
  display: flex;
  gap: 20px;
}

.circle {
  width: 45px;
  height: 45px;
  background: white;
  color: #222;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: 'DAYDREAM', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.circle.active,
.circle:hover {
  background: #ffddb0;
  transform: scale(1.1);
}

.nav-icon {
  font-size: 24px;
  background: #ffddb0;
  color: #222;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: background 0.2s;
}

.nav-icon:hover {
  background-color: #ffe6c3;
}

.help-wrapper {
  position: relative;
  margin-right: 50px;
}

.help-button {
  font-family: 'DAYDREAM', sans-serif;
  font-size: 24px;
  background: #ffccb3;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #222;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}

.help-button:hover {
  background-color: #ffe0d5;
}

.help-cloud {
  display: none;
  position: absolute;
  bottom: 60px;
  right: -10px;
  left: auto;
  background: #fff;
  color: #222;
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  width: 200px;
  text-align: center;
  z-index: 5;
}

.help-cloud::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 10px;
  border-width: 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

@media (max-width: 600px) {
  .help-wrapper {
    margin-right: 5px;
  }

  .help-cloud {
    width: 180px;
    font-size: 0.85rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInBody {
  to {
    opacity: 1;
  }
}
/* ... all your existing CSS ... */

/* --- Modal Styles --- */

/* The Button that triggers the modal */
.modal-trigger-btn {
  padding: 12px 20px;
  background: #ffddb0;
  color: #222;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: 'MINECRAFT', sans-serif;
  margin-top: 10px;
}

.modal-trigger-btn:hover {
  background: #ffe6c3;
  transform: scale(1.05);
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
  backdrop-filter: blur(5px); /* Nice blur effect to match your site */
  animation: fadeInBody 0.5s; /* Use existing fade animation */
}

/* Modal Content (the image) */
.modal-content {
  margin: 5% auto; /* 15% from the top and centered */
  display: block;
  max-width: 80%;
  max-height: 80%;
  animation: zoomIn 0.5s; /* Add zoom-in animation */
  border-radius: 12px;
}

/* The Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close-btn:hover,
.close-btn:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Add Animation */
@keyframes zoomIn {
  from {transform: scale(0)}
  to {transform: scale(1)}
}