/* ====================================================
   PREMIUM 3 - ULTRA VIP SHIMMER REDIRECTION PLATFORM
   ==================================================== */
:root {
  --bg-primary: #050713;
  --bg-card: rgba(15, 23, 42, 0.85);
  --bg-card-hover: rgba(30, 41, 59, 0.95);
  --border-neon: rgba(14, 210, 247, 0.3);
  --border-neon-gold: rgba(245, 158, 11, 0.45);
  
  --accent-cyan: #0ED2F7;
  --accent-purple: #A855F7;
  --accent-gold: #F59E0B;
  --accent-emerald: #10B981;
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  
  --font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --shadow-neon: 0 0 25px rgba(14, 210, 247, 0.25);
  --shadow-gold: 0 0 35px rgba(245, 158, 11, 0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-family);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.5;
}

/* Ambient Glow Spheres */
.ambient-glow-1 {
  position: fixed;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(14, 210, 247, 0.15) 0%, rgba(168, 85, 247, 0.1) 45%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-2 {
  position: fixed;
  bottom: -150px;
  right: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(16, 185, 129, 0.08) 50%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

/* Header */
.cyber-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 19, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-badge {
  padding: 6px 18px;
  background: linear-gradient(135deg, rgba(14, 210, 247, 0.2), rgba(168, 85, 247, 0.2));
  border: 1px solid rgba(14, 210, 247, 0.5);
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.3rem;
  color: #FFFFFF;
  letter-spacing: 1.5px;
  box-shadow: 0 0 20px rgba(14, 210, 247, 0.25);
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-emerald);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.5; }
}

/* Quick Nav Buttons */
.quick-nav-row {
  display: flex;
  gap: 10px;
  margin: 18px 0;
}

.quick-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.quick-btn--tg {
  background: linear-gradient(135deg, #0088cc 0%, #00a2ed 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.35);
}

.quick-btn--tg:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.55);
}

.quick-btn--ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.35);
}

.quick-btn--ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.55);
}

.quick-btn--destek:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(217, 119, 6, 0.25));
  transform: translateY(-2px);
}

/* Search Bar */
.search-box-wrap {
  position: relative;
  margin-bottom: 20px;
}

.search-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 18px rgba(14, 210, 247, 0.3);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 18px;
  height: 18px;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 24px;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.filter-tab.active, .filter-tab:hover {
  background: linear-gradient(135deg, rgba(14, 210, 247, 0.25), rgba(168, 85, 247, 0.25));
  border-color: var(--accent-cyan);
  color: #fff;
  box-shadow: 0 0 12px rgba(14, 210, 247, 0.3);
}

/* Section Titles */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.section-badge-count {
  background: rgba(14, 210, 247, 0.15);
  color: var(--accent-cyan);
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* VIP Shimmer Cards */
.vip-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

@keyframes shimmerWave {
  0% { transform: translateX(-150%) rotate(25deg); }
  100% { transform: translateX(150%) rotate(25deg); }
}

.vip-card-cyber {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
  border: 1px solid var(--border-neon-gold);
  border-radius: 18px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-gold);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.vip-card-cyber::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245, 158, 11, 0.12) 45%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(245, 158, 11, 0.12) 55%,
    transparent 100%
  );
  animation: shimmerWave 4s infinite;
  pointer-events: none;
}

.vip-card-cyber:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--accent-gold);
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.45);
}

.vip-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.vip-tag-gold {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #000;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vip-badge-feature {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 8px;
}

.vip-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.vip-logo-area {
  flex: 1;
}

.vip-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent-gold), #D97706);
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
  transition: all 0.3s ease;
}

.vip-card-cyber:hover .vip-action-btn {
  background: linear-gradient(135deg, #FFC107, #F59E0B);
  transform: translateX(3px);
}

/* Sponsor Grid */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.sponsor-card-cyber {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 16px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.sponsor-card-cyber:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon);
}

.sponsor-top-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(14, 210, 247, 0.12);
  padding: 3px 8px;
  border-radius: 6px;
  width: fit-content;
}

.sponsor-logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.sponsor-logo-area img {
  max-height: 44px;
  max-width: 100%;
  object-fit: contain;
}

.sponsor-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sponsor-action-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.sponsor-action-arrow {
  color: var(--accent-cyan);
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.sponsor-card-cyber:hover .sponsor-action-arrow {
  transform: translateX(3px);
}

/* About Section for End-User */
.about-tech-box {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 30px;
}

.about-tech-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}

.about-tech-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-tech-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.about-feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-feature-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.about-feature-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Footer */
.footer-cyber {
  text-align: center;
  padding: 20px 0 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Floating TG Button */
.floating-tg-pill {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0088cc, #00a2ed);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.55);
  transition: all 0.3s ease;
}

.floating-tg-pill:hover {
  transform: translateY(-3px) scale(1.03);
}
