@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  background: #0a1016;
  color: #d1d1d1;
  font-family: 'VT323', monospace;
  margin: 0;
  padding: 0;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 30px;
  background: #0a1016;
  border-bottom: 2px solid #38bdf8;
  padding: 16px 0;
}

.navbar a {
  color: #38bdf8;
  text-decoration: none;
  font-size: 1.1em;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.navbar a:hover {
  background: #38bdf8;
  color: #0a1016;
}

.container {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 30px auto;
  background: #1e293b;
  border: 2px solid #00ffd0;
  border-radius: 10px;
  padding: 20px;
  gap: 32px;
}

.sidebar {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.pfp {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #00ffd0;
  box-shadow: 0 0 15px #38bdf8;
  margin-bottom: 8px;
  object-fit: cover;
}

.mood {
  width: 100%;
  background: #0a1016;
  border: 2px solid #38bdf8;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  margin-bottom: 8px;
}

.mood h2 {
  margin: 0 0 6px 0;
  color: #38bdf8;
  font-size: 1.2em;
}

.blinkies {
  width: 100%;
  background: #0a1016;
  border: 2px solid #38bdf8;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.blinkies h3 {
  margin: 0 0 8px 0;
  color: #38bdf8;
  font-size: 1.1em;
}

.blinkies-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.blinkies-list img {
  width: 100px;      
  height: 51px;     
  object-fit: contain;
  border: 1.5px solid #00ffd0;
  border-radius: 3px;
  box-shadow: 0 0 6px #38bdf8;
  background: #111;
}

.main-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about, .interests, .currently, .site-log, .random-quote {
  background: #0a1016;
  border: 2px solid #00ffd0;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 0 10px #38bdf844;
}

.interests ul {
  padding-left: 18px;
}

.interests li {
  margin-bottom: 6px;
}

.site-log ul {
  list-style: none;
  padding: 0;
}

.site-log li::before {
  content: "✦ ";
  color: #38bdf8;
}

.random-quote p {
  color: #38bdf8;
  font-style: italic;
}

h1, h2, h3 {
  color: #38bdf8;
  text-shadow: 0 0 8px #00ffd0;
  margin-top: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }
  .sidebar {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 10px;
  }
  .main-content {
    gap: 18px;
  }
  .mood, .blinkies {
    width: auto;
    min-width: 120px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 4px;
  }
  .sidebar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .main-content {
    gap: 10px;
  }
  .about, .interests, .currently, .site-log, .random-quote {
    padding: 10px;
  }
}
#clock {
  margin-top: 10px;
  font-family: 'VT323', monospace;
  font-size: 1.4em;
  color: #00ffd0;
  background: #111;
  border: 2px solid #38bdf8;
  border-radius: 6px;
  padding: 6px 18px;
  display: inline-block;
  letter-spacing: 2px;
  box-shadow: 0 0 8px #00ffd0;
}