
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  color: white;
}

nav {
  background: rgba(0, 0, 0, 0.7);
  padding: 1em;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: all 0.3s ease;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0 1em;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #aaffaa;
}

section {
  padding: 4em 2em;
  margin: auto;
  margin-bottom: 2em;
  border-radius: 12px;
  backdrop-filter: blur(2px);
  box-shadow: 0 0 20px rgba(0, 255, 150, 0.2);
}

#welcome, #contact {
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.5);
}

#prices, #tos {
  max-width: 1400px;
  background-color: rgba(0, 0, 0, 0.3);
}

h1, h2 {
  color: #aaffaa;
}

#welcome h1 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

#bg-fog {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -3;
  overflow: hidden;
}

.fog {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float 30s infinite alternate ease-in-out;
}

.fog1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 255, 150, 0.3);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.fog2 {
  width: 600px;
  height: 600px;
  background: rgba(0, 200, 100, 0.3);
  top: 40%;
  left: 50%;
  animation-delay: 5s;
}

.fog3 {
  width: 500px;
  height: 500px;
  background: rgba(0, 255, 200, 0.2);
  top: 70%;
  left: 20%;
  animation-delay: 10s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-100px, -100px) scale(1.2); }
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -2;
}

.price-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.price-box {
  border: 2px solid #aaffaa;
  padding: 25px;
  border-radius: 10px;
  width: 300px;
  margin: 10px;
  display: inline-block;
  vertical-align: top;
  transition: all 0.3s ease;
  background-color: transparent;
  box-shadow: 0 0 10px rgba(170, 255, 170, 0.3);
  text-align: center;
}

.price-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(170, 255, 170, 0.5);
}

.logo {
  font-size: 28px;
  margin-bottom: 10px;
}

.title {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  color: #aaffaa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0;
}

.description {
  text-align: left;
  margin: 10px 0;
}

.description p {
  margin: 5px 0;
}

.contact-btn {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #aaffaa;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #1a1a1a;
  text-decoration: none;
  margin-top: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.contact-btn:hover {
  background-color: #88ff88;
}

.nav-link {
  font-weight: bold;
  color: #aaffaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #88ff88;
}

/* Updated TOS section for wider, stacked, readable boxes */
.tos-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.tos-box {
  border: 2px solid #aaffaa;
  padding: 30px;
  border-radius: 10px;
  width: 900px;
  background-color: transparent;
  box-shadow: 0 0 10px rgba(170, 255, 170, 0.3);
  text-align: left;
}

.tos-title {
  font-size: 28px;
  font-weight: bold;
  color: #aaffaa;
  margin-bottom: 10px;
}

.tos-box p {
  font-size: 18px;
  margin: 10px 0;
  line-height: 1.6;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
.contact-links {
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
}

.contact-links p {
  margin: 20px 0;
  line-height: 1.6;
}

.contact-links a {
  color: #aaffaa;
  font-weight: bold;
  text-decoration: none;
}

.contact-links a:hover {
  color: #88ff88;
  text-decoration: underline;
}