/* =================================
   WHOIS PAGE STYLES
   ================================= */

.whois-page {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

/* =================================
   HERO SECTION
   ================================= */

.whois-hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.whois-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.title-primary {
  display: block;
  color: #ffffff;
}

.title-secondary {
  display: block;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* =================================
   SEARCH FORM
   ================================= */

.whois-search-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-container {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.search-input-wrapper {
  flex: 1;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  z-index: 2;
}

.search-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid #e0e6ff;
  border-radius: 12px;
  font-size: 1.1rem;
  background: #ffffff;
  color: #2d3748;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-button {
  padding: 15px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.search-button:active {
  transform: translateY(0);
}

.search-help {
  display: flex;
  gap: 20px;
  color: #4a5568;
  font-size: 0.9rem;
}

.help-item {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  cursor: help;
}

.help-icon {
  width: 16px;
  height: 16px;
  color: #667eea;
}

/* =================================
   HERO ILLUSTRATION
   ================================= */

.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.whois-visual {
  position: relative;
  width: 300px;
  height: 300px;
}

.domain-layers {
  position: relative;
  width: 100%;
  height: 100%;
}

.layer {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.layer i {
  width: 24px;
  height: 24px;
}

.layer-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.layer-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: 0.5s;
}

.layer-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

.layer-4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-10px) translateX(-50%); }
}

.layer-2 {
  animation-name: float-right;
}

.layer-4 {
  animation-name: float-left;
}

@keyframes float-right {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(0); }
}

@keyframes float-left {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(0); }
}

/* =================================
   RESULTS SECTION
   ================================= */

.whois-results {
  padding: 60px 0;
  background: #f8fafc;
}

.results-header {
  text-align: center;
  margin-bottom: 40px;
}

.results-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.queried-domain {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
}

/* =================================
   LOADING, ERROR, SUCCESS STATES
   ================================= */

.loading-state, .error-state {
  text-align: center;
  padding: 60px 20px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e2e8f0;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.error-icon {
  width: 80px;
  height: 80px;
  background: #fed7e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.error-icon i {
  width: 40px;
  height: 40px;
  color: #e53e3e;
}

.error-state h3 {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 10px;
}

.retry-button {
  background: #e53e3e;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.retry-button:hover {
  background: #c53030;
  transform: translateY(-2px);
}

/* =================================
   WHOIS INFO GRID
   ================================= */

.whois-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.info-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.card-tooltip {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
}

.card-content {
  padding: 20px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

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

.info-label {
  font-weight: 600;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}

.label-tooltip {
  width: 16px;
  height: 16px;
  color: #a0aec0;
  cursor: help;
}

.info-value {
  color: #2d3748;
  text-align: right;
  word-break: break-all;
  max-width: 200px;
  font-size: 0.95rem;
}

.name-servers {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

/* =================================
   RAW WHOIS SECTION
   ================================= */

.raw-whois-section {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.raw-header {
  background: #f8fafc;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
}

.raw-header h3 {
  margin: 0;
  color: #2d3748;
  font-size: 1.2rem;
}

.raw-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.copy-button, .toggle-button {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  text-decoration: none;
}

.copy-button:hover, .toggle-button:hover {
  background: #f8fafc;
  border-color: #cbd5e0;
  color: #2d3748 !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.copy-button:hover *, .toggle-button:hover * {
  color: #2d3748 !important;
}

.copy-button:active, .toggle-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.copy-button i, .toggle-button i {
  width: 16px;
  height: 16px;
  color: inherit;
}

.raw-content {
  padding: 20px;
  background: #1a202c;
  color: #e2e8f0;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  overflow-x: auto;
}

/* =================================
   INFO SECTIONS
   ================================= */

.whois-info, .whois-features, .whois-faq, .related-services {
  padding: 80px 0;
}

.whois-info {
  background: white;
}

.whois-features {
  background: #f8fafc;
}

.whois-faq {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.related-services {
  background: #f8fafc;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  text-align: center;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #718096;
  text-align: center;
  margin-bottom: 50px;
}

.info-grid, .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-item, .feature-card {
  text-align: center;
  padding: 30px 20px;
}

.info-icon, .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}

.info-item h3, .feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.info-item p, .feature-card p {
  color: #718096;
  line-height: 1.6;
}

.feature-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
  background: #667eea;
  color: white;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-content {
  text-align: left;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  padding: 25px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  background: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  transition: all 0.3s ease;
}

/* =================================
   FAQ SECTION
   ================================= */

.whois-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.whois-faq-item {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.whois-faq-item:hover {
  border-color: #d1d8ff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.whois-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #ffffff;
}

.whois-faq-question:hover {
  background: #fafbff;
}

.whois-faq-item.active .whois-faq-question {
  color: #667eea;
}

.whois-faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
}

.whois-faq-question i {
  transition: transform 0.3s ease;
  color: #6c757d;
}

.whois-faq-item.active .whois-faq-question i {
  transform: rotate(180deg);
  color: #667eea;
}

.whois-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background: #ffffff;
  padding: 0 25px;
}

.whois-faq-item.active .whois-faq-answer {
  max-height: 300px; /* Adjust as needed */
  padding: 20px 25px;
  border-top: 1px solid #e9ecef;
}

.whois-faq-answer p {
  margin: 0;
  line-height: 1.7;
  color: #495057;
}

/* =================================
   RELATED SERVICES
   ================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.service-card p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #5a67d8;
  transform: translateX(5px);
}

/* =================================
   TOOLTIPS
   ================================= */

.tooltip {
  position: fixed;
  background: #2d3748;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  max-width: 250px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #2d3748;
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .search-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .search-help {
    flex-direction: column;
    gap: 10px;
  }
  
  .whois-visual {
    width: 250px;
    height: 250px;
  }
  
  .whois-info-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
  }
  
  .info-row {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  
  .info-value {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .whois-hero {
    padding: 60px 0 40px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .whois-search-form {
    padding: 20px;
  }
  
  .search-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .whois-visual {
    display: none;
  }
  
  .layer {
    padding: 15px;
  }
  
  .whois-faq-question {
    padding: 15px 20px;
  }
  
  .whois-faq-item.active .whois-faq-answer {
    padding: 15px 20px;
  }
}

/* Domain Kayıtlı Değil Stilleri */
.domain-not-registered {
  padding: 50px 20px;
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 100%);
  border-radius: 16px;
  border: 2px solid #10b981;
  max-width: 600px;
  margin: 0 auto;
}

.not-registered-icon {
  margin-bottom: 20px;
}

.not-registered-icon i {
  width: 64px;
  height: 64px;
  color: #10b981;
  stroke-width: 1.5;
}

.domain-not-registered h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 12px;
}

.not-registered-message {
  font-size: 1.1rem;
  color: #047857;
  margin-bottom: 30px;
  line-height: 1.6;
}

.register-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.register-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  min-width: 150px;
  justify-content: center;
}

.register-button.primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.register-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.register-button.secondary {
  background: white;
  color: #059669;
  border: 2px solid #10b981;
}

.register-button.secondary:hover {
  background: #f0fdf4;
  transform: translateY(-1px);
}

.register-button i {
  width: 18px;
  height: 18px;
}

.register-info {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.register-info .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #047857;
  font-weight: 500;
}

.register-info .info-item i {
  width: 16px;
  height: 16px;
  color: #10b981;
}

/* Notification Stilleri */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  transform: translateX(100%);
  transition: all 0.3s ease;
  border-left: 4px solid #3b82f6;
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-left-color: #10b981;
}

.notification.error {
  border-left-color: #ef4444;
}

.notification.warning {
  border-left-color: #f59e0b;
}

.notification i {
  width: 20px;
  height: 20px;
  color: #6b7280;
}

.notification.success i {
  color: #10b981;
}

.notification.error i {
  color: #ef4444;
}

.notification.warning i {
  color: #f59e0b;
}

/* DNS Active but No WHOIS State */
.dns-active-state {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  color: white;
  margin: 20px 0;
}

.dns-active-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  backdrop-filter: blur(10px);
}

.dns-active-icon i {
  width: 40px;
  height: 40px;
  color: white;
}

.dns-active-state h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.dns-active-message {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.9;
}

.domain-status-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
  text-align: left;
}

.status-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.status-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.status-icon.active {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.status-icon.warning {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

.status-icon i {
  width: 20px;
  height: 20px;
}

.status-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: white;
}

.status-content p {
  font-size: 13px;
  opacity: 0.8;
  margin: 0;
}

.tr-domain-info {
  margin-bottom: 32px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  text-align: left;
  backdrop-filter: blur(10px);
}

.info-icon {
  width: 32px;
  height: 32px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  width: 16px;
  height: 16px;
  color: #3b82f6;
}

.info-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.info-content p {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}

.alternative-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.action-button.primary {
  background: rgba(255, 255, 255, 0.9);
  color: #1f2937;
}

.action-button.primary:hover {
  background: white;
  transform: translateY(-1px);
}

.action-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.action-button i {
  width: 16px;
  height: 16px;
}

.help-section {
  text-align: left;
}

.help-section details {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.help-section summary {
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 500;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.help-section summary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.help-content {
  padding: 16px;
}

.help-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.help-content li {
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.help-content li:last-child {
  border-bottom: none;
}

.help-content strong {
  color: white;
}

@media (max-width: 768px) {
  .dns-active-state {
    padding: 32px 16px;
  }
  
  .domain-status-info {
    grid-template-columns: 1fr;
  }
  
  .alternative-actions {
    flex-direction: column;
  }
  
  .action-button {
    width: 100%;
    justify-content: center;
  }
} 