/* TLD Selection Buttons */

.tld-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}

.tld-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.tld-option.disabled {
  opacity: 0.5;
}

.tld-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--md-sys-color-on-primary);
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  border-radius: var(--md-sys-shape-corner-small);
  font-family: var(--md-sys-typescale-label-large-font-family);
  font-size: var(--md-sys-typescale-label-large-font-size);
  font-weight: var(--md-sys-typescale-label-large-font-weight);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  min-width: 120px;
}

.tld-btn:hover,
.tld-btn.active {
  background-color: var(--md-sys-color-background);
  color: var(--md-sys-color-primary);
  border-color: var(--md-sys-color-background);
}

.tld-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.tld-btn:disabled:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--md-sys-color-on-primary);
  border-color: transparent;
}

.coming-soon-badge {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  margin-top: 0.25rem;
  color: var(--md-sys-color-on-primary);
  opacity: 0.9;
}

.tld-description {
  color: var(--md-sys-color-on-primary);
  font-family: var(--md-sys-typescale-body-small-font-family);
  font-size: var(--md-sys-typescale-body-small-font-size);
  line-height: 1.5;
  margin: 0;
  padding: 0 1rem;
  max-width: 400px;
}

.tld-option.disabled .tld-description {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .tld-buttons {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .tld-btn {
    padding: 0.5rem 1rem;
    font-size: var(--md-sys-typescale-body-small-font-size);
    min-width: 100px;
  }

  .tld-description {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }

  .coming-soon-badge {
    font-size: 0.65rem;
  }
}
