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

/* ===== LINKS SECTION ===== */
.links-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: url('images/fon.jpeg') no-repeat center center;
  background-size: cover;
}
.links-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(206, 17, 38, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.links-section .container {
  position: relative;
  z-index: 2;
}

/* ===== JORDAN TITLE ===== */
.jordan-title {
  margin-bottom: 4px;
  position: relative;
}
.jordan-logo {
  width: 500px;
  height: 250px;
  background: url('images/jordan.png') no-repeat center center;
  background-size: contain;
  margin: 0 auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 0 30px rgba(206, 17, 38, 0.3));
}
.jordan-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-top: -8px;
}

/* ===== LINK CARDS ===== */
.link-card {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(206, 17, 38, 0.15);
  border-radius: 8px;
  padding: 32px 20px 28px;
  text-align: center;
  height: 100%;
  min-height: 220px;
  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(206, 17, 38, 0.05), transparent, rgba(255, 215, 0, 0.05), 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(206, 17, 38, 0.6);
  box-shadow:
    0 0 25px rgba(206, 17, 38, 0.2),
    0 0 60px rgba(206, 17, 38, 0.1),
    inset 0 0 30px rgba(206, 17, 38, 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(206, 17, 38, 0.06);
  border: 1px solid rgba(206, 17, 38, 0.2);
  transition: all .35s ease;
}
.link-card:hover .link-icon {
  background: rgba(206, 17, 38, 0.12);
  border-color: rgba(206, 17, 38, 0.5);
  box-shadow: 0 0 20px rgba(206, 17, 38, 0.15);
}
.link-card .link-icon svg { width: 24px; height: 24px; }
.link-card h5 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== JORDAN BUTTON ===== */
.btn-jordan {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 34px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 2px solid #ce1126;
  border-radius: 8px;
  background: rgba(206, 17, 38, 0.04);
  color: #fff;
  transition: all .3s ease;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(206, 17, 38, 0.15), inset 0 0 8px rgba(206, 17, 38, 0.04);
  cursor: pointer;
  text-transform: uppercase;
}
.btn-jordan:hover {
  background: #ce1126;
  color: #fff;
  box-shadow:
    0 0 20px rgba(206, 17, 38, 0.5),
    0 0 40px rgba(206, 17, 38, 0.3);
  transform: scale(1.06);
  border-color: #ce1126;
}
.btn-jordan:active {
  transform: scale(0.98);
}
.btn-jordan svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

/* ===== 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) {
  .jordan-logo { width: 350px; height: 175px; }
  .jordan-subtitle { font-size: 12px; letter-spacing: 5px; }
  .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-jordan { padding: 8px 26px; font-size: 13px; }
}
@media (max-width: 480px) {
  .jordan-logo { width: 260px; height: 130px; }
  .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-jordan { padding: 6px 20px; font-size: 12px; }
}