/* ========================= */
/* SECTION */
/* ========================= */
.alt-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A1F44, #102A5C);
  text-align: center;
  color: #fff;
}

/* TITLE */
.alt-title {
  font-size: 36px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #1E90FF, #4DB8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.alt-subtitle {
  color: #C0D6FF;
  margin-bottom: 50px;
}

/* ========================= */
/* GRID */
/* ========================= */
.alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* ========================= */
/* CARD */
/* ========================= */
.alt-card {
  background: #163B7A;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: 0.4s;
  overflow: hidden;
}

/* Glow */
.alt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(77,184,255,0.4), transparent);
  opacity: 0;
  transition: 0.4s;
}

.alt-card:hover::before {
  opacity: 1;
}

/* Hover */
.alt-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30,144,255,0.4);
}

/* ========================= */
/* STATUS */
/* ========================= */
.status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Online */
.status.online {
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88;
}

/* ========================= */
/* TEXT */
/* ========================= */
.alt-card h3 {
  margin-bottom: 10px;
}

.alt-card p {
  font-size: 14px;
  color: #C0D6FF;
  margin-bottom: 20px;
}

/* ========================= */
/* BUTTON */
/* ========================= */
.btn-alt {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1E90FF, #4DB8FF);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  z-index: 10;
  pointer-events: auto !important;
}

/* Hover */
.btn-alt:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(30,144,255,0.6);
}

/* Klik */
.btn-alt:active {
  transform: scale(0.95);
}

/* ========================= */
/* INFO */
/* ========================= */
.alt-info {
  margin-top: 40px;
  color: #C0D6FF;
  font-size: 14px;
}

/* ========================= */
/* FIX KLIK */
/* ========================= */
.alt-section,
.alt-card,
.alt-card * {
  pointer-events: auto;
}