﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿/* ========================================
   Domain Search Page - Specific Styles
   ======================================== */

/* ========================================
   Search Box
   ======================================== */
.domain-search-container {
  text-align: left;
  animation: fadeInUp 0.6s ease-out 0.3s both;
  margin-top: 28px;
}

.domain-search-box {
  display: flex;
  max-width: 450px;
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.domain-search-box:focus-within {
  border-color: rgba(139,92,246,0.3);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
  transform: translateY(-2px);
}

.domain-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--text-muted);
}

.domain-search-icon svg {
  width: 22px;
  height: 22px;
}

.domain-search-input {
  flex: 1;
  padding: 18px 28px;
  font-size: 16px;
  color: var(--text-primary);
  background: transparent;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

.domain-search-input:focus {
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 2px rgba(139,92,246,0.3);
}

.domain-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.domain-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(139,92,246,0.25);
  white-space: nowrap;
}

.domain-search-btn::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: left 0.6s ease;
}

.domain-search-btn:hover::before {
  left: 100%;
}

.domain-search-btn:hover {
  background: linear-gradient(135deg, #a78bfa, #38bdf8);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139,92,246,0.35);
  color: #ffffff;
}

.domain-search-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,92,246,0.3);
}

.domain-search-btn:focus {
  outline: none;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(139,92,246,0.3), 0 0 0 3px rgba(139,92,246,0.4);
}

.domain-search-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Warning Notice */
.domain-warning-notice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto 0;
  padding: 12px 20px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  animation: fadeInUp 0.6s ease-out 0.35s both;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.domain-warning-notice:hover {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.2);
}

.domain-warning-notice svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #ef4444;
  stroke-width: 2;
  animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   Search Results Section
   ======================================== */
.domain-results-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(139,92,246,0.02) 100%);
  display: none;
}

.domain-results-section.visible {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.domain-results-container {
  max-width: 1200px;
  margin: 0 auto;
}

.domain-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.domain-results-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.domain-results-title span {
  color: var(--primary-color);
}

.domain-results-count {
  font-size: 14px;
  color: var(--text-muted);
}

/* Results Grid */
.domain-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Domain Card */
.domain-card {
  background: var(--bg-card);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.domain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 1;
  box-shadow: 0 0 10px rgba(139,92,246,0.6);
}

.domain-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(139,92,246,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(139,92,246,0.4), inset 0 0 20px rgba(139,92,246,0.1);
}

.domain-card:hover::before {
  opacity: 1;
  height: 4px;
  box-shadow: 0 0 16px rgba(139,92,246,0.8);
}

.domain-card.available {
  border-left: 4px solid var(--status-available);
}

.domain-card.taken {
  border-left: 4px solid var(--status-taken);
}

.domain-card.premium {
  border-left: 4px solid var(--status-premium);
}

.domain-card.error {
  border-left: 4px solid #6b7280;
  opacity: 0.8;
}

/* Card Header */
.domain-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.domain-card-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  word-break: break-all;
}

.domain-card-suffix {
  color: var(--primary-color);
}

/* Status Badge */
.domain-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.domain-status-badge.available {
  background: rgba(16,185,129,0.15);
  color: var(--status-available);
}

.domain-status-badge.taken {
  background: rgba(239,68,68,0.15);
  color: var(--status-taken);
}

.domain-status-badge.premium {
  background: rgba(245,158,11,0.15);
  color: var(--status-premium);
}

.domain-status-badge.error {
  background: rgba(107,114,128,0.15);
  color: #9ca3af;
}

.domain-status-badge svg {
  width: 14px;
  height: 14px;
}

/* HOT Badge */
.domain-hot-badge {
  position: absolute;
  top: -8px;
  left: 16px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

/* Card Body - Price */
.domain-card-body {
  margin-bottom: 20px;
}

.domain-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.domain-price {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 15px rgba(139,92,246,0.6);
  transition: all 0.3s ease;
}

.domain-card:hover .domain-price {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  text-shadow: 0 0 20px rgba(139,92,246,0.8);
  transform: scale(1.05);
  display: inline-block;
}

.domain-price-period {
  font-size: 14px;
  color: var(--text-muted);
}

.domain-renew-price {
  font-size: 13px;
  color: var(--text-muted);
}

/* Card Actions */
.domain-card-actions {
  display: flex;
  gap: 10px;
}

.domain-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.domain-btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(139,92,246,0.4);
  position: relative;
  overflow: hidden;
}

.domain-btn-primary::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.6s ease;
}

.domain-btn-primary:hover {
  box-shadow: 0 8px 24px rgba(139,92,246,0.8);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
}

.domain-btn-primary:hover::before {
  left: 100%;
}

.domain-btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 12px rgba(139,92,246,0.6);
}

.domain-btn-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.domain-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.domain-btn svg {
  width: 16px;
  height: 16px;
}

/* Loading Skeleton */
.domain-card-skeleton {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
}

.skeleton-line {
  height: 20px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.05) 25%,
    rgba(255,255,255,0.1) 50%,
    rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 12px;
}

.skeleton-line.short {
  width: 60%;
}

.skeleton-line.medium {
  width: 80%;
}

.skeleton-line.button {
  height: 44px;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ========================================
   International TLD Section
   ======================================== */
.domain-tld-section {
  background: linear-gradient(135deg, rgba(248,250,252,0.02) 0%, rgba(241,245,249,0.04) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.domain-tld-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.domain-tld-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}



/* International Tabs */
.domain-tld-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  border: none;
}

.domain-tld-tab {
  padding: 10px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: none;
  min-width: 100px;
  text-align: center;
  text-transform: capitalize;
}

.domain-tld-tab:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(139,92,246,0.3);
  color: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.domain-tld-tab.active {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(59,130,246,0.15));
  border: 1px solid rgba(139,92,246,0.5);
  border-radius: 24px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139,92,246,0.3);
  transform: translateY(-2px);
}

/* TLD Card Styles - International Style */
.domain-tld-section .domain-tld-container .domain-tld-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.domain-tld-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  cursor: pointer;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Fixed domain name text alignment */
.domain-tld-name {
  text-align: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Adjust hot badge position to not overlap content */
.domain-tld-badge.hot {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 3px 6px;
  font-size: 10px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border-radius: 16px;
  color: white;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 159, 11, 0.4);
  animation: pulse 2s infinite;
  transform: none;
  z-index: 2;
  margin: 0;
  line-height: 1;
}

/* TLD Name with Country Flag */
.domain-tld-name .flag-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
  object-fit: cover;
}

.domain-tld-card:hover .domain-tld-name {
  color: #a78bfa;
}

.domain-tld-price {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 4px;
}

.domain-tld-card:hover .domain-tld-price {
  color: #cbd5e1;
}

.domain-tld-renew {
  font-size: 12px;
  color: #64748b;
}

.domain-tld-card:hover .domain-tld-renew {
  color: #94a3b8;
}

.domain-tld-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139,92,246,0.5);
  box-shadow: 0 8px 20px rgba(139,92,246,0.35);
  background: linear-gradient(145deg, rgba(248,250,252,0.05), rgba(241,245,249,0.08));
}

.domain-tld-card.selected {
  background: rgba(255,255,255,0.02);
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 12px 32px rgba(139,92,246,0.15), 0 4px 16px rgba(34,211,238,0.1);
  transform: translateY(-3px);
}

.domain-tld-card.selected .domain-tld-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #a78bfa;
}

.domain-tld-card.selected .domain-tld-price {
  color: #a78bfa;
  font-weight: 600;
}

.domain-tld-card.selected .domain-tld-renew {
  color: #93c5fd;
}

/* Select Controls - International Style */
.domain-tld-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  padding: 10px 0;
}

.domain-tld-control-btn {
  padding: 12px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.domain-tld-control-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(139,92,246,0.3);
  color: #f1f5f9;
  transform: translateY(-2px);
}

.domain-tld-control-btn.selected {
  background: rgba(255,255,255,0.02);
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 12px 32px rgba(139,92,246,0.15), 0 4px 16px rgba(34,211,238,0.1);
  color: #a78bfa;
  font-weight: 600;
  transform: translateY(-3px);
}



/* ========================================
   FAQ Section
   ======================================== */
.domain-faq-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--bg-dark-2) 0%, var(--bg-dark) 100%);
}

.domain-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.domain-faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.domain-faq-item:hover {
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 6px 24px rgba(139,92,246,0.25);
}

.domain-faq-item.active {
  background: rgba(255,255,255,0.02);
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 12px 32px rgba(139,92,246,0.15), 0 4px 16px rgba(34,211,238,0.1);
  transform: translateY(-2px);
}

.domain-faq-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--primary-gradient);
  box-shadow: 0 0 4px rgba(139,92,246,0.3);
}

.domain-faq-question {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.domain-faq-question:hover {
  background: rgba(255,255,255,0.02);
}

.domain-faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.domain-faq-item:hover .domain-faq-question svg {
  color: var(--primary-color);
}

.domain-faq-item.active .domain-faq-question svg {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.domain-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.domain-faq-item.active .domain-faq-answer {
  max-height: 300px;
}

.domain-faq-answer-content {
  padding: 0 28px 24px;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.domain-faq-item.active .domain-faq-answer-content {
  color: #ffffff;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 968px) {
  .domain-search-container {
    text-align: center;
  }

  .domain-search-box {
    margin: 0 auto;
  }

  .domain-warning-notice {
    margin: 20px auto 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .domain-search-box {
    flex-direction: column;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    padding: 16px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(139,92,246,0.3);
    box-shadow: 0 8px 24px rgba(139,92,246,0.3);
    max-width: 90%;
    margin: 0 auto;
    transform: translateY(0);
    transition: all 0.3s ease;
  }

  .domain-search-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139,92,246,0.4);
  }

  .domain-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: var(--text-muted);
    order: -1;
    margin-bottom: 8px;
  }

  .domain-search-icon svg {
    width: 24px;
    height: 24px;
    color: var(--theme-primary);
  }

  .domain-search-input {
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
  }

  .domain-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
  }

  .domain-search-btn {
    border-radius: 24px;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    width: 100%;
    margin: 0;
  }

  .domain-results-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .domain-card {
    padding: 20px;
  }

  .domain-price {
    font-size: 24px;
  }

  .domain-tld-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }

  .domain-tld-tabs {
    gap: 6px;
    flex-wrap: wrap;
    padding: 0;
    border-radius: 0;
  }

  .domain-tld-tab {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 14px;
    min-width: 70px;
  }

  .domain-tld-card {
    padding: 12px;
    border-radius: 10px;
    min-height: 80px;
    white-space: nowrap;
  }

  .domain-tld-card h3 {
    font-size: 14px;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .domain-tld-card p:first-of-type {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .domain-tld-card p:last-of-type {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .domain-tld-controls {
    flex-direction: column;
    gap: 10px;
    padding: 0;
    border-radius: 0;
  }

  .domain-tld-control-btn {
    padding: 8px 16px;
    border-radius: 14px;
    justify-content: center;
    font-size: 12px;
    min-width: 80px;
  }

  .domain-tld-badge.hot {
    padding: 3px 6px;
    font-size: 9px;
    border-radius: 10px;
    top: 6px;
    right: 6px;
  }

  .domain-services-grid {
    grid-template-columns: 1fr;
  }

  .domain-section-header h2 {
    font-size: 24px;
  }

  .domain-tld-section,
  .domain-services-section,
  .domain-faq-section {
    padding: 60px 16px;
  }
}

@media (max-width: 480px) {
  .domain-tld-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
  }

  .domain-tld-card {
    padding: 16px;
    white-space: nowrap;
  }

  .domain-tld-name {
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .domain-card-name {
    font-size: 18px;
  }

  .domain-service-card {
    padding: 24px;
  }

  .domain-section-header h2 {
    font-size: 20px;
  }

  .domain-section-header p {
    font-size: 14px;
  }

  .domain-faq-question {
    padding: 16px 20px;
    font-size: 14px;
  }

  .domain-faq-answer-content {
    padding: 0 20px 16px;
    font-size: 13px;
  }

  .domain-tld-section,
  .domain-services-section,
  .domain-faq-section {
    padding: 40px 12px;
  }
}

/* ========================================
   Animations
   ======================================== */
.domain-card {
  animation: cardFadeIn 0.4s ease-out both;
}

.domain-card:nth-child(1) { animation-delay: 0s; }
.domain-card:nth-child(2) { animation-delay: 0.05s; }
.domain-card:nth-child(3) { animation-delay: 0.1s; }
.domain-card:nth-child(4) { animation-delay: 0.15s; }
.domain-card:nth-child(5) { animation-delay: 0.2s; }
.domain-card:nth-child(6) { animation-delay: 0.25s; }
.domain-card:nth-child(7) { animation-delay: 0.3s; }
.domain-card:nth-child(8) { animation-delay: 0.35s; }

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Success Animation */
@keyframes successPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.domain-status-badge.available {
  animation: successPop 0.3s ease-out;
}

/* Shimmer Animation */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ========================================
   Domain Page Specific Styles
   ======================================== */

/* Search Container */
.domain-search-container {
  margin-top: 28px;
}

/* TLD Category Tabs - International Style */
.domain-tld-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  border: none;
}

/* Restore select/deselect buttons styling */
.domain-tld-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  padding: 10px 0;
}

/* FAQ Section */
.domain-faq-list {
  max-width: 800px;
  margin: 0 auto;
  color: #f1f5f9;
}

.domain-faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.domain-faq-question {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f1f5f9;
  font-size: 16px;
  cursor: pointer;
}

.domain-faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.domain-faq-item:hover .domain-faq-question svg {
  color: var(--primary-color);
}

.domain-faq-item.active .domain-faq-question svg {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.domain-faq-answer-content {
  padding: 0 20px 20px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.domain-faq-item.active .domain-faq-answer-content {
  color: var(--text-primary);
}
