:root {
  --primary: #00ff88;
  --primary-dark: #00cc6a;
  --secondary: #ff0066;
  --accent: #00ccff;
  --background: #0a0a0a;
  --surface: #0f0f0f;
  --surface-light: #151515;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --success: #00ff88;
  --warning: #ffaa00;
  --danger: #ff0066;
  --info: #00ccff;
  --border-color: rgba(255, 255, 255, 0.08);
  --glow-color: rgba(0, 255, 136, 0.4);
  --font-main: "Lexend", -apple-system, sans-serif;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-speed: 0.3s;
  --border-radius: 8px;
  --discord-color: #5865F2;
  --telegram-color: #0088cc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--background);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  letter-spacing: -0.02em;
}

::selection {
  background: var(--primary);
  color: var(--background);
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--surface);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

#three-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.7;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(0, 204, 255, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 50% 70%, rgba(255, 0, 102, 0.03) 0%, transparent 40%);
  z-index: -1;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all var(--animation-speed) var(--transition);
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-brand {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.05em;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  transition: color var(--animation-speed) var(--transition);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--animation-speed) var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.discord-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--discord-color);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: all var(--animation-speed) var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--animation-speed) var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: left var(--animation-speed) var(--transition);
  z-index: 999;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 800;
}

.section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 5%;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.hero-content {
  opacity: 0;
  transform: translateY(50px);
  animation: heroFadeIn 1s forwards 0.2s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientMove 5s ease infinite;
  position: relative;
  text-transform: uppercase;
  line-height: 0.9;
  text-shadow: 0 0 80px rgba(0, 255, 136, 0.5);
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-secondary);
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: all var(--animation-speed) var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.cta-btn:hover::before {
  left: 0;
}

.cta-btn-primary {
  background: var(--primary);
  color: var(--background);
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
}

.cta-btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary);
}

.cta-btn-secondary:hover {
  background: var(--primary);
  color: var(--background);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: mouseWheel 2s infinite;
}

@keyframes mouseWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
}

.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.access-card {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.access-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), var(--accent), var(--secondary));
  border-radius: var(--border-radius);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.access-card:hover::before {
  opacity: 0.3;
}

.access-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.access-btn {
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all var(--animation-speed) var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.access-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.access-btn:hover::after {
  width: 400px;
  height: 400px;
}

.access-btn-primary {
  background: var(--primary);
  color: var(--background);
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.access-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
}

.access-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.access-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: var(--primary);
}

.access-btn-owner {
  background: linear-gradient(135deg, var(--secondary) 0%, #cc0052 100%);
  color: white;
  box-shadow: 0 5px 20px rgba(255, 0, 102, 0.3);
}

.access-btn-owner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 0, 102, 0.4);
}

.owner-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 800;
  margin-left: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--animation-speed) var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 255, 136, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 255, 0.1) 100%);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.stat-card {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 40px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--animation-speed) var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.05em;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
}

.join-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 50px auto 0;
}

.join-btn {
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all var(--animation-speed) var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.join-discord {
  background: var(--discord-color);
  color: white;
  box-shadow: 0 5px 20px rgba(88, 101, 242, 0.3);
}

.join-discord:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
}

.join-telegram {
  background: var(--telegram-color);
  color: white;
  box-shadow: 0 5px 20px rgba(0, 136, 204, 0.3);
}

.join-telegram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 136, 204, 0.4);
}

.join-account {
  background: var(--primary);
  color: var(--background);
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.join-account:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
}

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border-color);
  padding: 30px 5%;
  text-align: center;
}

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.captcha-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity var(--animation-speed) var(--transition);
}

.captcha-overlay.active {
  display: flex;
  opacity: 1;
}

.captcha-modal {
  background: var(--surface);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 40px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  opacity: 0;
  transition: all var(--animation-speed) var(--transition);
}

.captcha-overlay.active .captcha-modal {
  transform: scale(1);
  opacity: 1;
}

.captcha-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--animation-speed) var(--transition);
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.captcha-close:hover {
  background: var(--danger);
  color: white;
  transform: rotate(90deg);
  border-color: var(--danger);
}

.captcha-header {
  text-align: center;
  margin-bottom: 30px;
}

.captcha-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.captcha-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 700;
}

#turnstile-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.captcha-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.captcha-btn {
  flex: 1;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--animation-speed) var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.captcha-btn-submit {
  background: var(--primary);
  color: var(--background);
}

.captcha-btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.captcha-btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.captcha-btn-cancel {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.captcha-btn-cancel:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: opacity 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--surface);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.toast-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 25px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  min-width: 350px;
  animation: toastSlideIn 0.4s var(--transition) forwards;
}

@keyframes toastSlideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast.hide {
  animation: toastSlideOut 0.4s var(--transition) forwards;
}

@keyframes toastSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

.toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.toast-success .toast-icon {
  background: rgba(0, 255, 136, 0.1);
  color: var(--success);
}

.toast-error .toast-icon {
  background: rgba(255, 0, 102, 0.1);
  color: var(--danger);
}

.toast-info .toast-icon {
  background: rgba(0, 204, 255, 0.1);
  color: var(--info);
}

.toast-warning .toast-icon {
  background: rgba(255, 170, 0, 0.1);
  color: var(--warning);
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 2px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.toast-message {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.toast-close {
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  transform: rotate(90deg);
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--primary);
  animation: progress 3s linear forwards;
}

.toast-success .toast-progress {
  background: var(--success);
}

.toast-error .toast-progress {
  background: var(--danger);
}

.toast-info .toast-progress {
  background: var(--info);
}

.toast-warning .toast-progress {
  background: var(--warning);
}

@keyframes progress {
  from { width: 100%; }
  to { width: 0; }
}