*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #38527a;
  color: #e6edf3;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(24,90,189,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(22, 81, 168, 0.699) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeSlideDown  { from { opacity:0; transform:translateY(-30px) } to { opacity:1; transform:translateY(0) } }
@keyframes avatarPop      { 0%{transform:scale(0);opacity:0} 70%{transform:scale(1.2)} 100%{transform:scale(1);opacity:1} }
@keyframes avatarFloat    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes rowSlideIn     { from{opacity:0;transform:translateX(-40px)} to{opacity:1;transform:translateX(0)} }
@keyframes badgePulse     { 0%,100%{box-shadow:0 0 0 0 rgba(88,166,255,.4)} 50%{box-shadow:0 0 0 8px rgba(88,166,255,0)} }
@keyframes shimmer        { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes fadeUp         { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes popIn          { from{opacity:0;transform:scale(.7)} to{opacity:1;transform:scale(1)} }
@keyframes emojiSpin      { 0%{transform:rotateY(0deg)} 100%{transform:rotateY(360deg)} }
@keyframes btnShimmer     { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes pulseGlow      {
  0%,100% { box-shadow: 0 6px 20px var(--glow), 0 2px 0 var(--dark), inset 0 1px 0 rgba(255,255,255,.25) }
  50%     { box-shadow: 0 10px 32px var(--glow), 0 2px 0 var(--dark), inset 0 1px 0 rgba(255,255,255,.25) }
}
@keyframes borderGlow     {
  0%,100% { border-color: rgba(88,166,255,.1) }
  50%     { border-color: rgba(88,166,255,.35) }
}
@keyframes cardIn         { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: relative;
  background: linear-gradient(135deg, #0a2a6e 0%, #185ABD 50%, #1e7fdf 100%);
  padding: 60px 20px 50px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
header::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.header-icon {
  font-size: 56px;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}
header h1 {
  font-size: 2.4em;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
header p {
  margin-top: 10px;
  font-size: 1.1em;
  opacity: .85;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  background: rgba(15,74,161,.95);
  backdrop-filter: blur(10px);
  text-align: center;
  position: sticky; top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
nav a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  padding: 14px 18px;
  font-weight: 600;
  font-size: .9em;
  display: inline-block;
  transition: color .2s, background .2s;
  letter-spacing: .5px;
}
nav a:hover { color: white; background: rgba(255,255,255,.1); }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: linear-gradient(145deg, #161b22, #1c2230);
  border: 1px solid rgba(88,166,255,.1);
  border-left: 3px solid rgba(88,166,255,.15);
  padding: 28px;
  margin: 20px 0;
  border-radius: 20px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,.07) inset,
    0 8px 0 rgba(0,0,0,.2),
    0 12px 40px rgba(0,0,0,.3);
  transition: transform .25s ease, box-shadow .25s ease, border-left-color .3s;
  animation: cardIn .5s ease both;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, transparent 50%);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-5px);
  border-left-color: rgba(88,166,255,.6);
  box-shadow:
    0 1px 0 rgba(255,255,255,.09) inset,
    0 12px 0 rgba(0,0,0,.15),
    0 24px 60px rgba(0,0,0,.4),
    0 0 40px rgba(88,166,255,.07);
}
/* staggered card entrance */
.card:nth-of-type(1) { animation-delay: .05s }
.card:nth-of-type(2) { animation-delay: .12s }
.card:nth-of-type(3) { animation-delay: .19s }
.card:nth-of-type(4) { animation-delay: .26s }
.card:nth-of-type(5) { animation-delay: .33s }

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.card-title { font-size: 1.35em; font-weight: 700; color: #58a6ff; }
h2 { color: #58a6ff; font-size: 1.3em; font-weight: 700; margin-bottom: 16px; }

/* ============================================================
   HERO CARD
   ============================================================ */
.hero {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(145deg, #0f1b35, #162040);
  border: 1px solid rgba(88,166,255,.2);
  animation: cardIn .5s ease both, borderGlow 5s ease-in-out 2s infinite;
}
.hero h2  { font-size: 1.8em; color: #79c0ff; margin-bottom: 12px; }
.hero p   { font-size: 1.05em; color: #8b949e; max-width: 600px; margin: 0 auto 24px; line-height: 1.7; }

/* ============================================================
   BIODATA
   ============================================================ */
#biodata { animation: fadeSlideDown .6s ease both; }
.biodata { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.bio-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #185ABD, #1e7fdf);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border: 3px solid rgba(88,166,255,.5);
  box-shadow: 0 6px 24px rgba(24,90,189,.5);
  animation: avatarPop .6s cubic-bezier(.175,.885,.32,1.275) .2s both,
             avatarFloat 3s ease-in-out 1s infinite;
}
.bio-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.bio-avatar-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.55);
  color: white; font-size: 10px;
  text-align: center; padding: 5px 0;
  opacity: 0; transition: opacity .2s;
  border-radius: 0 0 50px 50px;
}
.bio-avatar:hover .bio-avatar-overlay { opacity: 1; }
#avatarInput { display: none; }
.bio-info table { border-collapse: collapse; width: 100%; }
.bio-info td   { padding: 7px 12px; font-size: 15px; color: #c9d1d9; }
.bio-info td:first-child { font-weight: 700; color: #58a6ff; white-space: nowrap; }
.bio-info tr:nth-child(1) { animation: rowSlideIn .5s ease .4s  both; }
.bio-info tr:nth-child(2) { animation: rowSlideIn .5s ease .55s both; }
.bio-info tr:nth-child(3) { animation: rowSlideIn .5s ease .7s  both; }
.bio-info tr:nth-child(4) { animation: rowSlideIn .5s ease .85s both; }
.bio-badge {
  display: inline-block;
  background: linear-gradient(90deg, rgba(24,90,189,.3), rgba(30,127,223,.3));
  background-size: 200% auto;
  border: 1px solid rgba(88,166,255,.3);
  color: #79c0ff;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  animation: badgePulse 2s ease-in-out 1.2s infinite,
             shimmer 2.5s linear 1.2s infinite;
}

/* ============================================================
   TABS
   ============================================================ */
.tab-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.tab-btn {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #8b949e;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .85em;
  font-weight: 600;
  transition: all .2s;
}
.tab-btn.active {
  background: linear-gradient(135deg, #185ABD, #1e7fdf);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 12px rgba(24,90,189,.35);
}
.tab-content        { display: none; }
.tab-content.active { display: block; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #185ABD, transparent);
}
.tl-item {
  position: relative;
  margin-bottom: 24px;
  transition: padding-left .2s;
}
.tl-item::before {
  content: '';
  position: absolute; left: -24px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #185ABD;
  border: 2px solid #58a6ff;
  box-shadow: 0 0 8px rgba(88,166,255,.5);
  transition: background .2s, box-shadow .2s;
}
.tl-item:hover { padding-left: 4px; }
.tl-item:hover::before {
  background: #79c0ff;
  box-shadow: 0 0 14px 4px rgba(88,166,255,.5);
}
.tl-year { font-size: .8em; color: #58a6ff; font-weight: 700; margin-bottom: 3px; }
.tl-text { color: #c9d1d9; font-size: .95em; line-height: 1.6; }

/* ============================================================
   FEATURE GRID
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.feature-item {
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 0 rgba(0,0,0,.25), 0 6px 16px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.feature-item::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(160deg, rgba(88,166,255,.08) 0%, transparent 60%);
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.feature-item:hover {
  background: rgba(88,166,255,.07);
  border-color: rgba(88,166,255,.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 0 rgba(0,0,0,.2), 0 16px 28px rgba(0,0,0,.3), 0 0 20px rgba(88,166,255,.1);
}
.feature-item:hover::after { opacity: 1; }

/* stagger animations */
.feature-item:nth-child(1)  { --d:.05s } .feature-item:nth-child(2)  { --d:.1s  }
.feature-item:nth-child(3)  { --d:.15s } .feature-item:nth-child(4)  { --d:.2s  }
.feature-item:nth-child(5)  { --d:.25s } .feature-item:nth-child(6)  { --d:.3s  }
.feature-item:nth-child(7)  { --d:.35s } .feature-item:nth-child(8)  { --d:.4s  }
.feature-item:nth-child(9)  { --d:.45s } .feature-item:nth-child(10) { --d:.5s  }
.feature-item:nth-child(11) { --d:.55s } .feature-item:nth-child(12) { --d:.6s  }
.feature-item.visible { animation: fadeUp .5s ease var(--d, .05s) both; }
.feature-item.visible .feature-emoji { animation: popIn .4s cubic-bezier(.175,.885,.32,1.4) .2s both; }
.feature-item.visible:hover .feature-emoji { animation: emojiSpin .6s ease; }

.feature-emoji { font-size: 28px; margin-bottom: 8px; display: block; }
.feature-title { font-weight: 700; color: #e6edf3; font-size: .95em; margin-bottom: 5px; }
.feature-desc  { color: #8b949e; font-size: .82em; line-height: 1.5; }

/* ============================================================
   INFO BOX
   ============================================================ */
.info-box {
  background: rgba(88,166,255,.08);
  border: 1px solid rgba(88,166,255,.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 14px 0;
}
.info-box p      { color: #c9d1d9; line-height: 1.7; font-size: .95em; }
.info-box strong { color: #79c0ff; }

/* ============================================================
   STAT CARDS
   ============================================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px; margin: 16px 0;
}
.stat-card {
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid rgba(88,166,255,.2);
  border-radius: 14px;
  padding: 18px; text-align: center;
  box-shadow: 0 4px 0 rgba(0,0,0,.3), 0 8px 20px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .2s, box-shadow .2s, border-top-color .3s;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-top-color: rgba(88,166,255,.65);
  box-shadow: 0 8px 0 rgba(0,0,0,.2), 0 16px 32px rgba(0,0,0,.3);
}
.stat-num   { font-size: 1.8em; font-weight: 800; color: #58a6ff; display: block; }
.stat-label { font-size: .78em; color: #8b949e; margin-top: 4px; }

/* ============================================================
   VERSION TABLE
   ============================================================ */
.ver-table { width: 100%; border-collapse: collapse; font-size: .9em; }
.ver-table th { background: rgba(24,90,189,.3); color: #79c0ff; padding: 10px 14px; text-align: left; font-weight: 700; }
.ver-table td { padding: 9px 14px; border-bottom: 1px solid rgba(255,255,255,.06); color: #c9d1d9; }
.ver-table tr:hover td { background: rgba(255,255,255,.03); }

/* ============================================================
   MANFAAT GRID
   ============================================================ */
.manfaat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.manfaat-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: linear-gradient(145deg, rgba(248, 80, 234, 0.082), rgba(255, 255, 255, 0));
  border: 1px solid rgba(208, 12, 226, 0.034);
  border-radius: 12px; padding: 16px;
  position: relative; overflow: hidden;
  box-shadow: 0 3px 0 rgba(0,0,0,.25), 0 6px 16px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .2s, box-shadow .2s;
}
.manfaat-item::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(160deg, rgba(88, 166, 255, 0.815) 0%, transparent 60%);
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.manfaat-item:hover { transform: translateY(-3px); box-shadow: 0 7px 0 rgba(0,0,0,.2), 0 14px 24px rgba(0,0,0,.25); }
.manfaat-item:hover::after { opacity: 1; }

.manfaat-item:nth-child(1) { --dm:.05s } .manfaat-item:nth-child(2) { --dm:.1s  }
.manfaat-item:nth-child(3) { --dm:.15s } .manfaat-item:nth-child(4) { --dm:.2s  }
.manfaat-item:nth-child(5) { --dm:.25s } .manfaat-item:nth-child(6) { --dm:.3s  }
.manfaat-item:nth-child(7) { --dm:.35s } .manfaat-item:nth-child(8) { --dm:.4s  }
.manfaat-item.visible { animation: fadeUp .5s ease var(--dm, .05s) both; }

.manfaat-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.manfaat-text strong { display: block; color: #e6edf3; font-size: .93em; margin-bottom: 3px; }
.manfaat-text span   { color: #8b949e; font-size: .82em; line-height: 1.5; }

/* ============================================================
   NAV BUTTONS (Company / E-Commerce / Portofolio)
   ============================================================ */
.nav-buttons {
  display: flex; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin: 24px 0;
}
.btn-nav {
  --glow: rgba(24,90,189,.5);
  --dark: #0e3a8c;
  display: inline-flex; align-items: center; gap: 10px;
  color: white; text-decoration: none;
  padding: 13px 28px; border-radius: 50px;
  font-size: .95em; font-weight: 800; letter-spacing: .5px;
  position: relative; overflow: hidden;
  box-shadow: 0 6px 20px var(--glow), 0 2px 0 var(--dark), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .15s ease, box-shadow .15s ease;
  animation: pulseGlow 3s ease-in-out infinite;
}
.btn-nav::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.28) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: btnShimmer 3s linear infinite;
  pointer-events: none;
}
.btn-nav:hover  { transform: translateY(-4px) scale(1.04); animation: none; box-shadow: 0 14px 36px var(--glow), 0 2px 0 var(--dark), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-nav:active { transform: translateY(1px) scale(.98); }

/* ============================================================
   SOSMED BUTTONS
   ============================================================ */
.sosmed-buttons {
  display: flex; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 8px;
}
.btn-sosmed {
  display: inline-flex; align-items: center; gap: 9px;
  color: white; text-decoration: none;
  padding: 12px 22px; border-radius: 50px;
  font-size: .9em; font-weight: 700; letter-spacing: .3px;
  position: relative; overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s;
}
.btn-sosmed::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.25) 50%, transparent 65%);
  background-size: 200% 100%;
  animation: btnShimmer 2.5s linear infinite;
  pointer-events: none;
}
.btn-sosmed:hover  { transform: translateY(-4px) scale(1.05); filter: brightness(1.12); }
.btn-sosmed:active { transform: translateY(1px) scale(.97); }

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 6px 20px rgba(37,211,102,.45), 0 2px 0 #0a5c3e, inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-wa:hover { box-shadow: 0 12px 32px rgba(37,211,102,.6), 0 2px 0 #0a5c3e; }
.btn-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 6px 20px rgba(220,39,67,.45), 0 2px 0 #7a0a3a, inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-ig:hover { box-shadow: 0 12px 32px rgba(220,39,67,.6), 0 2px 0 #7a0a3a; }
.btn-gmail {
  background: linear-gradient(135deg, #EA4335, #c5221f);
  box-shadow: 0 6px 20px rgba(234,67,53,.45), 0 2px 0 #7c0e08, inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-gmail:hover { box-shadow: 0 12px 32px rgba(234,67,53,.6), 0 2px 0 #7c0e08; }
.btn-yt {
  background: linear-gradient(135deg, #FF0000, #cc0000);
  box-shadow: 0 6px 20px rgba(255,0,0,.4), 0 2px 0 #7a0000, inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-yt:hover { box-shadow: 0 12px 32px rgba(255,0,0,.55), 0 2px 0 #7a0000; }
.btn-tt {
  background: linear-gradient(135deg, #010101, #1a1a2e);
  border: 1px solid rgba(105,201,208,.3);
  box-shadow: 0 6px 20px rgba(105,201,208,.3), 0 2px 0 #000, inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-tt:hover { box-shadow: 0 12px 32px rgba(105,201,208,.45), 0 2px 0 #000; }

/* ============================================================
   HERO BUTTON
   ============================================================ */
.btn-hero {
  background: linear-gradient(135deg, #185ABD, #1e7fdf);
  color: white; border: none;
  padding: 14px 36px; border-radius: 50px;
  cursor: pointer; font-size: 1em; font-weight: 800; letter-spacing: .5px;
  position: relative; overflow: hidden;
  box-shadow: 0 6px 24px rgba(24,90,189,.5), 0 2px 0 #0e3a8c, inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-hero::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.28) 50%, transparent 65%);
  background-size: 200% 100%;
  animation: btnShimmer 2.5s linear infinite;
  pointer-events: none;
}
.btn-hero:hover  { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 36px rgba(24,90,189,.6), 0 2px 0 #0e3a8c; }
.btn-hero:active { transform: translateY(1px) scale(.97); }

/* ============================================================
   EDIT MODAL (hidden dari user — hanya fungsional di kode)
   ============================================================ */
.edit-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 999;
  align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.edit-overlay.show { display: flex; }
.edit-box {
  background: #161b22;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 28px;
  width: 90%; max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.edit-box h3     { margin: 0 0 20px; font-size: 1.1em; }
.edit-field      { margin-bottom: 14px; }
.edit-field label {
  display: block; font-size: 12px; font-weight: 700;
  color: #8b949e; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .5px;
}
.edit-field input {
  width: 100%; padding: 10px 14px;
  background: #315080;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px; font-size: 14px; color: #e6edf3;
  transition: border .2s;
}
.edit-field input:focus { outline: none; border-color: #58a6ff; }
.edit-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }
.btn-save {
  background: linear-gradient(135deg, #185ABD, #1e7fdf);
  color: white; border: none; padding: 10px 24px;
  border-radius: 8px; cursor: pointer; font-weight: 700; font-size: .9em;
}
.btn-cancel {
  background: rgba(255,255,255,.08); color: #c9d1d9;
  border: 1px solid rgba(255,255,255,.1);
  padding: 10px 24px; border-radius: 8px; cursor: pointer; font-size: .9em;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: linear-gradient(135deg, #0a2a6e, #185ABD);
  color: white; text-align: center;
  padding: 24px; margin-top: 20px;
  position: relative; z-index: 1;
}
footer p { opacity: .8; font-size: .9em; margin-top: 6px; }
