/* Modern Premium Styling */
:root {
  --primary: #4361ee;
  --primary-hover: #3a56d4;
  --success: #4cc9f0;
  --danger: #f72585;
  --text: #2b2d42;
  --light: #f8f9fa;
  --border-radius: 10px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* Container - Not Full Width */
.aa-dchecker-container {
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

/* Premium Header */
.aa-dchecker-title {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.aa-dchecker-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
}

/* Input Field */
.aa-dchecker-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  margin-bottom: 1rem;
}

.aa-dchecker-input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

/* Check Button */
.aa-dchecker-button {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.aa-dchecker-button:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* Results Section */
.aa-dchecker-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  display: none;
}

.aa-dchecker-available {
  background: rgba(76, 201, 240, 0.1);
  border: 2px solid var(--success);
  color: #1a936f;
}

.aa-dchecker-taken {
  background: rgba(247, 37, 133, 0.1);
  border: 2px solid var(--danger);
  color: var(--danger);
}

.aa-dchecker-unknown {
  background: #fff9db;
  border: 2px solid #ffd43b;
  color: #674d00;
}

/* Premium Purchase Buttons */
.aa-dchecker-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.aa-dchecker-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.aa-dchecker-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.aa-dchecker-namecheap { 
  background: linear-gradient(135deg, #f36f24 0%, #ed4c24 100%);
}

.aa-dchecker-godaddy { 
  background: linear-gradient(135deg, #121212 0%, #373737 100%);
}

.aa-dchecker-google { 
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
}

/* Responsive Design */
@media (max-width: 576px) {
  .aa-dchecker-container {
    padding: 1.5rem;
  }
  
  .aa-dchecker-buttons {
    grid-template-columns: 1fr;
  }
  
  .aa-dchecker-title {
    font-size: 1.3rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.aa-dchecker-result {
  animation: fadeIn 0.4s ease-out;
}