/* Main body */
body {
  font-family: 'Source Code Pro', monospace;
  background-color: #0d0d0d;
  color: #e6e6e6;
  margin: 0;
  padding: 0;
}

/* Header and footer */
header, footer {
  background-color: #111;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #00ff99;
}

header h1 {
  font-size: 2.2em;
  color: #00ff99;
}
/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px 0px;
}
.hero h2 {
  font-size: 2.5em;
  color: #00ff99;
}
.hero p {
  color: #ccc;
  font-size: 1.1em;
  margin: 10px 0 25px;
}
.cta-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #00ff99;
  color: #0d0d0d;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background-color: #33ffaa;
  box-shadow: 0 0 12px #00ff99aa;
}

/* Features */
.features {
  padding: 60px 20px;
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.feature-item {
  background: linear-gradient(145deg, #0d0d0d, #141414);
  padding: 20px 24px;
  border-radius: 8px;
  color: #e6e6e6;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.3s ease;
  box-shadow: 0 0 12px #00ff9955;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px #00ff99aa;
}

.feature-item i {
  font-size: 1.5em;
  color: #00ff99;
}

.features h3,
.values h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5em;
  color: #00ffe5;
  text-align: center;
  margin-bottom: 30px;
  text-transform: none;
  letter-spacing: 4px;
  text-shadow: 0 0 6px #00ffe5, 0 0 12px #00ffe544;
}

/* Values block */
.values blockquote {
  background: #0e0e0e;
  border: 1px solid #00fff2;
  padding: 20px 24px;
  border-radius: 10px;
  color: #ccefff;
  font-style: italic;
  font-size: 1em;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 12px #00fff288, 0 0 24px #00fff266;
  transition: 0.3s ease;
  max-width: 90%;
  margin: 20px auto;
}
.values blockquote:hover {
  box-shadow: 0 0 16px #00fff2aa, 0 0 32px #00fff288;
}

@keyframes slideGlow {
  0% { box-shadow: 0 0 12px #00ffff66; }
  50% { box-shadow: 0 0 18px #00ffffaa; }
  100% { box-shadow: 0 0 12px #00ffff66; }
}

/* Footer */
footer {
  font-size: 0.85em;
  border-top: 1px solid #111;
}

.hosting {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

.hosting h2 {
  font-size: 2em;
  color: #00ff99;
  text-align: center;
  margin-bottom: 20px;
}

.hosting p {
  text-align: center;
  color: #bbb;
  margin-bottom: 40px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.plan-card {
  background-color: #111;
  padding: 20px;
  border: 1px solid #333;
  border-left: 4px solid #00ff99;
  border-radius: 8px;
  text-align: center;
}

.plan-card h3 {
  color: #00ff99;
  margin-bottom: 10px;
}

.plan-card p {
  margin: 10px 0;
  color: #ccc;
}

.price {
  font-size: 1.3em;
  color: #00ff99;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

.notice {
  margin-top: 40px;
  background-color: #1a1a1a;
  padding: 20px;
  border-left: 4px solid #00ff99;
  border-radius: 6px;
  color: #ccc;
  font-size: 0.95em;
}

.notice a {
  color: #00ff99;
  text-decoration: underline;
}

.contact {
  padding: 50px 20px 100px;
  max-width: 700px;
  margin: auto;
}

.contact h2 {
  font-size: 1.8em;
  color: #00ff99;
  text-align: center;
}

.contact p {
  text-align: center;
  color: #ccc;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input, textarea {
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: #eee;
  padding: 12px;
  font-family: 'Source Code Pro', monospace;
  border-radius: 6px;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #00ff99;
}

button {
  background-color: #00ff99;
  color: #0d0d0d;
  padding: 12px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 1em;
}

button:hover {
  background-color: #33ffaa;
}

.success {
  color: #00ff99;
  margin-top: 20px;
  text-align: center;
}

.about {
  padding: 50px 20px 5px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.about h2 {
  font-size: 2em;
  color: #00ff99;
  margin-bottom: 20px;
}

.about .intro {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background-color: #111;
  border-left: 4px solid #00ff99;
  padding: 20px;
  border-radius: 6px;
  color: #ddd;
  text-align: left;
}

.card h3 {
  color: #00ff99;
  margin-bottom: 10px;
}

.card ul {
  padding-left: 20px;
}

.card li {
  margin-bottom: 6px;
  list-style: square;
}

.dash-btn {
  position: fixed;
  top: 16px;
  right: 20px;
  background: transparent;
  color: #00ff99;
  border: 2px solid #00ff99;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1000;
  animation: fadeInSlide 0.6s ease-out;
}

.dash-btn:hover {
  background: #00ff99;
  color: #0d0d0d;
  transform: scale(1.08);
  box-shadow: 0 0 12px #00ff99cc;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px auto;
}

.main-nav a {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #00ff99;
  border-radius: 6px;
  color: #00ff99;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.main-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00ff99;
  transition: all 0.3s ease;
  z-index: 0;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a span {
  position: relative;
  z-index: 2;
}

.main-nav a:hover span {
  color: #0d0d0d;
}

.header-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.site-name {
  font-family: 'Source Code Pro', monospace;
  font-size: 3em;
  font-weight: bold;
  color: #00ff99;
  text-shadow: 0 0 10px #00ff99, 0 0 18px #00ff99aa;
  animation: neonWave 5s ease-in-out infinite;
}

.site-name .dim {
  color: inherit;
}

.site-slogan {
  font-size: 1.1em;
  font-family: 'Fira Code', monospace;
  color: #ccf2ff;
  letter-spacing: 2px;
  text-shadow: 0 0 4px #00f7ff, 0 0 6px #00f7ff66;
  animation: glowCycle 6s ease-in-out infinite;
  margin-top: 8px;
}

@keyframes neonWave {
  0%, 100% {
    color: #00ff99;
    text-shadow: 0 0 10px #00ff99, 0 0 18px #00ff99aa;
  }
  25% {
    color: #1affd5;
    text-shadow: 0 0 10px #1affd5, 0 0 18px #1affd577;
  }
  50% {
    color: #00ffff;
    text-shadow: 0 0 12px #00ffff, 0 0 22px #00ffff88;
  }
  75% {
    color: #1affd5;
    text-shadow: 0 0 10px #1affd5, 0 0 18px #1affd577;
  }
}

@keyframes glowCycle {
  0% {
    text-shadow: 0 0 4px #00ffcc, 0 0 8px #00ffcc88;
    color: #ccf2ff;
  }
  33% {
    text-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ffaa;
    color: #b3faff;
  }
  66% {
    text-shadow: 0 0 6px #1affd5, 0 0 12px #1affd577;
    color: #d6ffff;
  }
  100% {
    text-shadow: 0 0 4px #00ffcc, 0 0 8px #00ffcc88;
    color: #ccf2ff;
  }
}

.logo {
  height: 160px;               /* Adjust size as needed */
  margin-right: 4px;          /* Push it slightly left */
  transform: translateY(0px); /* Align better with title */
  filter: drop-shadow(0 0 6px #00ff99);
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center; /* Aligns logo and title vertically */
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 80px;
  filter: drop-shadow(0 0 6px #00ff99);
}

.team-section, .join-section {
  text-align: center;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.team-section h2,
.join-section h2 {
  color: #00ff99;
  font-size: 2em;
  margin-bottom: 30px;
  text-shadow: 0 0 8px #00ffcc;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.team-card {
  background: linear-gradient(145deg, #0d0d0d, #111);
  border-left: 4px solid #00ff99;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px #00ff9944;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.team-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 25px #00ff99cc;
  border-color: #33ffaa;
}

.team-card h3 {
  color: #00ffcc;
  margin-bottom: 6px;
  font-size: 1.3em;
}

.team-card p {
  color: #ccc;
  margin-bottom: 6px;
  font-weight: bold;
}

.tagline {
  font-style: italic;
  font-size: 0.9em;
  color: #aaa;
}

.join-section p {
  color: #ccc;
  font-size: 1.05em;
  margin: 10px auto;
  max-width: 600px;
}

.join-section .cta-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #00ff99;
  color: #0d0d0d;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.join-section .cta-btn:hover {
  background-color: #33ffaa;
  box-shadow: 0 0 12px #00ff99aa;
}

.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  min-height: 80vh;
  text-align: center;
  background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%);
}

.soon-container h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #00ffcc;
  text-shadow: 0 0 10px #00ffcc;
  margin-bottom: 1rem;
}

.soon-container p {
  font-family: 'Fira Code', monospace;
  color: #aaa;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.soon-container .highlight {
  color: #ff0066;
  text-shadow: 0 0 5px #ff0066;
}

.terminal {
  background: #111;
  color: #0f0;
  font-family: 'Fira Code', monospace;
  text-align: left;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #0ff3;
  box-shadow: 0 0 10px #0ff3;
  max-width: 500px;
  margin: 0 auto;
}

.cmd-line {
  display: block;
  margin: 4px 0;
}

.blinking {
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}

.dashboard-logo {
  width: 240px; /* Adjust size */
  max-width: 90%;
  margin-bottom: 5px;
  animation: floatIn 2.5s ease-out, pulseGlow 3s infinite ease-in-out;
  filter: drop-shadow(0 0 6px #00f0ff);
  transition: transform 0.3s ease;
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 6px #00f0ff);
  }
  50% {
    filter: drop-shadow(0 0 12px #00ffff);
  }
}

@keyframes floatIn {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
