.bodymain {
  margin: 0;
  font-family: "Segoe UI", "Roboto", sans-serif;
  background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
  color: #f0f0f0;
  line-height: 1.6;
}

header {
  background: linear-gradient(90deg, #1e1e1e, #2a2a2a);
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 2px solid #292929;
}

header h1 {
  font-size: 3rem;
  margin: 0;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}

p.subtitle {
  font-size: 1.2rem;
  color: #999;
  margin: 0.5rem 0 0;
}

p.subsubtitle {
  font-size: 0.9rem;
  color: #777;
}

nav {
  background: #111;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-bottom: 1px solid #222;
}

nav a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: color 0.2s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #00e0ff;
  transition: width 0.3s;
}

nav a:hover {
  color: #00e0ff;
}

nav a:hover::after {
  width: 100%;
}

section {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 2rem;
  display: grid;
  gap: 2rem;
}

.project {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.project h3 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #00e0ff;
}

.project p {
  margin-bottom: 1rem;
  color: #ccc;
}

.project a {
  display: inline-block;
  background: #f0f0f0;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  transition:  0.3s, transform 0.2s;
}

.project a:hover {
  background: #b9b9b9;
  transform: translateY(-2px);
}

footer {
  background: #0a0a0a;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #222;
}

.celebration-container {
  background: linear-gradient(90deg, #1a1a1a, #222);
  border: 2px solid #333;
  padding: 1.8rem;
  margin: 1.5rem auto;
  border-radius: 12px;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 200, 50, 0.15);
  animation: popIn 0.6s ease-out;
}

.celebration-inner h2 {
  margin: 0;
  font-size: 2rem;
  color: #ffd66b;
  font-weight: 800;
}

.celebration-inner p {
  margin-top: 0.8rem;
  color: #eee;
  line-height: 1.5;
}

.celebration-sub {
  color: #ffa;
  margin-top: 0.5rem;
  opacity: 0.9;
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
