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

html, body {
  font-family: Arial, sans-serif;
  font-weight: 700;
  min-height: 100vh;
  overflow-y: auto;
}

body {
  background-color: #2c2c2c;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 0, 204, 0.05) 0%, transparent 20%);
  background-repeat: no-repeat;
}

nav {
  width: 100%;
  background-color: rgba(28, 28, 28, 0.95);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.nav-container {
  width: 95%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex: 1;
}

.logo i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #00ffff, #ff00cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #00ffff, #ff00cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  position: static;
  flex-direction: row;
  background: none;
  backdrop-filter: none;
  align-items: center;
  gap: 15px;
  left: 0;
  top: 100%;
  background-color: rgba(28, 28, 28, 0.95);
  padding: 0;
  width: auto;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  padding: 12px 20px;
  text-align: center;
  margin: 0 auto;
  transition: all 0.1s ease;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a:hover {
  color: #00ffff;
  background-color: rgba(0, 255, 255, 0.1);
}

.nav-links a.active {
  background: linear-gradient(135deg, #00ffff, #ff00cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: rgba(0, 255, 255, 0.15);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(135deg, #00ffff, #ff00cc);
  border-radius: 3px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
  position: relative;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: linear-gradient(135deg, #00ffff, #ff00cc);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-toggle {
  display: flex;
}
.nav-links {
  overflow: hidden;
  position: absolute;
  width: 100%;
  flex-direction: column;
  align-items: center;
  max-height: 0;
  padding: 0;
  transition: all 0.1s ease;
}
.nav-links.active {
  max-height: 400px;
  overflow-y: auto;
  padding: 20px 0;
  scrollbar-width: none;
}

h2 {
  color: #fff;
  margin: 0 20px 20px 20px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 12px;
  font-size: clamp(16px, 5vw, 31px);
}

.mode-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.02);
  padding: 8px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.mode-tab {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mode-tab:hover {
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.05);
}

.mode-tab.active {
  background: linear-gradient(135deg, #000fff 0%, #00fff0 100%);
  border: none;
  color: white;
  border-color: rgba(59, 130, 246, 0.3);
}

.container {  
  margin-top: 2rem;
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  background-color: rgba(44, 44, 44, 0.7);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeIn 0.5s ease-in-out;
}

.wrapper {
  position: relative;
  width: 100%;
}

.input-container input[type="text"],
.input-container input[type="tel"] {
  width: 100%;
  padding: 15px;
  border: 2px solid #00ffff;
  border-radius: 10px;
  background-color: rgba(33, 33, 33, 0.7);
  color: #ff00cc;
  font-family: Arial, sans-serif;
  font-weight: bold;
  outline: none;
}

#phoneInput {
  padding: 15px 15px 15px 90px;
}

.input-container:focus-within input[type="text"],
.input-container:focus-within input[type="tel"] {
  border-color: #ff00cc;
  color: #ff00cc;
  box-shadow: 0 0 15px rgba(255, 0, 204, 0.3);
}

.input-container input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.buttons {
  width: 100%;
  padding: 15px;
  margin-top: 1.2rem;
  background: linear-gradient(135deg, #00ffff, #ff00cc);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.buttons:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 204, 0.4);
}

.buttons:hover::before {
  left: 100%;
}

.buttons:active {
  transform: translateY(0);
}

.country-dropdown {
  z-index: 9999;
}

.mode-tabs.disabled,
.buttons.disabled,
.input-container.disabled {
  opacity: 0.5;
  filter: grayscale(0.5);
  pointer-events: none;
  user-select: none;
}

.country-selector-display {
  position: absolute;
  height: 100%;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  color: #e5e7eb;
  gap: 6px;
  z-index: 3;
  font-size: 13px;
  transition: all 0.3s ease;
}


.country-selector-display:hover {
  color: #fff;
}

.country-flag {
  line-height: 1;
  flex-shrink: 0;
}

.country-code-text {
  font-weight: 600;
  color: #ff00cc;
}

.dropdown-arrow {
  font-size: 12px;
  color: #6b7280;
  transition: transform 0.3s ease;
  margin-left: 4px;
}



.country-selector-wrapper.open .dropdown-arrow {
  transform: rotate(180deg);
}

.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1f2937;
  border: 2px solid #ff00cc;
  border-radius: 7px 7px 12px 12px;
  min-width: 280px;
  z-index: 10;
  box-shadow: 0 0 15px rgba(255, 0, 204, 0.3);
  display: none;
  margin-top: -1px;
  max-height: 320px;
  overflow-y: auto;
}

.country-selector-wrapper.open ~ .country-dropdown {
  display: block;
}

.country-dropdown-search {
  padding: 12px 16px;
  border-bottom: 1px solid #374151;
  position: sticky;
  top: 0;
  background: #1f2937;
  z-index: 1;
}

.country-dropdown-search input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #3b82f6;
  border-radius: 8px;
  padding: 17px 16px;
  color: #fff;
  font-size: 13px;
  transition: all 0.3s ease;
}

.country-dropdown-search input:focus {
  outline: none;
  background: rgba(59, 130, 246, 0.1);
}

.country-dropdown-search input::placeholder {
  color: #6b7280;
}

.country-item {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #d1d5db;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

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

.country-item:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #fff;
}

.country-item.active {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  font-weight: 500;
}

.country-item.hidden {
  display: none;
}

.country-item-flag {
  font-size: 18px;
  flex-shrink: 0;
}

.country-item-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.country-item-name {
  font-size: 13px;
  font-weight: 500;
}

.country-item-code {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 2px;
}

.result-type-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 12px;
}

.profile-details {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.result-icon {
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
}

.result-section.email .result-icon {
  color: #10b981;
}

.result-details {
  flex: 1;
}

.result-main {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  word-break: break-all;
}

.result-info {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.6;
}

.result-info strong {
  color: #e5e7eb;
  font-weight: 600;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

@media (max-width: 480px) {
  .container {
    padding: 24px;
  }

  h1 {
    font-size: 24px;
  }

  .mode-tabs {
    flex-wrap: wrap;
  }

  .mode-tab {
    flex: 0 1 calc(50% - 6px);
  }

  .country-dropdown {
    min-width: calc(100vw - 40px);
    left: -24px;
  }
}

@media (max-width: 480px) {
  .country-dropdown {
    position: absolute;
    left: 0;
    right: 0;

    min-width: unset;
    width: 100%;

    max-height: 220px;
    overflow-y: auto;
  }

  .country-selector-wrapper {
    flex-shrink: 0;
    min-width: 90px;
  }
}

.details-container {
  margin: 2.1rem auto;
  width: 90%;
  max-width: 500px;
  background-color: rgba(44, 44, 44, 0.7);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.pulse {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.profile-container {
  max-width: 800px;
  margin: 1em auto;
  padding: 0 1em;
}

.profiles {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2em;
  position: relative;
}

.profile-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(76, 175, 80, 0.2) 0%, transparent 70%);
  z-index: -1;
  opacity: 0.8;
}

.profile-image-container {
  position: relative;
  margin-bottom: 1em;
}

.profile-stats {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin: 1.5em 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 1em;
  border-radius: 10px;
  min-width: 100px;
  border: 1px solid rgba(76, 175, 80, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.stat-value {
  font-size: 1.5em;
  font-weight: bold;
  color: #4caf50;
}

.stat-label {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5em;
}

.profile-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1em;
  margin-top: -1em;
}

.detail-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1em;
  border: 1px solid rgba(76, 175, 80, 0.2);
  transition: all 0.3s ease;
}

.detail-card:hover {
  transform: translateX(5px);
  background: rgba(76, 175, 80, 0.1);
}

.detail-card i {
  color: #4caf50;
  margin-right: 0.5em;
  width: 20px;
  text-align: center;
}

.detail-label {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.3em;
  font-size: 0.8em;
}

.detail-value {
  font-weight: bold;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 2em;
  flex-wrap: wrap;
}

.action-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.8em 1.5em;
  background-color: #4caf50;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #4caf50;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.action-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.action-button:hover {
  background-color: #3e8e41;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.action-button:hover::before {
  left: 100%;
}

.action-button.secondary {
  background-color: transparent;
  border: 1px solid #4caf50;
  color: #4caf50;
}

.action-button.secondary:hover {
  background-color: rgba(76, 175, 80, 0.1);
}

.Yes✅:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04LjUyNDcgMTUuMTIzNEM4LjIwMyAxNC45MjUxIDcuNzk3IDE0LjkyNTEgNy40NzUzIDE1LjEyMzRMNy4xNDg3MyAxNS4zMjQ3QzYuNjk0MiAxNS42MDQ4IDYuMDk5NzQgMTUuNDc4NSA1Ljc5ODQ1IDE1LjAzNzdMNS41ODE5OSAxNC43MjFDNS4zNjg3NSAxNC40MDkgNC45OTc4NSAxNC4yNDM4IDQuNjIzMzIgMTQuMjk0MUw0LjI0MzExIDE0LjM0NTJDMy43MTM5MiAxNC40MTYyIDMuMjIyMjYgMTQuMDU5IDMuMTI2MzEgMTMuNTMzOEwzLjA1NzM3IDEzLjE1NjRDMi45ODk0NyAxMi43ODQ3IDIuNzE3OCAxMi40ODMgMi4zNTUxOSAxMi4zNzY2TDEuOTg3MDkgMTIuMjY4NkMxLjQ3NDc1IDEyLjExODIgMS4xNzA4OCAxMS41OTIxIDEuMjk2ODcgMTEuMDczMUwxLjM4NzM4IDEwLjcwMDNDMS40NzY1NSAxMC4zMzMgMS4zNTEwOSA5Ljk0NjkyIDEuMDYzMSA5LjcwMjI0TDAuNzcwNzU3IDkuNDUzODVDMC4zNjM4NTIgOS4xMDgxMyAwLjMwMDMyNyA4LjUwMzczIDAuNjI2NDYyIDguMDgwOTZMMC44NjA3NzcgNy43NzcyMkMxLjA5MTYgNy40NzgwMSAxLjEzNDA0IDcuMDc0MjQgMC45NzA0NjggNi43MzM1OEwwLjgwNDQyNCA2LjM4Nzc2QzAuNTczMzE0IDUuOTA2NDMgMC43NjExMTQgNS4zMjg0NCAxLjIzMTAxIDUuMDc0ODhMMS41Njg2MSA0Ljg5MjdDMS45MDExNyA0LjcxMzI0IDIuMTA0MTcgNC4zNjE2NCAyLjA5MzMgMy45ODM5TDIuMDgyMjcgMy42MDA0NEMyLjA2NjkyIDMuMDY2NzIgMi40NzM1NyAyLjYxNTA5IDMuMDA1OTcgMi41NzQ1N0wzLjM4ODQ4IDIuNTQ1NDZDMy43NjUyOSAyLjUxNjc4IDQuMDkzNzUgMi4yNzgxNCA0LjIzNzQ2IDEuOTI4NjRMNC4zODMzNSAxLjU3Mzg1QzQuNTg2NCAxLjA4MDAyIDUuMTQxNiAwLjgzMjgzNiA1LjY0NDQ1IDEuMDEyMzdMNi4wMDU3MyAxLjE0MTM1QzYuMzYxNjMgMS4yNjg0MiA2Ljc1ODc1IDEuMTg0MDEgNy4wMzIxOSAwLjkyMzE3M0w3LjMwOTc4IDAuNjU4MzkxQzcuNjk2MTMgMC4yODk4NTIgOC4zMDM4NyAwLjI4OTg1MiA4LjY5MDIyIDAuNjU4MzkyTDguOTY3ODEgMC45MjMxNzNDOS4yNDEyNSAxLjE4NDAxIDkuNjM4MzcgMS4yNjg0MiA5Ljk5NDI3IDEuMTQxMzVMMTAuMzU1NSAxLjAxMjM3QzEwLjg1ODQgMC44MzI4MzYgMTEuNDEzNiAxLjA4MDAyIDExLjYxNjcgMS41NzM4NUwxMS43NjI1IDEuOTI4NjRDMTEuOTA2MyAyLjI3ODE0IDEyLjIzNDcgMi41MTY3OCAxMi42MTE1IDIuNTQ1NDZMMTIuOTk0IDIuNTc0NTdDMTMuNTI2NCAyLjYxNTA5IDEzLjkzMzEgMy4wNjY3MiAxMy45MTc3IDMuNjAwNDRMMTMuOTA2NyAzLjk4MzlDMTMuODk1OCA0LjM2MTY0IDE0LjA5ODggNC43MTMyNCAxNC40MzE0IDQuODkyN0wxNC43NjkgNS4wNzQ4OEMxNS4yMzg5IDUuMzI4NDQgMTUuNDI2NyA1LjkwNjQzIDE1LjE5NTYgNi4zODc3NkwxNS4wMjk1IDYuNzMzNThDMTQuODY2IDcuMDc0MjQgMTQuOTA4NCA3LjQ3ODAxIDE1LjEzOTIgNy43NzcyMkwxNS4zNzM1IDguMDgwOTZDMTUuNjk5NyA4LjUwMzczIDE1LjYzNjEgOS4xMDgxMyAxNS4yMjkyIDkuNDUzODVMMTQuOTM2OSA5LjcwMjI0QzE0LjY0ODkgOS45NDY5MiAxNC41MjM0IDEwLjMzMyAxNC42MTI2IDEwLjcwMDNMMTQuNzAzMSAxMS4wNzMxQzE0LjgyOTEgMTEuNTkxOSAxNC41MjUzIDEyLjExODIgMTQuMDEyOSAxMi4yNjg2TDEzLjY0NDggMTIuMzc2NkMxMy4yODIyIDEyLjQ4MyAxMy4wMTA1IDEyLjc4NDcgMTIuOTQyNiAxMy4xNTY0TDEyLjg3MzcgMTMuNTMzOEMxMi43Nzc3IDE0LjA1OSAxMi4yODYxIDE0LjQxNjIgMTEuNzU2OSAxNC4zNDUyTDExLjM3NjcgMTQuMjk0MUMxMS4wMDIxIDE0LjI0MzggMTAuNjMxMyAxNC40MDkgMTAuNDE4IDE0LjcyMUwxMC4yMDE1IDE1LjAzNzdDOS45MDAyNiAxNS40Nzg1IDkuMzA1OCAxNS42MDQ4IDguODUxMjcgMTUuMzI0N0w4LjUyNDcgMTUuMTIzNFoiIGZpbGw9IiMwMEI2RkYiLz4KPHBhdGggZD0iTTUuMDY5OTggNy41NjI2NUw3LjE5MTMgOS42ODM5N0wxMS40MzM5IDUuNDQxMzMiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4K");
  margin-left: 7px;
  vertical-align: middle;
  display: inline-flex;
}

.img.css-shadow {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  outline: 3px solid rgb(224, 224, 224);
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #1f2937;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  max-height: 85vh;
  overflow: hidden;
  border: 2px solid #ff00cc;
  box-shadow: 0 10px 30px rgba(255, 0, 204, 0.4);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #374151;
}

.modal-header h3 {
  margin: 0;
  color: #fff;
}

.close-modal {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #9ca3af;
}

.close-modal:hover {
  color: #ff00cc;
}

.modal-country-list {
  max-height: 420px;
  overflow-y: auto;
  padding: 8px 0;
}

.modal-country-list .country-item {
  padding: 14px 20px;
  cursor: pointer;
}

.error {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 16px;
  margin-top: 2rem;
}

.error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.fa-exclamation-triangle {
  font-size: 1.5rem;
}

h3 {
  padding: 0.8rem;
}