.bot-profile-editor {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bot-profile-status-bar {
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--discord-a10);
  border: 1px solid var(--discord-dim);
}

.status-bar-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}

.bot-profile-status-bar.status-loading {
  background: var(--discord-a10);
  border-color: var(--discord-dim);
  color: #8A9CFE;
}

.bot-profile-status-bar.status-loading .status-bar-icon::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: botProfileSpin 0.8s linear infinite;
}

.bot-profile-status-bar.status-success {
  background: rgba(35, 165, 89, 0.1);
  border-color: rgba(35, 165, 89, 0.2);
  color: #57F287;
}

.bot-profile-status-bar.status-success .status-bar-icon::before {
  content: 'âœ“';
  font-weight: bold;
}

.bot-profile-status-bar.status-error {
  background: rgba(237, 66, 69, 0.1);
  border-color: rgba(237, 66, 69, 0.2);
  color: #ED4245;
}

.bot-profile-status-bar.status-error .status-bar-icon::before {
  content: 'âœ•';
  font-weight: bold;
}

@keyframes botProfileSpin {
  to {
    transform: rotate(360deg);
  }
}

.bot-profile-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 900px) {
  .bot-profile-layout {
    grid-template-columns: 1fr;
  }
}

.bot-profile-preview-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white-a50);
}

.discord-profile-card {
  background: #111214;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
}

.discord-banner {
  height: 100px;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, var(--discord) 0%, #7289DA 100%);
}

.discord-banner.has-banner {
  background: transparent;
}

.discord-banner-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.discord-banner-edit {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--black-a50);
  opacity: 0;
  transition: opacity 0.15s ease;
  color: white;
  font-size: 1.25rem;
}

.discord-banner-edit .edit-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.discord-banner:hover .discord-banner-edit {
  opacity: 1;
}

.discord-banner.loading .discord-banner-edit {
  opacity: 1;
}

.discord-banner.loading .discord-banner-edit i {
  display: none;
}

.discord-banner.loading .discord-banner-edit::after {
  content: '';
  width: 24px;
  height: 24px;
  border: 2px solid var(--white-a30);
  border-top-color: white;
  border-radius: 50%;
  animation: botProfileSpin 0.8s linear infinite;
}

.discord-avatar-area {
  display: flex;
  align-items: flex-start;
  padding: 0 16px;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.discord-avatar-wrapper {
  position: relative;
}

.discord-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #111214;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  outline: 6px solid #111214;
  outline-offset: 0px;
}

.discord-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.discord-avatar-edit {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--black-a60);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.15s ease;
  color: white;
  font-size: 1rem;
}

.discord-avatar-edit .edit-text {
  font-size: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.discord-avatar:hover .discord-avatar-edit {
  opacity: 1;
}

.discord-avatar.loading .discord-avatar-edit {
  opacity: 1;
}

.discord-avatar.loading .discord-avatar-edit i {
  display: none;
}

.discord-avatar.loading .discord-avatar-edit::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid var(--white-a30);
  border-top-color: white;
  border-radius: 50%;
  animation: botProfileSpin 0.8s linear infinite;
}

.discord-avatar-status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #111214;
  z-index: 15;
}

.discord-avatar-status.online {
  background: #23A559;
}

.discord-profile-body {
  padding: 12px 16px 16px;
}

.discord-username-row {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.discord-displayname {
  font-size: 1.25rem;
  font-weight: 600;
  color: #F2F3F5;
}

.discord-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--discord);
  color: white;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
}

.discord-app-checkmark {
  flex-shrink: 0;
}

.discord-username-sub {
  font-size: 0.875rem;
  color: #B5BAC1;
  margin-top: 2px;
}

.discord-mutual-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.discord-mutual-icons {
  display: flex;
}

.discord-mutual-icons img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #111214;
  margin-left: -8px;
  object-fit: cover;
}

.discord-mutual-icons img:first-child {
  margin-left: 0;
}

.discord-mutual-text {
  font-size: 0.75rem;
  color: #B5BAC1;
}

.discord-add-app-btn {
  width: 100%;
  margin-top: 12px;
  padding: 8px 16px;
  background: var(--black-muted);
  border: 1px solid var(--white-faint);
  border-radius: 4px;
  color: #F2F3F5;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.discord-add-app-btn .btn-icon {
  width: 12px;
  height: 12px;
  filter: brightness(0) invert(1);
}

.discord-divider {
  height: 1px;
  background: #3F4147;
  margin: 12px 0;
}

.discord-about-section {
  background: var(--black-a20);
  border-radius: 8px;
  padding: 12px;
}

.discord-bio {
  font-size: 0.875rem;
  color: #DBDEE1;
  line-height: 1.375;
  white-space: pre-wrap;
  word-break: break-word;
  min-height: 20px;
}

.discord-bio:empty::before {
  content: 'No bio set...';
  color: var(--white-a30);
  font-style: italic;
}

.preview-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.preview-action-btn {
  background: transparent;
  border: 1px solid rgba(237, 66, 69, 0.3);
  color: #ED4245;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.preview-action-btn:hover {
  background: rgba(237, 66, 69, 0.1);
  border-color: rgba(237, 66, 69, 0.5);
}

.bot-profile-editor-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.editor-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.editor-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.editor-label-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #F2F3F5;
}

.editor-label-hint {
  font-size: 0.75rem;
  color: var(--white-a40);
}

.editor-input-wrapper {
  position: relative;
}

.editor-input, .editor-textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #3F4147;
  border-radius: 8px;
  padding: 12px 14px;
  padding-right: 60px;
  color: #F2F3F5;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.15s ease;
}

.editor-input:focus, .editor-textarea:focus {
  outline: none;
  border-color: var(--discord);
}

.editor-input::placeholder, .editor-textarea::placeholder {
  color: var(--white-a30);
}

.editor-textarea {
  resize: vertical;
  min-height: 100px;
  padding-right: 14px;
}

.editor-input-counter {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: var(--white-a40);
  pointer-events: none;
}

.editor-textarea ~ .editor-input-counter {
  top: auto;
  bottom: 12px;
  transform: none;
}

.editor-info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px;
  padding-right: 44px;
  background: var(--black-muted, #1a1a1e);
  border: 2px solid var(--white-faint);
  border-radius: var(--radius-lg, 12px);
}

.editor-info-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-ghost);
  border: none;
  color: var(--white-a40);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

.editor-info-close:hover {
  background: var(--white-a10);
  color: var(--white-a70);
}

.editor-info-close .close-icon {
  width: 12px;
  height: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

.editor-info-close:hover .close-icon {
  opacity: 0.8;
}

.editor-info-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.editor-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--white-a70);
  line-height: 1.4;
}

.editor-info-item .editor-info-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.editor-info-item i {
  color: var(--discord);
  width: 16px;
  text-align: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.bot-profile-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--white-a08);
}

.bot-profile-footer .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bot-profile-footer .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.bot-profile-save-btn.loading {
  position: relative;
  pointer-events: none;
}

.bot-profile-save-btn.loading .btn-icon {
  opacity: 0;
}

.bot-profile-save-btn.loading::after {
  content: '';
  position: absolute;
  left: 16px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--white-a30);
  border-top-color: #fff;
  border-radius: 50%;
  animation: botProfileSpin 0.8s linear infinite;
}

.btn-danger.loading {
  position: relative;
  pointer-events: none;
}

.btn-danger.loading .btn-icon {
  opacity: 0;
}

.btn-danger.loading::after {
  content: '';
  position: absolute;
  left: 16px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--white-a30);
  border-top-color: white;
  border-radius: 50%;
  animation: botProfileSpin 0.8s linear infinite;
}

.discord-message-preview {
  background: #313338;
  border-radius: 8px;
  padding: 8px 16px;
  max-width: 340px;
}

.discord-message {
  display: flex;
  gap: 16px;
  padding: 4px 0;
}

.discord-message-avatar {
  flex-shrink: 0;
}

.discord-message-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.discord-message-content {
  flex: 1;
  min-width: 0;
}

.discord-message-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.discord-message-author {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #F2F3F5;
}

.discord-message-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--discord);
  color: white;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 3px;
}

.discord-message-badge svg {
  width: 12px;
  height: 12px;
}

.discord-message-time {
  font-size: 0.75rem;
  color: #949BA4;
}

.discord-message-body {
  font-size: 0.9375rem;
  color: #DBDEE1;
  line-height: 1.375;
  word-break: break-word;
}

.discord-message-mention {
  background: var(--discord-a30);
  color: #C9CDFB;
  padding: 0 2px;
  border-radius: 3px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .bot-profile-preview-column {
    order: -1;
  }
}

@media (max-width: 900px) {
  .discord-profile-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .bot-profile-footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .bot-profile-footer .btn {
    width: 100%;
  }
}

.btn-support-tier {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black-lighter, #1a1a1a);
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 0.875rem;
  box-shadow: 4px 4px 0 var(--gold-dark);
}

.btn-support-tier:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--gold-dark);
  border-color: #FFF8DC;
}

.btn-support-tier:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--gold-dark);
}

.btn-support-tier svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.support-tier-view {
  max-width: 480px;
  margin: 0 auto;
}

.support-tier-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #b5bac1;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}

.support-tier-back:hover {
  color: #fff;
}

.support-tier-card {
  background: var(--black-muted, #1e1f22);
  border: 1px solid var(--white-faint, var(--white-a10));
  border-radius: var(--radius-lg, 12px);
  padding: 0;
  text-align: center;
  margin-bottom: 24px;
  overflow: hidden;
}

.support-tier-card-header {
  background: var(--black-light, #2b2d31);
  border-bottom: 2px solid var(--white-faint, var(--white-a10));
  padding: 20px 24px;
}

.support-tier-card-body {
  padding: 24px;
}

.support-tier-header {
  margin-bottom: 0;
}

.support-tier-icon {
  margin-bottom: 12px;
}

.support-tier-icon svg {
  color: var(--pink, #FF6B9D);
}

.support-tier-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white, #fff);
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide, 0.05em);
}

.support-tier-desc {
  color: var(--white-muted, #b5bac1);
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

.support-tier-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  text-align: left;
}

.support-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbdee1;
  font-size: 0.875rem;
}

.support-feature-item svg {
  color: #57F287;
  flex-shrink: 0;
}

.support-tier-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.billing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  background: var(--black-light, #2b2d31);
  border-radius: 8px;
}

.billing-option {
  font-size: 0.875rem;
  color: #80848e;
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}

.billing-option.active {
  color: #fff;
  font-weight: 600;
}

.billing-option .save-badge {
  display: inline-block;
  background: #C850C0;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
  margin-left: 6px;
  vertical-align: middle;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white-faint);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.toggle-slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider {
  background: #C850C0;
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.price-display {
  text-align: center;
  padding: 20px 32px;
  background: var(--black-light, #2b2d31);
  border: 1px solid var(--white-faint, var(--white-a10));
  border-radius: 8px;
  min-width: 180px;
}

.price-display .price-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.price-display .price-period {
  font-size: 1rem;
  font-weight: 400;
  color: #b5bac1;
}

.price-display .price-billed {
  display: block;
  color: #80848e;
  font-size: 0.8125rem;
  margin-top: 4px;
}

.price-display .price-note {
  display: block;
  color: #b5bac1;
  font-size: 0.75rem;
  font-style: italic;
  margin-top: 8px;
  opacity: 0.8;
}

.btn-support-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 240px;
  padding: 12px 24px;
  background: var(--black-lighter, #1a1a1a);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--pink, #FF6B9D);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast, 0.15s);
  box-shadow: 4px 4px 0 var(--pink-darker, #cc5580);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-support-checkout:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--pink-darker, #cc5580);
}

.btn-support-checkout:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--pink-darker, #cc5580);
}

.support-price-option {
  display: none;
}

.price-save {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #C850C0;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.price-label {
  display: block;
  color: #b5bac1;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.price-amount {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

.price-period {
  font-size: 0.875rem;
  font-weight: 400;
  color: #b5bac1;
}

.price-billed {
  display: block;
  color: #80848e;
  font-size: 0.6875rem;
  margin-top: 4px;
}

.support-tier-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #80848e;
  font-size: 0.75rem;
  margin-top: 20px;
}

.support-tier-note svg {
  flex-shrink: 0;
}

.support-tier-faq {
  background: var(--black-muted, #1e1f22);
  border: 1px solid var(--white-faint, var(--white-a10));
  border-radius: var(--radius-lg, 12px);
  padding: 20px 20px 20px;
  max-width: 480px;
  margin: 0 auto 40px;
}

.faq-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white, #fff);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faq-item {
  border-bottom: 1px solid var(--white-a08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  color: #dbdee1;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #fff;
}

.faq-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 16px;
}

.faq-answer p {
  margin: 0;
  color: #80848e;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-a60);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: pointer;
}

.locked-overlay.banner-locked {
  z-index: 1;
  border-radius: 8px 8px 0 0;
}

.locked-overlay.avatar-locked {
  border-radius: 50%;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.lottie-lock-container {
  width: 30px;
  height: 30px;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.locked-overlay:hover .lottie-lock-container {
  transform: scale(1.1);
}

.avatar-locked .lottie-lock-container {
  width: 30px;
  height: 30px;
}

.lottie-lock-container:empty::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 1C8.676 1 6 3.676 6 7v2H4v14h16V9h-2V7c0-3.324-2.676-6-6-6zm0 2c2.276 0 4 1.724 4 4v2H8V7c0-2.276 1.724-4 4-4zm0 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z'/%3E%3C/svg%3E");
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.lock-icon {
  color: var(--white-a70);
  filter: drop-shadow(0 2px 4px var(--black-a30));
}

.supporter-active .locked-overlay {
  display: none !important;
}

.supporter-active .field-lock-icon {
  display: none !important;
}

.editor-field.locked .editor-input, .editor-field.locked .editor-textarea {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(30, 31, 34, 0.5);
}

.editor-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.field-lock-icon {
  color: #80848e;
  flex-shrink: 0;
}

.editor-input:disabled, .editor-textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(30, 31, 34, 0.5);
}

.discord-profile-card.locked {
  position: relative;
}

.discord-profile-card.locked .discord-banner:hover .discord-banner-edit, .discord-profile-card.locked .discord-avatar:hover .discord-avatar-edit {
  opacity: 0;
}

.discord-profile-card.locked .discord-banner, .discord-profile-card.locked .discord-avatar {
  cursor: default;
}

@keyframes pulse-attention {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(200, 80, 192, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(200, 80, 192, 0);
  }
}

.pulse-attention {
  animation: pulse-attention 1s ease-out 2;
}

.dashboardCards-headerActions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dashboardCards-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--white-a20);
  color: #b5bac1;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: var(--white-ghost);
  border-color: var(--white-a30);
  color: #fff;
}

@media (max-width: 768px) {
  .support-tier-card {
    padding: 24px 16px;
    box-shadow: 4px 4px 0 rgba(184, 134, 11, 0.3);
  }
}

@media (max-width: 768px) {
  .support-tier-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .billing-toggle {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .price-display {
    padding: 20px 24px;
    min-width: auto;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .price-display .price-amount {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .btn-support-checkout {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .dashboardCards-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .dashboardCards-headerActions {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .btn-support-tier, .btn-outline {
    flex: 1;
    justify-content: center;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .support-tier-card {
    padding: 20px 12px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .support-tier-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .support-tier-desc {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .support-feature-item {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .billing-option {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .btn-support-tier, .btn-outline {
    width: 100%;
    flex: none;
  }
}

@media (max-width: 480px) {
  .faq-question {
    font-size: 0.8125rem;
  }
}

