* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('images/fon.jpeg') no-repeat center center fixed;
  background-size: cover;
  color: #e0d5c0;
  min-height: 100vh;
}

/* ===== SUIT DECORATIONS ===== */
body::after {
  content: '♠ ♥ ♦ ♣';
  position: fixed;
  font-size: 120px;
  letter-spacing: 40px;
  color: rgba(255, 215, 0, 0.03);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  bottom: -20px;
}

/* ===== 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.04;
  z-index: 0;
  pointer-events: none;
}
.links-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 215, 0, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 0, 64, 0.05) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.links-section .container {
  position: relative;
  z-index: 2;
}

/* ===== VEGAS TITLE ===== */
.vegas-title {
  margin-bottom: 4px;
  position: relative;
}
.vegas-logo {
  width: 600px;
  height: 180px;
  background: url('images/vegas.png') no-repeat center center;
  background-size: contain;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.2));
  animation: goldFlicker 3s infinite alternate;
  pointer-events: none;
  user-select: none;
}
@keyframes goldFlicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow:
      0 0 4px #FFD700,
      0 0 11px #FFD700,
      0 0 19px #FFD700,
      0 0 40px rgba(255, 215, 0, 0.5),
      0 0 80px rgba(255, 215, 0, 0.25);
  }
  20%, 24%, 55% {
    text-shadow:
      0 0 2px #FFD700,
      0 0 5px #FFD700,
      0 0 9px #FFD700,
      0 0 20px rgba(255, 215, 0, 0.2);
  }
}
.vegas-subtitle {
  font-size: 16px;
  color: rgba(255, 215, 0, 0.8);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: goldFlicker 3s infinite alternate;
}

/* ===== LINK CARDS ===== */
.link-card {
  background: linear-gradient(135deg, rgba(20, 15, 10, 0.5), rgba(10, 8, 6, 0.65));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 32px 20px 28px;
  text-align: center;
  height: 100%;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFD700, #FF0040, #FFD700, transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.link-card:hover::before {
  opacity: 1;
}
.link-card::after {
  content: '♦';
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 24px;
  color: rgba(255, 215, 0, 0.05);
  pointer-events: none;
}
.link-card:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow:
    0 0 25px rgba(255, 215, 0, 0.15),
    0 0 60px rgba(255, 0, 64, 0.08),
    inset 0 0 30px rgba(255, 215, 0, 0.02);
  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(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all .35s ease;
}
.link-card:hover .link-icon {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}
.link-card .link-icon svg { width: 24px; height: 24px; filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.3)); }
.link-card .link-icon svg path { fill: #FFD700; }
.link-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #f0e6d0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== VEGAS BUTTON ===== */
.btn-vegas {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 34px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid #FFD700;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 0, 64, 0.04));
  color: #FFD700;
  transition: all .3s ease;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.12), inset 0 0 8px rgba(255, 215, 0, 0.02);
  cursor: pointer;
  text-transform: uppercase;
}
.suit-icon { font-size: 18px; line-height: 1; }
.btn-vegas:hover {
  background: linear-gradient(135deg, #FFD700, #FFC000);
  color: #0a0a0a;
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.5),
    0 0 40px rgba(255, 215, 0, 0.3),
    0 0 60px rgba(255, 0, 64, 0.1);
  transform: scale(1.06);
  border-color: #FFD700;
}
.btn-vegas:active {
  transform: scale(0.98);
}

/* ===== COPY BUTTON ===== */
.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) {
  .vegas-logo { width: 400px; height: 120px; }
  .vegas-subtitle { font-size: 13px; letter-spacing: 2px; }
  .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-vegas { padding: 8px 26px; font-size: 13px; }
}
@media (max-width: 480px) {
  .vegas-logo { width: 280px; height: 84px; }
  .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-vegas { padding: 6px 20px; font-size: 12px; }
}