.about-page {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  padding: 2rem 0;
  min-width: 90%;
}

/* Genişlik Ayarı */
.w-80 {
  width: 90%;
  max-width: 1600px;
}

/* Glassmorphism */
.glass-panel {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 255, 204, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 255, 204, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.glass-panel:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 204, 0.15);
}

/* Neon Glow */
.text-glow {
  text-shadow: 0 0 15px #00ffee, 0 0 25px rgba(0, 255, 204, 0.3);
  color: #00ffee;
}

/* Neon Link */
.text-neon {
  color: #00ffcc;
  text-decoration: underline;
  transition: color 0.3s;
}

.text-neon:hover {
  color: #00ffee;
  text-shadow: 0 0 8px rgba(0, 255, 204, 0.5);
}

/* Cursor Animation */
.cursor-about {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background-color: #00ffee;
  margin-left: 2px;
  animation: blink 1s steps(1) infinite;
  vertical-align: bottom;
  border-radius: 1px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Sphere Container */
.sphere-container {
  min-width: 100%;
  min-height: 100%;
  position: relative;
  cursor: grab;
}

#teSphere,
#bgParticles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#teSphere {
  z-index: 3;
}

#bgParticles {
  z-index: 1;
  opacity: 0.1;
}

/* Responsive */
@media (max-width: 992px) {
  .sphere-container {
    height: 400px;
    margin-bottom: 2rem;
    width: 95% !important;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%; /* Mobilde de daire görünümünü korur */
    display: flex; /* Flexbox ile içeriği ortalamak için */
    justify-content: center; /* Yatayda ortala */
    align-items: center; /* Dikeyde ortala */
    margin-top: 2rem;
  }
  
  .row {
    flex-direction: column;
    align-items: center; /* Mobilde alt alta ve ortalı olması için */
  }
  
  .glass-panel {
    padding: 1.5rem !important;
    width: 95% !important;
    margin-left: auto;
    margin-right: auto;
    /* Yatayda ortalamak için */
  }

  .text-glow.display-4 {
    font-size: 2.5rem;
  }
  
  .text-glow.display-5 {
    font-size: 2rem;
  }

  /* Mobilde teSphere boyutunu sabitle ve yatayda ortala */
  #teSphere {
    width: 500px;
    height: 500px;
    display: block; /* Blok element yapısı ile margin auto çalışır */
    margin-left: auto; /* Yatayda ortalamak için */
    margin-right: auto; /* Yatayda ortalamak için */
    position: relative; /* Mobilde mutlak konumlandırmayı kaldırdık */
  }

  /* Mobilde p etiketlerinin font boyutunu küçült */
  p {
    font-size: 0.95rem; /* Mobilde daha küçük font boyutu */
  }
}

p {
  font-size: 1.05rem; /* Masaüstü için font boyutu */
}
