body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: #e6f1ff;
  background: black;
  overflow-x: hidden;   /* yatay kaymayı engelle */
  overflow-y: auto; 
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

.content {
   padding: 4rem;
  padding-bottom: 100px; 
  display: flex;
  flex-direction: row;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  position: relative;
}
.left{
    height:90%;
  width: 30%;
  display: flex;
  flex-direction: column; 
}
.profileHeader {
  display: flex;
  flex-direction: column; 
  align-items: center;    
  text-align: center;    
  gap: 10px;
}
.subtitle {
  text-align: center;
  color: #64ffda;
}
h1 {
  font-size: 3rem;
  margin: 0;
}

h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #64ffda;
}

p {
  max-width: 600px;
  line-height: 1.6;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

nav a {
  position: relative;
  padding-left: 2rem;         
  text-decoration: none;
  color: #8892b0;             
  font-weight: 500;
  transition: all 0.3s ease;
}
nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #8892b0;        
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

nav a:hover {
  color: #64ffda;
  font-size: 22px;
}
nav a.active {
  color: #fff;
  font-weight: bold;
}

nav a.active::before {
  background: #64ffda;
  width: 40px;
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background: rgba(0,0,0,0.8);
  z-index: 10; /* canvas’tan önde kalsın */
}

footer a {
  margin: 0 1rem;
  color: #8892b0;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #64ffda;
}

.profilePic{
    border-radius: 50%;
    width: 150px;
}



.right {
  width: 60%;
  padding: 2rem;
  background: rgba(0,0,0,0.3);
  overflow-y: auto;
}


/* Mobil görünüm (ör: 768px ve altı) */
@media (max-width: 768px) {
  .content {
    flex-direction: column;  /* Yan yana yerine alt alta */
    padding: 1rem;
  }

  .left {
    width: 100%;
    height: auto;
    align-items: center;     /* Ortala */
    text-align: center;
  }

  .left nav {
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
  }

  .right {
    width: 100%;
    padding: 1rem;
  }

  footer {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
  }
}
