/* ==========================================
   2026 GLOBAL UTILITIES & EXTRA STYLES
   ========================================== */

/* Global helpers */
.accent {
  color: var(--accent);
}

.accent-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Section Headings */
.section-title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: var(--fs-base);
  margin-bottom: var(--space-8);
  max-width: 620px;
  line-height: 1.7;
}

/* App Container */
#app {
  min-height: calc(100vh - 80px);
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

#app.is-home {
  padding-top: 0;
}

/* Footer Layout */
.footer {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: var(--fs-xs);
  position: relative;
  z-index: 1;
  background: rgba(7, 10, 15, 0.6);
  backdrop-filter: blur(12px);
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Selection Color */
::selection {
  background-color: rgba(45, 212, 191, 0.25);
  color: #FFFFFF;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(45, 212, 191, 0.4);
}
