* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --bg: #f8fafc;
  --bg-gradient: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 50%, #f0f9ff 100%);
  --surface: #ffffff;
  --surface-gradient: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --danger: #ef4444;
  --radius: 16px;
  --radius-lg: 20px;
  --shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
  --shadow-lg: 0 4px 20px rgba(99, 102, 241, 0.12);
  --shadow-xl: 0 8px 32px rgba(99, 102, 241, 0.16);
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

html, body {
  height: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-gradient);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.08);
}

.header__content {
  max-width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__title {
  font-size: 20px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.3px;
}

.header__btn {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s;
}

.header__btn:active {
  background: rgba(99, 102, 241, 0.15);
  transform: scale(0.95);
}

/* Main */
.main {
  flex: 1;
  padding: 20px 16px;
  max-width: 100%;
}

.view {
  display: block;
}

.view.is-hidden {
  display: none;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 48px 20px 40px;
  margin-bottom: 40px;
  background: var(--surface-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.hero-section::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 60px 40px 48px;
    margin-bottom: 40px;
  }
  
  .hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
}

/* Step */
.step {
  background: var(--surface-gradient);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(99, 102, 241, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.step__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.step__number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  position: relative;
}

.step__number::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.2;
  z-index: -1;
}

.step__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

/* IP Types */
.ip-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.ip-type {
  background: var(--surface-gradient);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ip-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.5s;
}

.ip-type:hover::before {
  left: 100%;
}

.ip-type:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.ip-type.is-active {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.ip-type__icon {
  font-size: 40px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.ip-type:hover .ip-type__icon {
  transform: scale(1.1);
}

.ip-type.is-active .ip-type__icon {
  transform: scale(1.15);
}

.ip-type__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.ip-type__price {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 700;
  margin-top: 6px;
}

.ip-type-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* Country/City Selector */
.country-selector,
.city-selector {
  margin-bottom: 0;
}

.country-btn,
.city-btn {
  width: 100%;
  background: var(--surface-gradient);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.country-btn::before,
.city-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  transition: left 0.5s;
}

.country-btn:hover::before,
.city-btn:hover::before {
  left: 100%;
}

.country-btn:hover,
.city-btn:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

.arrow {
  font-size: 22px;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.country-btn:hover .arrow,
.city-btn:hover .arrow {
  transform: translateX(4px);
}

/* Modal */
.country-modal,
.city-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  z-index: 1000;
  display: none;
  flex-direction: column;
  animation: slideUp 0.3s ease;
}

.country-modal.is-open,
.city-modal.is-open {
  display: flex;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.modal__header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.modal__close {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__search {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.search-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  background: var(--bg);
}

.modal__list {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px;
}

.modal-item {
  padding: 16px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-item:hover {
  background: var(--bg);
}

.modal-item.is-active {
  background: rgba(99, 102, 241, 0.1);
}

.modal-item__flag {
  font-size: 24px;
  flex-shrink: 0;
}

.modal-item__name {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.modal-item__code {
  font-size: 14px;
  color: var(--text-light);
}

/* Config */
.config-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.config-item {
  flex: 1;
}

.config-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
}

.qty-control {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-btn {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:active {
  background: var(--bg);
}

.qty-input {
  flex: 1;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  outline: none;
}

.duration-buttons {
  display: flex;
  gap: 8px;
}

.duration-btn {
  flex: 1;
  padding: 14px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}

.duration-btn:hover {
  border-color: var(--primary);
}

.duration-btn.is-active {
  background: var(--gradient-primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Page Title */
.page-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

/* Order Info */
.order-info-card {
  background: var(--surface-gradient);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(99, 102, 241, 0.1);
  position: relative;
}

.order-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
}

.info-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

/* Payment */
.payment-section {
  background: var(--surface-gradient);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.payment-method {
  background: var(--surface-gradient);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.payment-method::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.payment-method:hover::before {
  left: 100%;
}

.payment-method:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.payment-method.is-active {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.payment-method__icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.payment-method__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* Amount */
.amount-section {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.08));
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 24px;
  border: 2px solid rgba(99, 102, 241, 0.2);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.amount-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.amount-label {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
  font-weight: 600;
}

.amount-value {
  font-size: 40px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}

.amount-currency {
  font-size: 24px;
  margin-right: 4px;
}

.amount-note {
  font-size: 13px;
  color: var(--text-light);
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-btn {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.action-btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

.action-btn--primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.action-btn--primary:active::before {
  width: 300px;
  height: 300px;
}

.action-btn--primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.action-btn--secondary {
  background: var(--surface);
  color: var(--text);
  border: 2px solid var(--border);
}

.action-btn--secondary:active {
  background: var(--bg);
}

.action-btn--danger {
  background: var(--danger);
  color: white;
}

.action-btn--danger:active {
  background: #dc2626;
  transform: scale(0.98);
}

/* Success */
.success-header {
  text-align: center;
  margin-bottom: 32px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
  position: relative;
}

.success-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--success);
  opacity: 0.2;
  z-index: -1;
}

.success-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.success-order {
  font-size: 14px;
  color: var(--text-light);
}

/* Credentials */
.credentials-list {
  background: var(--surface-gradient);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.cred-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cred-item:last-child {
  border-bottom: none;
}

.cred-label {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 600;
}

.cred-value-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cred-value {
  flex: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  word-break: break-all;
}

.copy-btn {
  padding: 10px 18px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.copy-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.copy-btn:active::before {
  width: 200px;
  height: 200px;
}

.copy-btn:active {
  background: rgba(99, 102, 241, 0.15);
  transform: scale(0.95);
}

/* Template */
.template-section {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
  box-shadow: var(--shadow);
}

.template-summary {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 12px;
}

.template-content {
  background: var(--bg);
  border-radius: 8px;
  padding: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
}

/* Orders */
.orders-list {
  margin-bottom: 24px;
}

.order-item {
  background: var(--surface-gradient);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: all 0.3s ease;
}

.order-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.order-item__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.order-item__sub {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.order-item__actions {
  display: flex;
  gap: 12px;
}

.order-item__actions .action-btn {
  flex: 1;
  padding: 12px;
  font-size: 14px;
}

/* Bottom Bar */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(99, 102, 241, 0.1);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(99, 102, 241, 0.1);
  z-index: 100;
}

.bottom-bar__summary {
  margin-bottom: 12px;
}

.summary-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.bottom-bar__action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-display {
  flex: 1;
  text-align: right;
}

.price-currency {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 600;
}

.price-amount {
  font-size: 26px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.buy-btn {
  padding: 16px 36px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.buy-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.buy-btn:active::before {
  width: 300px;
  height: 300px;
}

.buy-btn:active {
  transform: scale(0.96);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1000;
  display: none;
  animation: fadeIn 0.3s;
}

.toast.is-show {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
  font-size: 14px;
}
