body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #0f172a; /* Deep dark blue background */
  color: #f1f5f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  text-align: center;
}

/* 2. Content Container */
.card {
  background-color: #1e293b;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  max-width: 400px;
  width: 90%;
}

/* 3. Typography & Links */
h1 { margin-bottom: 0.5rem; color: #38bdf8; }
h3 { margin-top: 1.5rem; color: #94a3b8; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }

a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: #7dd3fc; text-decoration: underline; }

/* 4. Discord Button Style */
.discord-link {
  display: inline-block;
  background-color: #5865F2; /* Discord Brand Color */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 10px;
  text-decoration: none;
}
        
.discord-link:hover {
  background-color: #4752c4;
  text-decoration: none;
}

/* 5. List Styling */
ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

li {
  background: #334155;
  margin: 8px 0;
  padding: 10px;
  border-radius: 6px;
  transition: transform 0.2s;
}

li:hover { transform: translateY(-2px); background: #475569; }

/* 6. Footer */
footer { margin-top: 2rem; color: #64748b; font-size: 0.8rem; }

/* Project Grid Layout */
.project-grid {
  display: grid;
  grid-template-columns: 1fr; /* Stack on small screens */
  gap: 15px;
  margin-top: 20px;
}

/* Individual Project Cards */
.project-card {
  background: #334155;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-card h4 {
  margin: 0 0 10px 0;
  color: #38bdf8;
}

.project-card p {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 15px;
}

/* Base style for all badges */
.status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

/* Modifier: Active (Green) */
.status-active {
  background-color: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

/* Modifier: Inactive (Red/Grayish) */
.status-inactive {
  background-color: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

/* "View Project" Link styled as a small button */
.view-btn {
  font-size: 0.85rem;
  font-weight: bold;
  color: #38bdf8;
  text-decoration: none;
  border: 1px solid #38bdf8;
  padding: 5px 12px;
  border-radius: 4px;
  transition: 0.3s;
}

.view-btn:hover {
  background: #38bdf8;
  color: #0f172a;
  text-decoration: none;
}

/* For Desktop: Show cards side-by-side if there's room */
@media (min-width: 600px) {
  .card {
    max-width: 650px;
  }
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Section Styling */
.contact-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap; /* Wraps items on mobile */
}

.social-item {
  background: #334155;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #f1f5f9;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.social-item:hover {
  background: #38bdf8;
  color: #0f172a;
  transform: translateY(-3px);
  text-decoration: none;
}

.social-item span {
  margin-right: 5px;
}

/* Enhanced Footer Styling */
footer {
  margin-top: 40px;
  padding-bottom: 20px;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.8;
}

footer a {
  color: #94a3b8;
  font-weight: bold;
}
