/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: linear-gradient(to bottom, #1e2d1e, #0f1a0f);
  color: #e8f5e9;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  z-index: 1000;
  transition: background 0.3s;
}

header h1 {
  color: #a5d6a7;
}

nav a {
  color: #e8f5e9;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s;
}

nav a:hover {
  color: #81c784;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: radial-gradient(circle at center, rgba(76,175,80,0.15), transparent 70%);
  position: relative;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero p {
  max-width: 600px;
  opacity: 0.85;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn {
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  background: #66bb6a;
  color: #0f1a0f;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: #81c784;
  transform: translateY(-3px);
}

/* Notification */
.notification {
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 20px;
  background: #2e7d32;
  color: #c8e6c9;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  position: absolute;
  top: 80%;
}

/* Servers Section */
.servers {
  padding: 120px 40px;
  text-align: center;
}

.servers h2 {
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: #a5d6a7;
}

.server-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s, background 0.3s;
  backdrop-filter: blur(5px);
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(0,0,0,0.6);
}

.card h3 {
  margin-bottom: 15px;
  color: #a5d6a7;
}

.card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* Status Badges */
.status {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
}

.active { background: #2e7d32; color: #c8e6c9; }
.inactive { background: #5d4037; color: #efebe9; }
.inactive-card { opacity: 0.6; }

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: #0b140b;
  margin-top: 40px;
  opacity: 0.8;
}

/* Falling Leaves */
.leaf {
  position: fixed;
  top: -50px;
  font-size: 20px;
  animation: fall linear infinite;
  opacity: 0.8;
}

@keyframes fall {
  to { transform: translateY(110vh) rotate(360deg); }
}

/* Responsive */
@media(max-width:768px){
  .hero h2 { font-size: 2.2rem; }
  .servers { padding: 100px 20px; }
}
