
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0b0c10;
  color: #e0e0e0;
}
.site-header {
  position: sticky;
  top: 0;
  background-color: #0f1c2e;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 153, 255, 0.2);

  height: 150px;
}
.site-header .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 20px;

  width: 1200px;

  width: 1200px;

  height: 150px;
}
.logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: #00ccff;
  white-space: nowrap;
}
.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: transparent;
  box-shadow: none;
}
.top-nav a {
  color: #e0e0e0;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
.top-nav a:hover {
  color: #00ccff;
}
main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.card {
  background-color: #162236;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #00ccff33;
  box-shadow: 0 4px 10px rgba(0, 153, 255, 0.1);
  transition: transform 0.3s, background-color 0.3s;
  margin-bottom: 20px;
}
.card:hover {
  background-color: #1f2f4d;
  transform: translateY(-5px);
}
.card h2 {
  color: #00ccff;
  margin-top: 0;
}
.sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}


.latest-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.latest-posts .card h3 {
  margin: 0 0 0.5rem;
}
.latest-posts .card a {
  color: #00ccff;
  text-decoration: none;
}
.latest-posts .card a:hover {
  text-decoration: underline;
}
.latest-posts .card p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #ccc;
}


.latest-posts-full {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
.latest-posts-full .card {
  width: 100%;
}


.latest-posts-full {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.latest-posts-full .card {
  padding: 1.5rem;
  background-color: #162236;
  border-radius: 10px;
  border: 1px solid #00ccff33;
  box-shadow: 0 2px 5px rgba(0, 153, 255, 0.1);
  transition: transform 0.3s;
}

.latest-posts-full .card:hover {
  transform: translateY(-4px);
}

.latest-posts-full .card h2 {
  margin-bottom: 0.5rem;
}

.latest-posts-full .card a {
  color: #00ccff;
  text-decoration: none;
  transition: color 0.3s;
}

.latest-posts-full .card a:visited {
  color: #00ccff;
}

.latest-posts-full .card a:hover {
  color: #66d9ff;
  text-decoration: underline;
}


.latest-posts-full {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.latest-posts-full .card {
  margin-bottom: 10px;
  padding: 1rem;
  background-color: #162236;
  border-radius: 10px;
  border: 1px solid #00ccff33;
  box-shadow: 0 1px 3px rgba(0, 153, 255, 0.1);
}


a {
  color: #03a9f4;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
