/* --- GLOBAL STYLES --- */
body {
  background: #222 url("img/pexels-minan1398-713664.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: white;
  font-size: 13.5px;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: #33c1ff;
  text-decoration: none;
}

a:hover {
  color: #95dfff;
}

/* --- TOP LEFT SIDEBAR FOR IMAGE --- */
.sidebar-left {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 180px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0px;
  box-shadow: 0 0 0px #42c6ff;
  padding: 0px;
  text-align: center;
}

.sidebar-left img {
  max-width: 100%;
  border-radius: 10px;
}

/* --- BOTTOM LEFT SIDEBAR FOR NAVIGATION --- */
.sidebar-bottom {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 160px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  box-shadow: 0 0 15px #42c6ff;
  padding: 15px;
  text-align: center;
}

.sidebar-bottom h3 {
  color: #42c6ff;
  margin-bottom: 10px;
}

.sidebar-bottom ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar-bottom ul li {
  margin: 10px 0;
}

.sidebar-bottom ul li a:hover {
  color: #95dfff;
  text-shadow: 0 0 5px #42c6ff;
}

/* --- RIGHT SIDEBAR FOR UPDATES --- */
.sidebar-right {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 200px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  box-shadow: 0 0 15px #42c6ff;
  padding: 15px;
  text-align: left;
}

.sidebar-right h3 {
  color: #42c6ff;
  margin-bottom: 10px;
}

.sidebar-right p {
  font-size: 13px;
  line-height: 1.5;
}

/* --- MAIN CONTENT CENTERED --- */
.main {
  max-width: 600px;
  background: rgba(10, 10, 10, 0.9);
  border-radius: 20px;
  box-shadow: 0px 0px 15px 2px #42c6ff;
  margin: 30px auto 40px auto;
  padding: 25px;
}

/* --- FOOTER --- */
.footer {
  text-align: center;
  font-size: 12px;
  margin-top: -20px;
  padding: 15px;
}

/* --- Mobile --- */
@media (max-width: 1000px) {
  .sidebar-left, .sidebar-bottom, .sidebar-right {
    position: static;
    width: auto;
    margin: 10px;
    box-shadow: 0 0 10px #42c6ff;
  }
  .main {
    margin: 20px;
  }
}

/* --- INTERESTS GRID / COLUMNS --- */
.interests-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.interest-item {
  flex: 1 1 30%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 0 10px #42c6ff;
}

.interest-item img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.interest-item h3 {
  color: #42c6ff;
  margin-top: 0;
}

.interest-item p {
  font-size: 13px;
  line-height: 1.5;
}

/* Make sure they stack on small screens */
@media (max-width: 800px) {
  .interest-item {
    flex: 1 1 100%;
  }
}

