:root {
  --font-primary: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    sans-serif;

  /* iOS 26 Variables */
  --bg-deep: #000000;
  --glass-surface: rgba(28, 28, 30, 0.4);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-highlight: rgba(255, 255, 255, 0.07);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(235, 235, 245, 0.6);
  --text-tertiary: rgba(235, 235, 245, 0.3);

  /* Accents */
  --accent-blue: #0a84ff;
  --accent-cyan: #30d158;
  --accent-purple: #5e5ce6;
  --accent-orange: #ff9f0a;
  --spotify-green: #1db954;

  /* Shapes */
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --nav-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-primary);
  overflow-x: hidden;
  /* REMOVED global padding-bottom for desktop alignment */
}

html {
  scroll-behavior: smooth;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Ambient Light */
.ambient-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(94, 92, 230, 0.15),
      transparent 40%
    ),
    radial-gradient(circle at 85% 80%, rgba(48, 209, 88, 0.1), transparent 40%);
  z-index: -2;
  pointer-events: none;
}
.noise-overlay {
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

/* Mixins */
.glass-morphism {
  background: var(--glass-surface);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
}

.glass-tilt {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.01)
  );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: transform 0.15s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.glass-tilt:active {
  transform: scale(0.98) !important;
}

/* =================== 
   Responsive Navigation Dock
   =================== */
.dock-nav {
  position: fixed;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
  padding: 1rem;
}

.dock-container {
  pointer-events: auto;
  display: flex;
  align-items: center;
  background: rgba(22, 22, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  gap: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.dock-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}
.dock-item a {
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.dock-item a svg {
  width: 20px;
  height: 20px;
}
.dock-item.active a {
  color: white;
  background: var(--accent-blue);
  box-shadow: 0 0 12px rgba(10, 132, 255, 0.5);
}

/* Desktop: Top Position */
@media (min-width: 769px) {
  .dock-nav {
    top: 1rem;
    bottom: auto;
  }
  .dock-logo {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
  .dock-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
  }
}

/* Mobile: Bottom Position (iOS Style) */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(
      var(--nav-height) + env(safe-area-inset-bottom) + 20px
    );
  }

  .dock-nav {
    top: auto;
    bottom: 0;
    padding-bottom: env(safe-area-inset-bottom);
    background: linear-gradient(to top, black 0%, transparent 100%);
  }
  .dock-container {
    width: 100%;
    max-width: 400px;
    justify-content: space-between;
    backdrop-filter: blur(40px);
    border-radius: 24px;
  }
  .dock-logo,
  .dock-divider {
    display: none;
  }
  .dock-links {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
}

/* ===================
   Hero & Spotify Widget 
   =================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  padding-bottom: 100px;
}
.hero-container {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.memoji-container {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}
.memoji {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.liquid-text {
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  background: linear-gradient(to bottom right, #ffffff 30%, #777 100%);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}
.glass-text {
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #eee;
  margin-bottom: 1.5rem;
}
.pulsing-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* === NEW: SPOTIFY WIDGET STYLES === */
.spotify-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border-radius: var(--radius-lg);
  background: rgba(20, 20, 20, 0.7);
  width: 100%;
  max-width: 380px;
  margin: 0 auto 2rem;
  transition: all 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}
.spotify-card.hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.spotify-art-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
#spotify-art,
.spotify-art-icon {
  width: 100%;
  height: 100%;
  display: block;
}

/* Icon fallback styling when a real album image isn't available */
.spotify-art-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  color: rgba(255,255,255,0.9);
}
.spotify-art-icon i {
  width: 34px;
  height: 34px;
}

.spotify-content {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.spotify-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #1db954;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.spotify-logo-icon {
  width: 14px;
  height: 14px;
}
/* Hide remote logo image (low-contrast) and use a styled badge instead */
.spotify-logo-icon {
  display: none;
}

.spotify-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--spotify-green);
  color: #04130a;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(29, 185, 84, 0.12);
  text-transform: none;
  letter-spacing: 0.2px;
}

/* Slightly reduce the visualizer height / increase contrast */
.eq-visualizer {
  height: 12px;
}
.eq-visualizer .bar {
  background: linear-gradient(180deg, #bdf6d3 0%, var(--spotify-green) 100%);
}
.eq-visualizer {
  display: flex;
  gap: 2px;
  height: 10px;
  align-items: flex-end;
  margin-left: auto;
}
.eq-visualizer .bar {
  width: 3px;
  background: #1db954;
  border-radius: 2px;
  animation: eqBounce 0.8s infinite ease-in-out alternate;
}
.eq-visualizer .bar:nth-child(2) {
  animation-delay: 0.2s;
  height: 60%;
}
.eq-visualizer .bar:nth-child(3) {
  animation-delay: 0.4s;
  height: 30%;
}

.spotify-track-info {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
/* Scrolling Marquee for Long Titles */
.scrolling-text-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #fff 5%,
    #fff 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #fff 5%,
    #fff 95%,
    transparent 100%
  );
}

.spotify-song {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  display: inline-block;
}
.spotify-artist {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@keyframes eqBounce {
  0% {
    height: 20%;
  }
  100% {
    height: 100%;
  }
}
/* === END SPOTIFY STYLES === */

.action-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.ios-btn {
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: transform 0.2s;
}
.primary-btn {
  background: white;
  color: black;
  padding: 0 2.5rem;
  gap: 0.5rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.secondary-btn {
  width: 54px;
  color: white;
}
.ios-btn:active {
  transform: scale(0.95);
}

/* ===================
   Standard Layout 
   =================== */
.scroll-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 1.5rem 0;
}
.section-header {
  margin-bottom: 2rem;
}
.glowing-header {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* About Widget */
.glass-panel-wide {
  padding: 2rem;
}
.panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}
.icon-square {
  width: 40px;
  height: 40px;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.about-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.about-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat-pill {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  min-width: 100px;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
}
.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.3rem;
}
@media (max-width: 768px) {
  .about-content-grid {
    grid-template-columns: 1fr;
  }
}

/* Project Cards */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.ios-card {
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  min-height: 400px;
  cursor: pointer;
}
.ios-card:hover .visual-icon {
  transform: scale(1.1);
}
.card-visual {
  height: 180px;
  width: 100%;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.gradient-1 {
  background: linear-gradient(135deg, #3b82f6, #9333ea);
}
.gradient-2 {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}
.gradient-3 {
  background: linear-gradient(135deg, #ef4444, #f97316);
}
.gradient-4 {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.visual-icon {
  width: 50px;
  height: 50px;
  color: white;
  transition: transform 0.3s;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}
.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.app-badge {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 2px 8px;
  border-radius: 6px;
}
.app-badge.dev {
  background: rgba(255, 59, 48, 0.2);
  color: #ff453a;
}
.app-badge.job {
  background: rgba(48, 209, 88, 0.2);
  color: #30d158;
}
.ios-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.ios-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.card-action {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

/* Skills & Stats */
.glass-container.wide {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.slider-group {
  margin-bottom: 2rem;
}
.slider-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.icon-box {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-box svg {
  width: 16px;
  height: 16px;
}
.slider-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 0.95rem;
}
.pct {
  color: var(--text-tertiary);
}
.ios-slider-track {
  height: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}
.ios-slider-fill {
  height: 100%;
  background: white;
  border-radius: 10px;
}

/* Education Card */
.notification-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  align-items: flex-start;
}
.notif-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: linear-gradient(#333, #111);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.notif-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}
.notif-app-name {
  font-weight: 700;
  font-size: 0.9rem;
}
.notif-time {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}
.notif-details {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}
.mini-list {
  list-style: none;
}
.mini-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}
.mini-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
}
.ios-small-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  font-size: 0.8rem;
}
@media (max-width: 600px) {
  .notification-card {
    flex-direction: column;
    gap: 1rem;
  }
  .notif-icon {
    width: 50px;
    height: 50px;
  }
}

/* Contact & Form */
.glass-panel-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.panel-form-side {
  padding: 2rem;
  border-right: 1px solid var(--glass-border);
}
.glass-input {
  width: 100%;
  display: block;
  padding: 16px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  border-radius: 12px;
  color: white;
  margin-bottom: 1rem;
  font-family: inherit;
}
.glass-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-blue);
}
.glass-input.area {
  min-height: 120px;
  resize: none;
}
.ios-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent-blue);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
}
.panel-social-side {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.social-tile {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: white;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}
.social-tile.large {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
}
.tiny-id {
  display: block;
  font-size: 0.7rem;
  color: var(--text-tertiary);
}
@media (max-width: 768px) {
  .glass-panel-split {
    grid-template-columns: 1fr;
  }
  .panel-form-side {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
  .social-tile.large {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }
}

/* Modal Sheet */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(0px);
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-overlay.active {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  visibility: visible;
  opacity: 1;
}
.modal-sheet {
  width: 100%;
  max-width: 650px;
  max-height: 85vh;
  background: rgba(20, 20, 22, 0.95);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.modal-overlay.active .modal-sheet {
  transform: scale(1) translateY(0);
}
.modal-header {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}
.close-modal-btn {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  color: #888;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.close-modal-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}
.modal-scroll-content {
  padding: 2.5rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}
.modal-top {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}
.modal-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.modal-titles h2 {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}
.modal-titles p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.modal-buttons a {
  display: inline-block;
  text-decoration: none;
  background: var(--accent-blue);
  color: white;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.modal-buttons span {
  font-size: 0.9rem;
  color: #666;
  border: 1px solid #444;
  padding: 6px 12px;
  border-radius: 20px;
}
.modal-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 -2.5rem 2rem;
  width: calc(100% + 5rem);
}
.modal-section {
  margin-bottom: 2rem;
}
.modal-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.modal-desc-text {
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 1rem;
}
.modal-desc-text p {
  margin-bottom: 1rem;
}
/* Fixed spacing for Modal Tech Stacks */
.stack-row.wrapped {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.tech-tag {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.tech-tag i {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}
@media (max-width: 600px) {
  .modal-overlay {
    align-items: flex-end;
  }
  .modal-sheet {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    width: 100%;
    max-width: 100%;
    height: 85vh;
    transform: translateY(100%);
  }
  .modal-overlay.active .modal-sheet {
    transform: translateY(0);
  }
  .modal-top {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .modal-scroll-content {
    padding: 1.5rem;
  }
  .modal-divider {
    margin: 0 -1.5rem 1.5rem;
    width: calc(100% + 3rem);
  }
}
.glass-footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: var(--text-tertiary);
  border-top: 1px solid var(--glass-border);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
