/* ==========================================================================
   CYBERAPK // NEXUS - Ultra Futuristic Cyberpunk Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@500;700;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Cyber Neon Palette */
  --bg-primary: #060814;
  --bg-secondary: #0b0f24;
  --bg-card: rgba(14, 20, 48, 0.7);
  --bg-card-hover: rgba(22, 31, 74, 0.85);
  --bg-glass: rgba(12, 17, 43, 0.65);
  --bg-glass-heavy: rgba(8, 12, 30, 0.92);

  --neon-cyan: #00f2fe;
  --neon-cyan-glow: rgba(0, 242, 254, 0.4);
  --neon-purple: #8a2be2;
  --neon-purple-glow: rgba(138, 43, 226, 0.4);
  --neon-pink: #ff007f;
  --neon-pink-glow: rgba(255, 0, 127, 0.45);
  --neon-green: #00f5a0;
  --neon-green-glow: rgba(0, 245, 160, 0.4);
  --neon-amber: #f59e0b;

  --border-subtle: rgba(0, 242, 254, 0.15);
  --border-bright: rgba(0, 242, 254, 0.45);
  --border-glass: rgba(255, 255, 255, 0.08);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-cyan: #38bdf8;

  --font-display: 'Orbitron', -apple-system, sans-serif;
  --font-heading: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-neon: 0 0 25px rgba(0, 242, 254, 0.25);
  --shadow-pink: 0 0 25px rgba(255, 0, 127, 0.25);
  --shadow-green: 0 0 25px rgba(0, 245, 160, 0.25);
  --shadow-purple: 0 0 25px rgba(138, 43, 226, 0.3);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

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

/* Cyber Matrix & Starfield Background Canvas */
#cyber-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

/* Cyber Ambient Grids & Glows */
.cyber-bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: 
    radial-gradient(circle at 15% 20%, rgba(0, 242, 254, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(138, 43, 226, 0.09) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(255, 0, 127, 0.06) 0%, transparent 45%),
    linear-gradient(rgba(0, 242, 254, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 254, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & Glow text */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 700;
  line-height: 1.25;
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #ffffff 10%, var(--neon-cyan) 80%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-pink {
  background: linear-gradient(135deg, #ff758c 0%, var(--neon-pink) 70%, #ff0844 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-text-cyan {
  text-shadow: 0 0 15px var(--neon-cyan-glow);
}

/* ==========================================================================
   Cyber Navbar
   ========================================================================== */
.cyber-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.cyber-navbar.scrolled {
  border-bottom-color: var(--neon-cyan-glow);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 242, 254, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-main);
  position: relative;
}

.brand-icon-box {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(138, 43, 226, 0.3));
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  box-shadow: var(--shadow-neon);
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-icon-box {
  transform: rotate(0deg) scale(1.08);
}

.brand-logo .brand-badge {
  font-size: 0.65rem;
  font-family: var(--font-body);
  background: var(--neon-cyan);
  color: #000;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-left: 6px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-item a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  position: relative;
}

.nav-item a:hover,
.nav-item.active a {
  color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.08);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--neon-cyan);
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-item a:hover::after,
.nav-item.active a::after {
  transform: translateX(-50%) scaleX(1);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-trigger-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.search-trigger-btn:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--neon-cyan);
  color: var(--text-main);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.search-trigger-btn kbd {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-glass);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.72rem;
  color: var(--neon-cyan);
}

/* Cyber Futuristic Buttons */
.cyber-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.cyber-btn-primary {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #040817;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.cyber-btn-primary:hover {
  background: linear-gradient(135deg, #38bdf8 0%, #00f2fe 100%);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.75);
  transform: translateY(-2px);
  color: #000;
}

.cyber-btn-pink {
  background: linear-gradient(135deg, #ff007f 0%, #7928ca 100%);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
}

.cyber-btn-pink:hover {
  box-shadow: 0 0 35px rgba(255, 0, 127, 0.75);
  transform: translateY(-2px);
}

.cyber-btn-outline {
  background: rgba(14, 20, 48, 0.6);
  color: var(--neon-cyan);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(10px);
}

.cyber-btn-outline:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--neon-cyan);
  color: #fff;
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

.cyber-btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.cyber-btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* Status Indicator Dot */
.cyber-status-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  color: var(--neon-green);
  background: rgba(0, 245, 160, 0.1);
  border: 1px solid rgba(0, 245, 160, 0.3);
  padding: 4px 10px;
  border-radius: 30px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.cyber-hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.cyber-hero-centered {
  padding: 80px 0 60px;
  text-align: center;
}

.hero-centered-content {
  max-width: 820px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.hero-badge-container {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-cyber-tag {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid var(--border-bright);
  padding: 8px 18px;
  border-radius: 30px;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.hero-title {
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Upgraded Futuristic Cyber Search Box HUD */
.hero-search-upgraded {
  background: linear-gradient(145deg, rgba(14, 20, 48, 0.9), rgba(7, 10, 26, 0.95));
  border: 1px solid var(--border-bright);
  box-shadow: 0 15px 50px -10px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 242, 254, 0.25);
  border-radius: 40px;
  padding: 8px 10px 8px 20px;
  backdrop-filter: blur(20px);
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.hero-search-upgraded:focus-within {
  border-color: var(--neon-cyan);
  box-shadow: 0 15px 50px -10px rgba(0, 0, 0, 0.9), 0 0 45px rgba(0, 242, 254, 0.45);
  transform: translateY(-2px);
}

.hero-search-form {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-input-prefix {
  color: var(--neon-cyan);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}

.hero-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 1.05rem;
  font-family: var(--font-heading);
  padding: 12px 0;
}

.hero-search-input::placeholder {
  color: var(--text-dim);
}

.search-submit-btn {
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 0.92rem;
}
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  transform: translateY(-1px);
}

/* Hero Stats Counter */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-glass);
}

.hero-stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-main);
  display: block;
}

.hero-stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero 3D Featured Hologram Card */
.hero-holo-card {
  background: linear-gradient(145deg, rgba(20, 28, 68, 0.85), rgba(9, 13, 33, 0.95));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 242, 254, 0.2);
  backdrop-filter: blur(20px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-holo-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 45px rgba(0, 242, 254, 0.35);
  border-color: var(--neon-cyan);
}

.holo-scanner-line {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0, 242, 254, 0.15), transparent);
  animation: scan-vertical 4s infinite linear;
  pointer-events: none;
}

@keyframes scan-vertical {
  0% { transform: translateY(0); }
  100% { transform: translateY(350%); }
}

.holo-badge-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.holo-banner-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid var(--border-glass);
}

.holo-app-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.holo-app-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 2px solid var(--neon-cyan);
  box-shadow: var(--shadow-neon);
}

.holo-features-list {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.holo-features-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.holo-features-list li i {
  color: var(--neon-green);
}

/* ==========================================================================
   Categories Filter Bar
   ========================================================================== */
.cyber-categories-section {
  padding: 30px 0;
  position: relative;
  z-index: 10;
}

.categories-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 4px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-bright) transparent;
}

.category-tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 12px 22px;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.25s ease;
}

.category-tab-btn i {
  font-size: 1.05rem;
}

.category-tab-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--neon-cyan);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.category-tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(138, 43, 226, 0.25));
  border-color: var(--neon-cyan);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-header-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  font-size: 1.2rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

/* ==========================================================================
   APK Card Grid & Cyber Cards
   ========================================================================== */
.apk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}

.cyber-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.cyber-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.cyber-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--neon-cyan);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 25px rgba(0, 242, 254, 0.2);
}

.cyber-card:hover::before {
  transform: scaleX(1);
}

.card-top {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.card-app-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--border-glass);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cyber-card:hover .card-app-icon {
  transform: scale(1.06);
  border-color: var(--neon-cyan);
}

.card-meta {
  flex: 1;
  min-width: 0;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.card-title:hover {
  color: var(--neon-cyan);
}

.card-dev {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}

.card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-mod {
  background: rgba(255, 0, 127, 0.15);
  border: 1px solid rgba(255, 0, 127, 0.4);
  color: #ff007f;
}

.badge-version {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--border-subtle);
  color: var(--neon-cyan);
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-specs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.spec-item i {
  color: var(--neon-cyan);
}

.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.82rem;
}

.star-rating i {
  color: #fbbf24;
}

.rating-score {
  font-weight: 700;
  color: var(--text-main);
  margin-left: 4px;
}

.card-actions {
  display: flex;
  gap: 10px;
}

.card-actions .cyber-btn {
  flex: 1;
}

/* ==========================================================================
   MOD APK Exclusive Zone Banner
   ========================================================================== */
.mod-showcase-box {
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.1) 0%, rgba(138, 43, 226, 0.15) 100%), var(--bg-card);
  border: 1px solid rgba(255, 0, 127, 0.35);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--shadow-pink);
  margin: 60px 0;
}

.mod-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.mod-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
}

.mod-feature-chip {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 0, 127, 0.3);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mod-feature-chip i {
  color: var(--neon-pink);
}

/* ==========================================================================
   CyberShield Security Section
   ========================================================================== */
.cybershield-section {
  padding: 60px 0;
}

.shield-banner {
  background: linear-gradient(135deg, rgba(0, 245, 160, 0.08) 0%, rgba(0, 242, 254, 0.08) 100%), var(--bg-card);
  border: 1px solid rgba(0, 245, 160, 0.3);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--shadow-green);
}

.shield-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 36px;
}

.shield-card {
  background: rgba(7, 10, 26, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.3s ease;
}

.shield-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-green);
}

.shield-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(0, 245, 160, 0.1);
  border: 1px solid rgba(0, 245, 160, 0.3);
  color: var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

/* ==========================================================================
   Single App Detail Page (app.php)
   ========================================================================== */
.app-detail-header {
  padding: 50px 0 30px;
}

.app-hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}

.app-hero-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.app-hero-icon {
  width: 130px;
  height: 130px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 2px solid var(--neon-cyan);
  box-shadow: var(--shadow-neon);
}

.app-hero-info {
  flex: 1;
  min-width: 280px;
}

.app-hero-title {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.app-hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.app-hero-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.app-hero-specs i {
  color: var(--neon-cyan);
}

/* Screenshot Carousel / Lightbox */
.screenshots-section {
  margin: 40px 0;
}

.screenshots-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
}

.screenshot-item {
  width: 320px;
  height: 180px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.screenshot-item:hover {
  transform: scale(1.03);
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-neon);
}

/* App Tech Specs Table */
.specs-table-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 30px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-glass);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 14px 8px;
  font-size: 0.92rem;
}

.specs-table td:first-child {
  color: var(--text-muted);
  width: 35%;
}

.specs-table td:last-child {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ==========================================================================
   Download Gateway Page (download.php)
   ========================================================================== */
.download-gateway-container {
  max-width: 860px;
  margin: 60px auto;
  padding: 0 20px;
}

.download-hub-card {
  background: linear-gradient(145deg, rgba(14, 20, 48, 0.95), rgba(7, 10, 26, 0.98));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  padding: 44px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--shadow-neon);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}

/* Circular Timer Radar Scanner */
.timer-circle-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 28px auto;
}

.timer-svg {
  transform: rotate(-90deg);
}

.timer-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 8;
}

.timer-circle-progress {
  fill: none;
  stroke: var(--neon-cyan);
  stroke-width: 8;
  stroke-dasharray: 440;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
  filter: drop-shadow(0 0 8px var(--neon-cyan));
}

.timer-number-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-main);
}

/* Security Verification Scan list */
.security-check-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0 32px;
  list-style: none;
}

.security-check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--neon-green);
  background: rgba(0, 245, 160, 0.08);
  border: 1px solid rgba(0, 245, 160, 0.2);
  padding: 6px 14px;
  border-radius: 30px;
}

/* Mirrors Grid */
.mirrors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
  text-align: left;
}

.mirror-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.25s ease;
}

.mirror-btn:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--neon-cyan);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.2);
}

.mirror-btn .mirror-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.mirror-btn .mirror-speed {
  font-size: 0.75rem;
  color: var(--neon-green);
  background: rgba(0, 245, 160, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ==========================================================================
   Modals & Popups
   ========================================================================== */
.cyber-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 7, 20, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cyber-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.cyber-modal {
  background: linear-gradient(145deg, rgba(14, 20, 48, 0.98), rgba(7, 10, 26, 0.99));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), var(--shadow-neon);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.cyber-modal-backdrop.active .cyber-modal {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--neon-pink);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.cyber-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--bg-glass-heavy);
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  color: #fff;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-neon);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cyber-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Cyber Footer
   ========================================================================== */
/* ==========================================================================
   Cyber Footer & Social Media Hub
   ========================================================================== */
.cyber-footer {
  background: rgba(4, 6, 18, 0.95);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
  margin-top: 80px;
  position: relative;
}

.footer-social-wrapper {
  text-align: center;
  padding-bottom: 20px;
}

.footer-brand-center {
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cyber-social-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  padding: 10px 22px;
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.cyber-social-card i {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.cyber-social-card:hover {
  transform: translateY(-3px);
}

.cyber-social-card:hover i {
  transform: scale(1.15);
}

/* Specific Social Brand Glows */
.cyber-social-card.telegram {
  background: rgba(0, 136, 204, 0.08);
  border-color: rgba(0, 136, 204, 0.4);
  color: #38bdf8;
  padding: 12px 28px;
  font-size: 0.96rem;
  box-shadow: 0 4px 18px rgba(0, 136, 204, 0.15);
}

.cyber-social-card.telegram:hover {
  background: rgba(0, 136, 204, 0.22);
  border-color: #0088cc;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(0, 136, 204, 0.55);
}

.cyber-social-card.youtube:hover {
  background: rgba(255, 0, 0, 0.15);
  border-color: #ff0033;
  color: #ff4d4d;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.cyber-social-card.discord:hover {
  background: rgba(88, 101, 242, 0.15);
  border-color: #5865f2;
  color: #818cf8;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

.cyber-social-card.twitter:hover {
  background: rgba(29, 161, 242, 0.15);
  border-color: #1da1f2;
  color: #7dd3fc;
  box-shadow: 0 0 20px rgba(29, 161, 242, 0.4);
}

.cyber-social-card.github:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border-glass);
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   Mobile Menu Toggle & Navigation Drawer
   ========================================================================== */
.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mobile-menu-btn:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

/* Mobile Navigation Drawer Overlay */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: min(300px, 85vw);
  height: 100vh;
  background: linear-gradient(180deg, #090e24 0%, #040714 100%);
  border-left: 1px solid var(--border-bright);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 242, 254, 0.2);
  z-index: 2500;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 7, 20, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mobile-drawer-close:hover {
  color: var(--neon-pink);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-item a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item.active a {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--border-bright);
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

/* ==========================================================================
   Ultra-Responsive Adaptive Breakpoints (PC Split-Screen, Tablets, iPhones)
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: inline-flex;
  }
  .apk-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .cyber-hero-centered {
    padding: 50px 0 40px;
  }
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .hero-subtitle {
    font-size: 0.98rem;
    margin-bottom: 24px;
  }
  .hero-search-upgraded {
    border-radius: 30px;
    padding: 6px 8px 6px 16px;
  }
  .search-submit-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .apk-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }
  .app-hero-card {
    padding: 24px;
  }
  .app-hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .app-hero-icon {
    width: 100px;
    height: 100px;
  }
  .app-hero-badges {
    justify-content: center;
  }
  .app-hero-specs {
    justify-content: center;
    gap: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .search-text-desktop {
    display: none;
  }
  .search-trigger-btn {
    padding: 8px 12px;
  }
  .brand-logo {
    font-size: 1.3rem;
  }
  .brand-icon-box {
    width: 38px;
    height: 38px;
  }
  .hero-search-form {
    gap: 8px;
  }
  .hero-search-input {
    font-size: 0.92rem;
    padding: 8px 0;
  }
  .search-submit-btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  .search-submit-btn span {
    display: none;
  }
  .apk-grid {
    grid-template-columns: 1fr;
  }
  .card-top {
    gap: 12px;
  }
  .card-app-icon {
    width: 56px;
    height: 56px;
  }
  .cyber-social-card {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .download-hub-card {
    padding: 24px 16px;
  }
  .timer-circle-wrap {
    width: 130px;
    height: 130px;
  }
  .timer-number-display {
    font-size: 2.2rem;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .card-actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   Cyber Authentication & User Profile Styling
   ========================================================================== */
.auth-page-container {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background: rgba(13, 19, 33, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: 0 0 50px rgba(0, 242, 254, 0.15), 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink), var(--neon-yellow));
}

.auth-header {
  text-align: center;
  margin-bottom: 28px;
}

.auth-header .auth-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--neon-cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--neon-cyan);
  box-shadow: var(--shadow-neon);
  margin-bottom: 16px;
}

.auth-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.auth-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.auth-alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-alert-danger {
  background: rgba(255, 0, 127, 0.12);
  border: 1px solid rgba(255, 0, 127, 0.4);
  color: #ff66aa;
}

.auth-alert-info {
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.4);
  color: #00f2fe;
}

.auth-alert-success {
  background: rgba(0, 245, 160, 0.12);
  border: 1px solid rgba(0, 245, 160, 0.4);
  color: #00f5a0;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.auth-form-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: #a5f3fc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-dim);
  font-size: 0.95rem;
  pointer-events: none;
  transition: color 0.25s ease;
}

.auth-input {
  width: 100%;
  background: rgba(10, 15, 26, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 12px 14px 12px 42px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  outline: none;
}

.auth-input:focus {
  border-color: var(--neon-cyan);
  background: rgba(10, 15, 26, 0.95);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
}

.auth-input:focus + .auth-input-icon,
.auth-input-wrap:focus-within .auth-input-icon {
  color: var(--neon-cyan);
}

.auth-btn-submit {
  width: 100%;
  padding: 13px;
  font-size: 0.95rem;
  margin-top: 8px;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.35);
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 24px 0 20px;
  gap: 14px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-glass);
}

.auth-divider-text {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.social-auth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.social-btn.google-btn {
  border-color: rgba(234, 67, 53, 0.4);
}

.social-btn.google-btn:hover {
  background: rgba(234, 67, 53, 0.15);
  border-color: #ea4335;
  box-shadow: 0 0 20px rgba(234, 67, 53, 0.3);
  transform: translateY(-2px);
}

.social-btn.google-btn i {
  color: #ea4335;
  font-size: 1.1rem;
}

.social-btn.apple-btn {
  border-color: rgba(255, 255, 255, 0.35);
}

.social-btn.apple-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.social-btn.apple-btn i {
  color: #fff;
  font-size: 1.15rem;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--neon-cyan);
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
  text-shadow: 0 0 8px var(--neon-cyan);
}

/* User Profile Badge in Navbar */
.user-profile-menu {
  display: flex;
  align-items: center;
}

.user-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-bright);
  padding: 4px 10px 4px 6px;
  border-radius: 30px;
}

.user-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--neon-cyan);
  background: #000;
  object-fit: cover;
}

.user-name-text {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

/* ==========================================================================
   Cyber Profile Management Page Styling
   ========================================================================== */
.profile-page-container {
  min-height: calc(100vh - 200px);
  padding: 40px 20px 80px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.profile-card {
  width: 100%;
  max-width: 640px;
  background: rgba(13, 19, 33, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 0 50px rgba(0, 242, 254, 0.12), 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-cyan), #a855f7, var(--neon-pink));
}

.profile-avatar-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.profile-avatar-box {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.35);
  margin-bottom: 14px;
}

.profile-avatar-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  display: block;
}

.profile-avatar-edit-label {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
  transition: all 0.25s ease;
}

.profile-avatar-edit-label:hover {
  background: var(--neon-cyan);
  color: #000;
  transform: scale(1.1);
}

.avatar-presets-wrap {
  margin: 16px 0 24px;
  text-align: center;
}

.avatar-presets-title {
  font-size: 0.78rem;
  font-family: var(--font-heading);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.avatar-presets-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.preset-avatar-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-glass);
  background: rgba(0,0,0,0.5);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 2px;
}

.preset-avatar-btn:hover,
.preset-avatar-btn.selected {
  border-color: var(--neon-cyan);
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
}

.preset-avatar-btn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-field-disabled {
  background: rgba(0, 0, 0, 0.4) !important;
  color: #94a3b8 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  cursor: not-allowed;
}

.profile-logout-box {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}


