* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #050508;
  color: #e0e0e0;
  min-height: 100vh;
}

/* ===== LINKS SECTION ===== */
.links-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.links-section .links-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
.links-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0,255,255,0.05) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.links-section .container {
  position: relative;
  z-index: 2;
}

/* ===== NEON TITLE ===== */
.neon-title {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 6px;
  color: #fff;
  text-shadow:
    0 0 4px #00ffff,
    0 0 11px #00ffff,
    0 0 19px #00ffff,
    0 0 40px rgba(0,255,255,0.6),
    0 0 80px rgba(0,255,255,0.3);
  margin-bottom: 12px;
  animation: flicker 3s infinite alternate;
}
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow:
      0 0 4px #00ffff,
      0 0 11px #00ffff,
      0 0 19px #00ffff,
      0 0 40px rgba(0,255,255,0.6),
      0 0 80px rgba(0,255,255,0.3);
  }
  20%, 24%, 55% {
    text-shadow:
      0 0 2px #00ffff,
      0 0 5px #00ffff,
      0 0 9px #00ffff,
      0 0 20px rgba(0,255,255,0.3);
  }
}
.neon-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  text-shadow: 0 0 30px rgba(0,255,255,0.2);
  letter-spacing: 1px;
}

/* ===== LINK CARDS ===== */
.link-card {
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,255,255,0.12);
  border-radius: 20px;
  padding: 32px 20px 28px;
  text-align: center;
  height: 100%;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.link-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0,255,255,0.03), transparent, rgba(0,255,255,0.03), transparent);
  animation: rotateGlow 6s linear infinite;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: -1;
}
.link-card:hover::before {
  opacity: 1;
}
@keyframes rotateGlow {
  to { transform: rotate(360deg); }
}
.link-card:hover {
  border-color: rgba(0,255,255,0.6);
  box-shadow:
    0 0 25px rgba(0,255,255,0.2),
    0 0 60px rgba(0,255,255,0.1),
    inset 0 0 30px rgba(0,255,255,0.03);
  transform: translateY(-6px) scale(1.02);
}
.link-card .link-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(0,255,255,0.06);
  border: 1px solid rgba(0,255,255,0.2);
  transition: all .35s ease;
}
.link-card:hover .link-icon {
  background: rgba(0,255,255,0.12);
  border-color: rgba(0,255,255,0.5);
  box-shadow: 0 0 20px rgba(0,255,255,0.15);
}
.link-card .link-icon svg { width: 24px; height: 24px; filter: drop-shadow(0 0 6px rgba(0,255,255,0.4)); }
.link-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 0.5px;
}

/* ===== NEON BUTTON ===== */
.btn-neon {
  display: inline-flex;
  align-items: center;
  padding: 10px 34px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid #00ffff;
  border-radius: 50px;
  background: rgba(0,255,255,0.04);
  color: #00ffff;
  transition: all .3s ease;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(0,255,255,0.15), inset 0 0 8px rgba(0,255,255,0.04);
  cursor: pointer;
}
.btn-neon:hover {
  background: #00ffff;
  color: #0a0a0f;
  box-shadow:
    0 0 20px rgba(0,255,255,0.5),
    0 0 40px rgba(0,255,255,0.3),
    0 0 60px rgba(0,255,255,0.15);
  transform: scale(1.06);
  border-color: #00ffff;
}
.btn-neon:active {
  transform: scale(0.98);
}

/* ===== COPY BUTTON (no glow change on hover for icon) ===== */
.copy-btn-element svg { transition: none; }

/* ===== ADMIN LINK ===== */
.admin-link {
  display: inline-block;
  font-size: 20px;
  opacity: 0.15;
  transition: opacity .3s ease;
  text-decoration: none;
  filter: grayscale(1);
}
.admin-link:hover {
  opacity: 0.6;
  filter: grayscale(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .neon-title { font-size: 38px; letter-spacing: 4px; }
  .neon-subtitle { font-size: 15px; }
  .link-card { padding: 22px 14px 20px; }
  .link-card .link-icon { width: 50px; height: 50px; }
  .link-card .link-icon svg { width: 20px; height: 20px; }
  .link-card h5 { font-size: 14px; }
  .btn-neon { padding: 8px 26px; font-size: 13px; }
}
@media (max-width: 480px) {
  .neon-title { font-size: 28px; letter-spacing: 3px; }
  .link-card { padding: 18px 10px 16px; }
  .link-card .link-icon { width: 44px; height: 44px; }
  .link-card .link-icon svg { width: 18px; height: 18px; }
  .link-card h5 { font-size: 13px; }
  .btn-neon { padding: 6px 20px; font-size: 12px; }
}