.apps_body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100vw;
  background: radial-gradient(circle at 50% 30%, rgba(0,200,255,0.2), transparent 70%) no-repeat,
              radial-gradient(circle at 80% 70%, rgba(0,100,255,0.2), transparent 60%) no-repeat,
              #000000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  overflow-x: hidden;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

.columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  gap: 35px;
  margin-top: 50px;
}

.column {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(255,255,255,0.05);
  padding: 20px;
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.column h2 {
  margin-bottom: 20px;
  font-size: 20px;
  color: white;
  text-align: center;
  letter-spacing: 1px;
  
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 22px;
  justify-items: center;
}

.app-card {
  background: rgba(255, 255, 255, 0.08); 
  border-radius: 20px;
  padding: 18px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(0, 0, 0, 0.4)
  );
  z-index: 0;
  transition: opacity 0.4s ease;
}

.app-card:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.25);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.app-card:hover .app-icon {
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
  transition: transform 0.3s ease, filter 0.3s ease;
}


.app-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.app-label {
  font-size: 15px;
  position: relative;
  z-index: 1;
  color: #fff;
}

@media (max-width: 1400px) {
  .app-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .columns { grid-template-columns: repeat(2, 1fr); }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .columns { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
}

#launchOverlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.92), rgba(0,0,0,1));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#launchOverlay.active {
  opacity: 1;
  visibility: visible;
}

.logo-container {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInLogo 0.8s ease forwards;
}

.launch-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.7));
  animation: glowPulse 2.5s ease-in-out infinite alternate;
}

.launch-spinner {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 4px solid transparent;
  border-top: 4px solid #FFD84A;
  border-right: 4px solid rgba(255, 215, 0, 0.6);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  z-index: 1;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes glowPulse {
  0% { filter: drop-shadow(0 0 10px rgba(255,255,255,0.6)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 25px rgba(255,215,0,0.9)); transform: scale(1.05); }
  100% { filter: drop-shadow(0 0 10px rgba(255,255,255,0.6)); transform: scale(1); }
}
@keyframes fadeInLogo {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
