.uc-root {
    width: 100%;
  }

  .uc-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }

  .uc-input-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .theme-dark .uc-input-card {
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(255, 255, 255, 0.06);
  }

  .uc-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(100, 116, 139);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .theme-dark .uc-label {
    color: rgb(148, 163, 184);
  }

  .uc-input-group {
    display: flex;
    gap: 0.75rem;
  }

  .uc-input {
    flex-grow: 1;
    background: white;
    border: 1px solid rgb(226, 232, 240);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
    color: rgb(51, 65, 85);
  }

  .theme-dark .uc-input {
    background: rgb(15, 23, 42);
    border-color: rgb(51, 65, 85);
    color: rgb(203, 213, 225);
  }

  .uc-input:focus {
    border-color: rgb(59, 130, 246);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }

  .uc-btn-primary {
    background: rgb(59, 130, 246);
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 0 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    font-size: 0.875rem;
  }

  .uc-btn-primary:hover {
    background: rgb(37, 99, 235);
    transform: translateY(-1px);
  }

  .uc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  @media (max-width: 768px) {
    .uc-results {
      grid-template-columns: 1fr;
    }
  }

  .uc-result-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .theme-dark .uc-result-card {
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(255, 255, 255, 0.06);
  }

  .uc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .uc-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(51, 65, 85);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .theme-dark .uc-card-title {
    color: rgb(203, 213, 225);
  }

  .uc-url-display {
    word-break: break-all;
    font-size: 0.875rem;
    color: rgb(59, 130, 246);
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .theme-dark .uc-url-display {
    background: rgb(30, 41, 59);
    border-color: rgb(51, 65, 85);
    color: rgb(129, 140, 148);
  }

  .uc-copy-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.875rem;
    border-radius: 2rem;
    border: 1.5px solid rgb(226, 232, 240);
    background: white;
    color: rgb(71, 85, 105);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .theme-dark .uc-copy-btn {
    background: rgb(30, 41, 59);
    border-color: rgb(51, 65, 85);
    color: rgb(148, 163, 184);
  }

  .uc-copy-btn:hover {
    border-color: rgb(59, 130, 246);
    color: rgb(59, 130, 246);
  }

  .uc-copy-btn.uc-copied {
    background: rgb(16, 185, 129);
    border-color: rgb(16, 185, 129);
    color: white;
  }

  .uc-removed-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .uc-removed-item {
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0.5rem;
    border-left: 3px solid rgb(59, 130, 246);
  }

  .theme-dark .uc-removed-item {
    background: rgba(255, 255, 255, 0.03);
  }

  .uc-item-key {
    font-weight: 600;
    color: rgb(51, 65, 85);
    font-size: 0.875rem;
  }

  .theme-dark .uc-item-key {
    color: rgb(203, 213, 225);
  }

  .uc-item-val {
    font-size: 0.75rem;
    color: rgb(100, 116, 139);
    margin-left: 0.5rem;
  }

  .uc-item-desc {
    font-size: 0.8rem;
    color: rgb(100, 116, 139);
    margin: 0.25rem 0;
  }

  .theme-dark .uc-item-desc {
    color: rgb(148, 163, 184);
  }

  .uc-none-detected {
    font-size: 0.875rem;
    color: rgb(100, 116, 139);
    font-style: italic;
  }

  .uc-stats-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .theme-dark .uc-stats-card {
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(255, 255, 255, 0.06);
  }

  .uc-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }

  .uc-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgb(59, 130, 246);
  }

  .uc-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(100, 116, 139);
    letter-spacing: 0.04em;
  }

  .theme-dark .uc-stat-label {
    color: rgb(148, 163, 184);
  }