* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  padding-top: 120px;
  background: #1e1e1e;
  font-family: 'Segoe UI', sans-serif;
  color: #eee;
  padding: 140px 20px 20px;
}

.terminal-window {
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.terminal-header {
  background: #2c2c2c;
  padding: 10px;
  display: flex;
  align-items: center;
  position: relative;
}

.dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  margin-right: 8px;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.terminal-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #ccc;
  font-size: 14px;
}

.terminal-body {
  padding: 20px;
  min-height: 300px;
  max-height: 400px;
  overflow-y: auto;
  font-size: 15px;
  line-height: 1.6;
}

.terminal-input {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-top: 1px solid #333;
  background: #1a1a1a;
}

.prompt {
  margin-right: 8px;
  color: #6df;
}

input {
  background: transparent;
  border: none;
  outline: none;
  color: #eee;
  flex: 1;
  font-family: 'Segoe UI', sans-serif;
  font-size: 15px;
}

.glass-nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 95%;
  max-width: 800px;
  background: rgba(79, 11, 114, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.glass-nav .logo {
  height: 45px;
}

.glass-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.glass-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.glass-nav a:hover,
.glass-nav a.active {
  color: #7B49AA;
  font-weight: 600;
  letter-spacing: normal;
}

@media screen and (max-width: 768px) {
  .glass-nav {
    flex-direction: column;
    top: 10px;
    padding: 20px 10px;
    border-radius: 25px 25px 25px 25px;
  }

  .glass-nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 600px) {
  .terminal-window {
    margin-top: 10px;
    transform: translateY(30px); 
  }

  .terminal-body {
    max-height: 300px; 
  }

  input {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  body {
    padding-top: 200px; 
  }
}
