.elementor-48557 .elementor-element.elementor-element-e53a622{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-bd215a1 */.neon-app {
  background: radial-gradient(circle at top, #0a0a12 0%, #000 100%);
  color: #eee;
  font-family: 'Poppins', sans-serif;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.15);
  backdrop-filter: blur(10px);
}

/* Header */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.app-logo {
  position: relative;
  width: 80px;
  height: 80px;
}

.logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,255,0.25), transparent 70%);
  box-shadow:
    0 0 20px rgba(255, 0, 255, 0.4),
    0 0 50px rgba(160, 0, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.logo-core {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff00ff 0%, #a000ff 70%);
  box-shadow:
    0 0 15px #ff00ff,
    0 0 40px rgba(255, 0, 255, 0.6);
}

.header-icons .icon {
  font-size: 1.4rem;
  margin-left: 10px;
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
}

.header-icons .icon:hover {
  opacity: 1;
  text-shadow: 0 0 8px #ff00ff;
}

/* Navigation */
.app-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.5rem;
}

.nav-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255, 0, 255, 0.1);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow:
    inset 0 0 20px rgba(255,0,255,0.05),
    0 0 10px rgba(255,0,255,0.05);
}

.nav-btn.active,
.nav-btn:hover {
  background: rgba(255,0,255,0.15);
  box-shadow:
    inset 0 0 20px rgba(255,0,255,0.2),
    0 0 25px rgba(255,0,255,0.4);
}

/* Content */
.content {
  padding: 1rem 1.2rem 2rem;
}

.section-title {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  color: #fff;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255, 0, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  box-shadow:
    inset 0 0 25px rgba(255,0,255,0.05),
    0 0 20px rgba(255,0,255,0.08);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 35px rgba(255,0,255,0.3),
    inset 0 0 25px rgba(255,0,255,0.1);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-info {
  padding: 0.8rem 1rem;
}

.card-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #ff77ff;
  text-shadow: 0 0 5px rgba(255,0,255,0.6);
}

.card-info p {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.3rem;
}

/* Responsive */
@media (min-width: 600px) {
  .neon-app {
    max-width: 700px;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}/* End custom CSS */