body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  margin: 0;
  padding-top: 100px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #2c3e50;
  min-height: 100vh;
}

.logo {
  height: 28px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
}

.logo:hover {
  transform: scale(1.08);
  opacity: 1;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: rgba(255, 255, 255, 0.92);
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 20px;
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.nav-menu {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-left: 50px;
}

.nav-menu a {
  display: block;
  color: #2c3e50;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-menu a:hover {
  color: #667eea;
}

.nav-menu a:hover::after {
  width: 70%;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.main {
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 20px;
}

h1 {
  font-size: 56px;
  color: #1a252f;
  margin: 0 0 40px 0;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

p {
  color: #5a6c7d;
  font-size: 17px;
  line-height: 1.8;
  margin: 20px 0;
  font-weight: 400;
}

b {
  color: #667eea;
  font-weight: 800;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: absolute;
    right: 15px;
  }

  .navbar {
    flex-wrap: wrap;
    padding: 15px 15px;
    justify-content: center;
    position: relative;
  }

  .logo {
    position: absolute;
    left: 15px;
    height: 24px;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-left: 0;
  }

  .nav-menu.active {
    max-height: 300px;
  }

  .nav-menu a {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    font-size: 12px;
  }

  h1 {
    font-size: 40px;
    margin: 0 0 30px 0;
  }

  p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
    margin: 0 0 20px 0;
  }

  p {
    font-size: 13px;
  }

  .nav-menu a {
    padding: 14px 16px;
    font-size: 11px;
  }
}






