:root {
  --primary: #6c5ce7;
  --primary-dark: #5649c9;
  --text: #2d3436;
  --text-light: #636e72;
  --bg: #f8f9fa;
  --backlight: rgba(100, 15, 238, 0.44);
}
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.logo {
  font-weight: 700;
  font-size: 1.8rem;
}
.logo span {
  color: var(--primary);
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s;
}
.nav-link:hover {
  color: var(--primary);
}
.hero {
  padding: 4rem 0;
}
.search-container {
  max-width: 700px;
}
.search-form {
  box-shadow: 0 5px 20px var(--backlight);
  border-radius: 12px;
  overflow: hidden;
}
.search-input {
  border: none;
  padding-left: 3rem;
  padding-block: .8rem;
  font-size: 1rem;
}
.search-input:focus {
  box-shadow: none;
  border-color: #ced4da;
}
.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}
.search-button {
  background: var(--primary);
  color: var(--bg);
  border: none;
  font-weight: 200;
  padding: 0 2rem;
}
.search-button:hover {
  background: var(--primary-dark);
}
.quick-search-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  margin: 0 0.5rem 0.5rem 0;
  text-decoration: none;
}
.quick-search-item:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(108, 92, 231, 0.2);
}
.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 4px solid var(--backlight);
  padding-left: 10px;
}
.domain-card, .domain-card-single {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  border: none;
}
.domain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.domain-name-container {
  position: relative;
}
.domain-name {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}
.domain-status, .domain-counter, .domain-counter-single, .domain-status-del, .domain-update {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  font-size: 0.8rem;
  padding: 0.5rem 0.5rem;
  background: rgba(0, 184, 148, 0.1);
  color: #00b894;
  border-radius: 50px;
}
.domain-update
{
  background: rgba(100, 15, 238, 0.212);
  color: var(--primary);
}
.domain-status-del
{
  background: rgba(184, 0, 0, 0.1);
  color: #f1486d;
}
.domain-counter {
  background: rgba(138, 138, 138, 0.1);
  color: #616161;
}
.domain-counter-single {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.domain-info {
  color: var(--text-light);
}
.domain-date {
  font-size: 0.85rem;
  color: var(--text-light);
}
.domain-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
}
.domain-action:hover {
  background: var(--primary);
  color: white;
}
.category-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  cursor: pointer;
  height: 100%;
}
.category-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary);
  font-size: 1.2rem;
}
.stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary);
  font-size: 1.5rem;
}
.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.pagination-link, .pagination-link-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transition: all 0.3s;
  background: var(--bg);
  color: var(--primary);
  border: var(--primary) 2px solid;
  text-decoration: none;
  font-weight: 700;
}
.pagination-link-disabled {
  background: var(--primary);
  color: white;
}
.pagination-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
footer {
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.05);
  margin-top: auto;
}
.footer-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary)
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: 0.5rem;
}
.footer-hr {
  border-bottom: 1px solid var(--backlight);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.footer-link:hover, .icon-color {
  color: var(--primary);
}
.domain-title {
  color: var(--primary);
  font-weight: 600;
}
.domain-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary)
}
.reg-button {
  background: var(--primary);
  color: var(--bg);
  border-radius: 5px;
  border-width: 0;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 2rem;
  text-decoration: none;
}
.reg-button:hover {
  background: var(--primary-dark);
}
.promo {
  padding: 0.3rem 1rem;
  border: 1px solid var(--backlight);
  border-radius: 30px;
  text-decoration: none;
  color: var(--primary);
}
.loader {
  width: 80px;
  aspect-ratio: 1;
  display: flex;
  color: var(--primary-dark);
  border: 4px solid;
  box-sizing: border-box;
  border-radius: 50%;
  background: 
    radial-gradient(circle 5px, currentColor 95%,#0000),
    linear-gradient(currentColor 50%,#0000 0) 50%/4px 60% no-repeat;
  animation: l1 2s infinite linear;
  margin: 0 auto;
}
.loader:before {
  content: "";
  flex: 1;
  background:linear-gradient(currentColor 50%,#0000 0) 50%/4px 80% no-repeat;
  animation: inherit;
}
@keyframes l1 {
  100% {transform: rotate(1turn)}
}
#countdown {
  font-weight: 700;
  font-size: 30px;
  color: var(--primary-dark);
}