/* ========================================
   🎨 ENHANCED ATMOSPHERIC DESIGN SYSTEM
   ======================================== */

/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0a0e1a;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0, 127, 233, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 50%, #0f1729 100%);
  background-attachment: fixed;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  min-height: 100vh;
  padding: 20px;
  overflow-x: hidden;
}

/* Animated Background Particles */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.06), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.05), transparent);
  background-size: 200px 200px, 300px 300px, 250px 250px, 350px 350px;
  background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
  animation: particleFloat 60s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes particleFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100px, -100px); }
}

.main-wrapper {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
  overflow: visible !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   💎 ENHANCED GRADIENT BORDER SYSTEM
   ======================================== */

.gradient-border {
  position: relative;
  background: linear-gradient(135deg,
    #007fe9 0%,
    #00d4ff 25%,
    #0099ff 50%,
    #00d4ff 75%,
    #007fe9 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  padding: 2px;
  border-radius: 16px;
  box-shadow:
    0 0 20px rgba(0, 127, 233, 0.2),
    0 0 40px rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.gradient-border:hover {
  box-shadow:
    0 0 30px rgba(0, 127, 233, 0.4),
    0 0 60px rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.gradient-border > div {
  background: rgba(15, 23, 41, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

/* ========================================
   ✨ ENHANCED LIGHT SWEEP ANIMATIONS
   ======================================== */

.light-sweep-blue {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 127, 233, 0.15) 30%,
    rgba(0, 212, 255, 0.25) 50%,
    rgba(0, 127, 233, 0.15) 70%,
    transparent 100%);
  animation: sweep 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes sweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ========================================
   🎯 ENHANCED HEADER
   ======================================== */

header {
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 41, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 9999;
  overflow: visible !important;
}

header img {
  filter: drop-shadow(0 0 10px rgba(0, 127, 233, 0.3));
  transition: all 0.3s ease;
}

header img:hover {
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
  transform: scale(1.05);
}

/* ========================================
   🔘 ENHANCED LANGUAGE SWITCHER
   ======================================== */

#language-switcher {
  position: relative;
  z-index: 9999 !important;
}

#language-select-toggle {
  background: linear-gradient(135deg, rgba(0, 127, 233, 0.1), rgba(0, 212, 255, 0.05));
  border: 1px solid rgba(0, 127, 233, 0.3);
  padding: 8px 16px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 127, 233, 0.1);
}

#language-select-toggle:hover {
  background: linear-gradient(135deg, rgba(0, 127, 233, 0.2), rgba(0, 212, 255, 0.1));
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 127, 233, 0.2);
  transform: translateY(-2px);
}

#language-options {
  background: rgba(15, 23, 41, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 127, 233, 0.3);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
  z-index: 9999 !important;
  position: absolute;
  right: 0;
  min-width: 180px;
}

#language-options > div {
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

#language-options > div:hover {
  background: linear-gradient(90deg, rgba(0, 127, 233, 0.15), rgba(0, 212, 255, 0.1));
  padding-left: 20px;
}

/* ========================================
   📊 ENHANCED TAB SYSTEM
   ======================================== */

.btn {
  background: transparent;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.btn:hover {
  background: rgba(0, 127, 233, 0.1);
}

.slider {
  border-radius: 10px;
  height: 3px;
  background: linear-gradient(90deg, #007fe9, #00d4ff);
  box-shadow: 0 0 15px rgba(0, 127, 233, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   🔘 ENHANCED BUTTONS
   ======================================== */

.purchase-btn {
  background: rgba(0, 127, 233, 0.05);
  border: 2px solid rgba(0, 127, 233, 0.3);
  color: white;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.purchase-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 127, 233, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.purchase-btn:hover::before {
  width: 300px;
  height: 300px;
}

.purchase-btn:hover {
  border-color: rgba(0, 212, 255, 0.6);
  background: rgba(0, 127, 233, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 127, 233, 0.3);
}

.purchase-btn.active {
  background: linear-gradient(135deg, #007fe9, #00d4ff);
  border-color: transparent;
  box-shadow:
    0 4px 15px rgba(0, 127, 233, 0.4),
    0 0 20px rgba(0, 212, 255, 0.3);
  transform: scale(1.02);
}

.purchase-energy-btn {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #007fe9 0%, #00d4ff 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 15px rgba(0, 127, 233, 0.3),
    0 0 30px rgba(0, 212, 255, 0.1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.purchase-energy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.purchase-energy-btn:hover::before {
  left: 100%;
}

.purchase-energy-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 25px rgba(0, 127, 233, 0.5),
    0 0 50px rgba(0, 212, 255, 0.3);
}

.purchase-energy-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* ========================================
   📝 ENHANCED INPUT FIELDS
   ======================================== */

input[type="text"] {
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(10px);
}

input[type="text"]:focus {
  outline: none;
  border-color: #00d4ff !important;
  box-shadow:
    0 0 0 3px rgba(0, 212, 255, 0.1),
    0 0 20px rgba(0, 127, 233, 0.2) !important;
  transform: translateY(-1px);
}

input[type="text"]:hover {
  border-color: rgba(0, 127, 233, 0.5);
}

/* ========================================
   🎛️ ENHANCED TOKEN SELECTOR
   ======================================== */

.select-currency {
  background: rgba(20, 37, 70, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.ant-select-selector {
  transition: all 0.3s ease;
}

.ant-select-selector:hover {
  transform: scale(1.05);
}

.token-item {
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 4px;
}

.token-item:hover {
  background: linear-gradient(90deg, rgba(0, 127, 233, 0.2), rgba(0, 212, 255, 0.15));
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0, 127, 233, 0.2);
}

/* ========================================
   🔄 ENHANCED SWAP BUTTON
   ======================================== */

.switch-currency-button {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 127, 233, 0.2), rgba(0, 212, 255, 0.1));
  border: 2px solid rgba(0, 127, 233, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 127, 233, 0.2);
}

.switch-currency-button:hover {
  background: linear-gradient(135deg, #007fe9, #00d4ff);
  border-color: transparent;
  transform: rotate(180deg) scale(1.1);
  box-shadow:
    0 6px 20px rgba(0, 127, 233, 0.4),
    0 0 30px rgba(0, 212, 255, 0.3);
}

.switch-currency-button:active {
  transform: rotate(180deg) scale(0.95);
}

/* ========================================
   💬 ENHANCED MESSAGE BOX
   ======================================== */

#messageBox {
  font-weight: 600;
  word-wrap: break-word;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: messageSlideIn 0.4s ease-out;
}

@keyframes messageSlideIn {
  from {
    transform: translate(-50%, -20px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

#messageBox.success {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
}

#messageBox.error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.4);
}

#messageBox.warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
}

#messageBox.info {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

/* ========================================
   🎭 ENHANCED MODAL SYSTEM
   ======================================== */

.wallet-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.wallet-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 90%;
  max-width: 520px;
  animation: modalZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalZoomIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.wallet-modal-content {
  background: rgba(15, 23, 41, 0.98);
  backdrop-filter: blur(30px);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.wallet-modal-content h2 {
  font-size: 24px;
  background: linear-gradient(135deg, #ffffff, #b0c4de);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wallet-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.wallet-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  transform: rotate(90deg);
}

.wallet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.wallet-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px;
  background: rgba(20, 37, 70, 0.5);
  border: 2px solid rgba(0, 127, 233, 0.2);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  position: relative;
  overflow: hidden;
}

.wallet-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.5s;
}

.wallet-item:hover::before {
  left: 100%;
}

.wallet-item:hover {
  background: rgba(0, 127, 233, 0.15);
  border-color: rgba(0, 212, 255, 0.6);
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 8px 24px rgba(0, 127, 233, 0.3),
    0 0 30px rgba(0, 212, 255, 0.2);
}

.wallet-item img {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(0, 127, 233, 0.3));
  transition: all 0.3s ease;
}

.wallet-item:hover img {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 8px 16px rgba(0, 212, 255, 0.5));
}

.wallet-item span {
  font-size: 13px;
  text-align: center;
  font-weight: 600;
}

/* ========================================
   ⏳ ENHANCED LOADING & PROGRESS
   ======================================== */

.confirm-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.confirm-modal.hidden {
  display: none;
}

.confirm-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.confirm-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 480px;
  animation: modalZoomIn 0.4s ease;
}

.confirm-gradient-border {
  background: linear-gradient(135deg, #007fe9 0%, #00d4ff 100%);
  padding: 2px;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0, 127, 233, 0.4);
}

.confirm-modal-content {
  background: rgba(15, 23, 41, 0.98);
  backdrop-filter: blur(30px);
  border-radius: 14px;
  padding: 32px;
}

.confirm-modal-content h2 {
  font-size: 22px;
  background: linear-gradient(135deg, #ffffff, #b0c4de);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.confirm-btn {
  flex: 1;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.confirm-btn:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.confirm-btn:active {
  transform: translateY(-1px);
}

.progress-container {
  width: 240px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #007fe9, #00d4ff, #007fe9);
  background-size: 200% 100%;
  animation: progressFlow 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

@keyframes progressFlow {
  0%, 100% {
    width: 0%;
    background-position: 0% 50%;
  }
  50% {
    width: 70%;
    background-position: 100% 50%;
  }
  75% {
    width: 90%;
  }
}

.waiting-text {
  font-size: 17px;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========================================
   ❓ ENHANCED FAQ SECTION
   ======================================== */

.faq-section {
  margin-top: 16px;
}

.faq-box {
  margin-bottom: 12px;
  background: rgba(20, 37, 70, 0.5);
  border: 1px solid rgba(0, 127, 233, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-box:hover {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(20, 37, 70, 0.7);
  box-shadow: 0 4px 12px rgba(0, 127, 233, 0.15);
}

.faq-question-wrapper {
  padding: 16px;
  transition: all 0.3s ease;
}

.faq-question {
  font-size: 15px;
  font-weight: 600;
}

.faq-arrow {
  transition: transform 0.3s ease;
  font-style: normal;
  color: #00d4ff;
}

.faq-box.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-box.active {
  border-color: rgba(0, 212, 255, 0.5);
  background: rgba(0, 127, 233, 0.1);
}

.faq-answer {
  font-size: 14px;
  line-height: 1.8;
  padding: 0 16px 16px;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   🤝 ENHANCED PARTNERS SECTION
   ======================================== */

.partners-container {
  height: 70px;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.partners-track {
  display: flex;
  animation: scroll 35s linear infinite;
  gap: 32px;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  height: 56px;
  width: 56px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(30%) drop-shadow(0 0 8px rgba(0, 127, 233, 0.2));
  transition: all 0.3s ease;
  opacity: 0.75;
}

.partner-logo:hover {
  filter: grayscale(0%) drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
  transform: scale(1.2);
  opacity: 1;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   📱 RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  body {
    padding: 12px;
  }

  .main-wrapper {
    max-width: 100%;
  }

  .wallet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .wallet-item {
    padding: 16px 10px;
  }

  .wallet-item img {
    width: 48px;
    height: 48px;
  }

  .wallet-item span {
    font-size: 12px;
  }

  header {
    padding: 12px 16px;
  }

  .purchase-energy-btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .switch-currency-button {
    width: 44px;
    height: 44px;
  }

  .partners-container {
    height: 60px;
  }

  .partner-logo {
    height: 48px;
    width: 48px;
  }
}

@media (max-width: 480px) {
  .wallet-modal-content {
    padding: 24px 20px;
  }

  .wallet-grid {
    gap: 10px;
  }

  .confirm-modal-content {
    padding: 24px 20px;
  }
}

/* ========================================
   🎭 UTILITY CLASSES
   ======================================== */

.text-orange {
  color: #f59e0b;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hidden {
  display: none !important;
}

/* ========================================
   ✨ SPECIAL EFFECTS
   ======================================== */

.glow-text {
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 127, 233, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 23, 41, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #007fe9, #00d4ff);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00d4ff, #007fe9);
}

/* Selection Color */
::selection {
  background: rgba(0, 212, 255, 0.3);
  color: white;
}

::-moz-selection {
  background: rgba(0, 212, 255, 0.3);
  color: white;
}
