@charset "UTF-8";
/* Default styles */
@font-face {
  font-family: "Inter";
  src: url("/static/fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-display: swap;
}
/* ============================================
   AD PAGE STYLES
   ============================================ */
.ad-notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid;
}
@media (min-width: 640px) {
  .ad-notice {
    padding: 1.25rem;
  }
}
.ad-notice--warning {
  background-color: #fef3c7;
  border-color: #fbbf24;
  color: #92400e;
}
.ad-notice--info {
  background-color: #dbeafe;
  border-color: #60a5fa;
  color: #1e40af;
}
.ad-notice__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.ad-notice__icon svg {
  width: 100%;
  height: 100%;
}
.ad-notice__content {
  flex: 1;
}
.ad-notice__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.ad-notice__text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.ad-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #4f8ff7, #3b7ce6);
}
.ad-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.ad-hero__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .ad-hero__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .ad-hero__container {
    padding: 0 3rem;
  }
}
.ad-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
}
@media (min-width: 1024px) {
  .ad-hero__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    gap: 2rem;
  }
}
.ad-hero__main {
  flex: 1;
}
.ad-hero__title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .ad-hero__title {
    font-size: 1.875rem;
  }
}
.ad-hero__description {
  color: #bfdbfe;
  font-size: 0.875rem;
  margin: 0;
}
@media (min-width: 1024px) {
  .ad-hero__description {
    font-size: 1rem;
  }
}
.ad-hero__rate {
  text-align: left;
}
@media (min-width: 1024px) {
  .ad-hero__rate {
    text-align: right;
  }
}
.ad-hero__rate-value {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .ad-hero__rate-value {
    font-size: 1.25rem;
  }
}
.ad-hero__rate-label {
  color: #bfdbfe;
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .ad-hero__rate-label {
    font-size: 1rem;
  }
}
.ad-hero__margin {
  color: #bfdbfe;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.ad-page {
  padding: 1.5rem 0;
}
@media (min-width: 1024px) {
  .ad-page {
    padding: 2rem 0;
  }
}
.ad-page__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .ad-page__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .ad-page__container {
    padding: 0 3rem;
  }
}
.ad-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .ad-page__grid {
    grid-template-columns: 1fr 400px;
    gap: 2rem;
  }
}
@media (min-width: 1280px) {
  .ad-page__grid {
    gap: 2.5rem;
  }
}
.ad-page__main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .ad-page__main {
    grid-column: 1;
  }
}
.ad-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .ad-page__sidebar {
    grid-column: 2;
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

.ad-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
}
.ad-card__header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.ad-card__header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ad-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
@media (min-width: 640px) {
  .ad-card__title {
    font-size: 1.25rem;
  }
}
.ad-card__description {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0.375rem 0 0 0;
}
.ad-card__content {
  padding: 1.5rem;
}
.ad-card__divider {
  height: 1px;
  background-color: #e5e7eb;
  margin: 1.5rem 0;
}

.ad-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.125rem 0.5rem;
  background-color: #f3f4f6;
  color: #374151;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.trade-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trade-form__inputs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .trade-form__inputs {
    grid-template-columns: 1fr 1fr;
  }
}
.trade-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trade-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
.trade-form__input-wrapper {
  position: relative;
}
.trade-form__input {
  width: 100%;
  height: 2.25rem;
  padding: 0.5rem 3rem 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  background-color: #f9fafb;
  transition: all 0.2s ease;
  outline: none;
}
@media (min-width: 768px) {
  .trade-form__input {
    font-size: 0.875rem;
  }
}
.trade-form__input:focus {
  border-color: #4f8ff7;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
}
.trade-form__input::placeholder {
  color: #9ca3af;
}
.trade-form__input-suffix {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  color: #6b7280;
  pointer-events: none;
}
.trade-form__error {
  font-size: 0.75rem;
  color: #dc2626;
}
.trade-form__limits {
  padding: 1rem;
  background-color: rgba(79, 143, 247, 0.05);
  border: 1px solid rgba(79, 143, 247, 0.2);
  border-radius: 0.5rem;
}
.trade-form__limits-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4f8ff7;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.trade-form__limits-icon svg {
  width: 1rem;
  height: 1rem;
}
.trade-form__limits-text {
  font-size: 0.875rem;
  color: #6b7280;
}
.trade-form__requirements {
  padding: 1rem;
  background-color: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 0.5rem;
}
.trade-form__requirements-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d97706;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.trade-form__requirements-icon svg {
  width: 1rem;
  height: 1rem;
}
.trade-form__requirements-text {
  font-size: 0.875rem;
  color: #78350f;
  line-height: 1.5;
}
.trade-form__requirements-met {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
}
.trade-form__requirements-unmet {
  display: inline-block;
  color: #991b1b;
  font-weight: 500;
}
.trade-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  background-color: #4f8ff7;
  color: #ffffff;
  border: none;
  border-radius: 0.375rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.trade-form__submit:hover {
  background-color: #3b7ce6;
}
.trade-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ad-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .ad-details {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .ad-details {
    grid-template-columns: repeat(4, 1fr);
  }
}
.ad-details__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ad-details__label {
  color: #6b7280;
}
.ad-details__value {
  color: #111827;
  font-weight: 500;
}

.ad-terms__title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem 0;
}
.ad-terms__content {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
  white-space: pre-wrap;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: #f9fafb;
  min-height: 120px;
  font-family: inherit;
}
.ad-terms__content p {
  margin: 0.5rem 0;
}

.ad-reviews {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ad-review {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: #f9fafb;
  border-radius: 0.5rem;
}
.ad-review__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: #4f8ff7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
.ad-review__content {
  flex: 1;
  min-width: 0;
}
.ad-review__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
}
.ad-review__user {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
}
.ad-review__icon {
  width: 0.75rem;
  height: 0.75rem;
}
.ad-review__icon--positive {
  color: #16a34a;
}
.ad-review__icon--negative {
  color: #dc2626;
}
.ad-review__icon--neutral {
  color: #6b7280;
}
.ad-review__time {
  font-size: 0.75rem;
  color: #6b7280;
}
.ad-review__text {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.trader-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trader-info__profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trader-info__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: #4f8ff7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.trader-info__details {
  flex: 1;
  min-width: 0;
}
.trader-info__name {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}
.trader-info__name a {
  color: inherit;
  text-decoration: none;
}
.trader-info__name a:hover {
  color: #4f8ff7;
}
.trader-info__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
.trader-info__indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #16a34a;
}

.trader-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.trader-stats__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
.trader-stats__label {
  color: #6b7280;
}
.trader-stats__value {
  color: #111827;
  font-weight: 500;
}
.trader-stats__value--success {
  color: #16a34a;
}

.trader-reputation__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.trader-reputation__label {
  font-size: 0.875rem;
  color: #6b7280;
}
.trader-reputation__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.trader-reputation__star {
  width: 1rem;
  height: 1rem;
  color: #fbbf24;
  fill: #fbbf24;
}
.trader-reputation__bar {
  width: 100%;
  height: 0.5rem;
  background-color: rgba(79, 143, 247, 0.2);
  border-radius: 9999px;
  overflow: hidden;
}
.trader-reputation__fill {
  height: 100%;
  background-color: #4f8ff7;
  transition: width 0.3s ease;
}
.trader-reputation__stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.trader-actions {
  display: flex;
  gap: 0.5rem;
}

.ad-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #ffffff;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.ad-btn svg {
  width: 1rem;
  height: 1rem;
}
.ad-btn:hover {
  background-color: #f9fafb;
}
.ad-btn--secondary {
  flex: 1;
}
.ad-btn--sm {
  height: 2rem;
  padding: 0 0.75rem;
}
.ad-btn--danger {
  width: 100%;
  color: #dc2626;
  border-color: #fecaca;
  background-color: #ffffff;
}
.ad-btn--danger:hover {
  background-color: #fef2f2;
  border-color: #fca5a5;
  color: #b91c1c;
}

.quick-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.quick-stats__item {
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
  border: 1px solid;
}
.quick-stats__item--positive {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
}
.quick-stats__item--positive .quick-stats__value {
  color: #16a34a;
}
.quick-stats__item--positive .quick-stats__label {
  color: #16a34a;
}
.quick-stats__item--negative {
  background-color: #fef2f2;
  border-color: #fecaca;
}
.quick-stats__item--negative .quick-stats__value {
  color: #dc2626;
}
.quick-stats__item--negative .quick-stats__label {
  color: #dc2626;
}
.quick-stats__value {
  font-size: 1.125rem;
  font-weight: 600;
}
.quick-stats__label {
  font-size: 0.75rem;
  margin-top: 0.125rem;
}
.quick-stats__volume {
  padding: 0.75rem;
  background-color: rgba(79, 143, 247, 0.05);
  border: 1px solid rgba(79, 143, 247, 0.2);
  border-radius: 0.5rem;
  text-align: center;
}
.quick-stats__volume-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: #4f8ff7;
}
.quick-stats__volume-label {
  font-size: 0.75rem;
  color: #4f8ff7;
  margin-top: 0.125rem;
}

.safety-tips {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.safety-tip {
  display: flex;
  gap: 0.75rem;
}
.safety-tip__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.safety-tip__icon svg {
  width: 1rem;
  height: 1rem;
}
.safety-tip__icon--warning {
  background-color: #fef3c7;
}
.safety-tip__icon--warning svg {
  color: #d97706;
}
.safety-tip__icon--info {
  background-color: #dbeafe;
}
.safety-tip__icon--info svg {
  color: #2563eb;
}
.safety-tip__icon--success {
  background-color: #d1fae5;
}
.safety-tip__icon--success svg {
  color: #059669;
}
.safety-tip__content {
  flex: 1;
}
.safety-tip__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.25rem 0;
}
.safety-tip__text {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   TRADE PAGE STYLES
   ============================================ */
.trade-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #fcd34d;
  background-color: #fef3c7;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .trade-warning {
    padding: 1rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .trade-warning {
    padding: 1rem 2rem;
  }
}
.trade-warning__icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 1rem;
  height: 1rem;
  color: #ea580c;
}
.trade-warning__icon svg {
  width: 100%;
  height: 100%;
}
.trade-warning__content {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.trade-warning__label {
  font-weight: 500;
  color: #9a3412;
}
.trade-warning__text {
  color: #9a3412;
}
.trade-warning--info {
  border-color: #93c5fd;
  background-color: #dbeafe;
}
.trade-warning--info .trade-warning__icon {
  color: #2563eb;
}
.trade-warning--info .trade-warning__label,
.trade-warning--info .trade-warning__text {
  color: #1e40af;
}

.trade-page {
  padding: 1.5rem 0;
}
@media (min-width: 1024px) {
  .trade-page {
    padding: 2rem 0;
  }
}
.trade-page__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .trade-page__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .trade-page__container {
    padding: 0 3rem;
  }
}
.trade-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .trade-page__grid {
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
  }
}
.trade-page__main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.trade-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .trade-page__sidebar {
    position: sticky;
    top: 6rem;
    align-self: flex-start;
  }
}

.trade-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (min-width: 1024px) {
  .trade-card--sticky {
    position: sticky;
    top: 6rem;
  }
}
.trade-card__header {
  padding: 1rem;
}
@media (min-width: 640px) {
  .trade-card__header {
    padding: 1.5rem;
  }
}
.trade-card__title-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trade-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
}
@media (min-width: 640px) {
  .trade-card__title {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.trade-card__title svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .trade-card__title svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.trade-card__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.trade-card__content {
  padding: 1rem;
  padding-top: 0;
}
@media (min-width: 640px) {
  .trade-card__content {
    padding: 1.5rem;
    padding-top: 0;
  }
}
.trade-card__divider {
  border-top: 1px solid #e5e7eb;
  margin: 1rem 0;
}
.trade-card__footer {
  text-align: center;
}

.trade-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid;
}
@media (min-width: 640px) {
  .trade-badge {
    padding: 0.25rem 0.75rem;
  }
}
.trade-badge--success {
  color: #15803d;
  background-color: transparent;
  border-color: #86efac;
}
.trade-badge--warning {
  color: #ea580c;
  background-color: transparent;
  border-color: #fdba74;
}
.trade-badge--danger {
  color: #dc2626;
  background-color: transparent;
  border-color: #fca5a5;
}
.trade-badge--info {
  color: #2563eb;
  background-color: transparent;
  border-color: #93c5fd;
}

.trade-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .trade-details {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.trade-details__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 640px) {
  .trade-details__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}
.trade-details__item--full {
  grid-column: 1/-1;
}
.trade-details__label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6b7280;
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .trade-details__label {
    gap: 0.5rem;
    font-size: 0.875rem;
  }
}
.trade-details__label svg {
  width: 0.75rem;
  height: 0.75rem;
}
@media (min-width: 640px) {
  .trade-details__label svg {
    width: 1rem;
    height: 1rem;
  }
}
.trade-details__label-mobile {
  display: inline;
}
@media (min-width: 640px) {
  .trade-details__label-mobile {
    display: none;
  }
}
.trade-details__label-desktop {
  display: none;
}
@media (min-width: 640px) {
  .trade-details__label-desktop {
    display: inline;
  }
}
.trade-details__value {
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .trade-details__value {
    font-size: 0.875rem;
  }
}
.trade-details__value--accent {
  color: #ea580c;
}
.trade-details__value-mobile {
  display: inline;
}
@media (min-width: 640px) {
  .trade-details__value-mobile {
    display: none;
  }
}
.trade-details__value-desktop {
  display: none;
}
@media (min-width: 640px) {
  .trade-details__value-desktop {
    display: inline;
  }
}
.trade-details__value-group {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .trade-details__value-group {
    gap: 0.5rem;
    font-size: 0.875rem;
  }
}
.trade-details__value-with-copy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .trade-details__value-with-copy {
    font-size: 0.875rem;
  }
}
.trade-details__link {
  color: #4f8ff7;
  cursor: pointer;
  word-break: break-all;
}
@media (min-width: 640px) {
  .trade-details__link {
    word-break: normal;
  }
}
.trade-details__link:hover {
  text-decoration: underline;
}
.trade-details__partner {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .trade-details__partner {
    gap: 0.5rem;
    font-size: 0.875rem;
  }
}
.trade-details__separator {
  color: #9ca3af;
}
@media (max-width: 639px) {
  .trade-details__separator {
    display: none;
  }
}

.trade-copy-btn {
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: all 0.2s;
  flex-shrink: 0;
  color: #9ca3af;
  background: none;
  border: none;
  cursor: pointer;
}
.trade-copy-btn:hover {
  color: #4b5563;
  background-color: #f3f4f6;
}
.trade-copy-btn svg {
  width: 0.75rem;
  height: 0.75rem;
}

.trade-chat__messages {
  min-height: 200px;
  max-height: 300px;
  background-color: #f9fafb;
  border-radius: 0.5rem;
  padding: 0.75rem;
  overflow-y: auto;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .trade-chat__messages {
    padding: 1rem;
  }
}
.trade-chat__message {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .trade-chat__message {
    gap: 0.75rem;
  }
}
.trade-chat__message:last-child {
  margin-bottom: 0;
}
.trade-chat__avatar {
  width: 2rem;
  height: 2rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}
.trade-chat__bubble {
  flex: 1;
  min-width: 0;
}
.trade-chat__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
@media (min-width: 640px) {
  .trade-chat__header {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
}
.trade-chat__username {
  font-size: 0.875rem;
  font-weight: 500;
}
.trade-chat__role {
  display: inline-block;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.trade-chat__role--maker {
  background-color: #dbeafe;
  color: #1e40af;
}
.trade-chat__role--taker {
  background-color: #dcfce7;
  color: #15803d;
}
.trade-chat__role--staff {
  background-color: #fef3c7;
  color: #9a3412;
}
.trade-chat__time {
  font-size: 0.75rem;
  color: #6b7280;
}
.trade-chat__status {
  font-size: 0.75rem;
  color: #10b981;
}
.trade-chat__status--sent {
  color: #6b7280;
}
.trade-chat__image {
  max-width: 100%;
  border-radius: 0.5rem;
  margin: 0.5rem 0;
}
.trade-chat__text {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
  white-space: pre-line;
}
.trade-chat__footer {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #e5e7eb;
}
.trade-chat__notice {
  font-size: 0.75rem;
  text-align: center;
  color: #6b7280;
}

.trade-chat-form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .trade-chat-form__wrapper {
    flex-direction: row;
  }
}
.trade-chat-form__input {
  flex: 1;
  min-height: 2.5rem;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  resize: none;
  font-size: 1rem;
}
.trade-chat-form__input:focus {
  outline: none;
  border-color: #4f8ff7;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
}
.trade-chat-form__actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.trade-chat-form__file-input {
  display: none;
}
.trade-chat-form__file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  background-color: #ffffff;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}
.trade-chat-form__file-label:hover {
  background-color: #f9fafb;
  color: #374151;
}
.trade-chat-form__file-label svg {
  width: 1.25rem;
  height: 1.25rem;
}
.trade-chat-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  color: #ffffff;
  background-color: #4f8ff7;
  flex-shrink: 0;
}
.trade-chat-form__submit:hover {
  background-color: #3b7ce6;
}
.trade-chat-form__submit svg {
  width: 1rem;
  height: 1rem;
}

.trade-terms {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .trade-terms {
    gap: 1.5rem;
  }
}
.trade-terms__section:first-child {
  background-color: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.75rem;
}
@media (min-width: 640px) {
  .trade-terms__section:first-child {
    padding: 1rem;
  }
}
.trade-terms__subtitle {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.trade-terms__content {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
}
.trade-terms__content p {
  margin-bottom: 0.5rem;
}
.trade-terms__content p:last-child {
  margin-bottom: 0;
}
.trade-terms__list {
  font-size: 0.875rem;
  color: #4b5563;
  padding-left: 1.25rem;
  list-style-type: disc;
  line-height: 1.5;
}
.trade-terms__list li {
  margin-bottom: 0.25rem;
}
.trade-terms__list li:last-child {
  margin-bottom: 0;
}

.trade-status-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trade-status-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (min-width: 640px) {
  .trade-status-item {
    gap: 1rem;
    padding: 1rem;
  }
}
.trade-status-item--success {
  background-color: #ffffff;
  border-color: #86efac;
}
.trade-status-item--success .trade-status-item__icon {
  color: #15803d;
  background-color: #dcfce7;
}
.trade-status-item--success .trade-status-item__title {
  color: #15803d;
}
.trade-status-item--active {
  background-color: #ffffff;
  border-color: #93c5fd;
}
.trade-status-item--active .trade-status-item__icon {
  color: #2563eb;
  background-color: #dbeafe;
}
.trade-status-item--active .trade-status-item__title {
  color: #2563eb;
}
.trade-status-item--danger {
  background-color: #ffffff;
  border-color: #fca5a5;
}
.trade-status-item--danger .trade-status-item__icon {
  color: #dc2626;
  background-color: #fee2e2;
}
.trade-status-item--danger .trade-status-item__title {
  color: #dc2626;
}
.trade-status-item--warning {
  background-color: #ffffff;
  border-color: #fcd34d;
}
.trade-status-item--warning .trade-status-item__icon {
  color: #ea580c;
  background-color: #fef3c7;
}
.trade-status-item--warning .trade-status-item__title {
  color: #ea580c;
}
.trade-status-item__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trade-status-item__icon svg {
  width: 1rem;
  height: 1rem;
}
.trade-status-item__content {
  flex: 1;
  min-width: 0;
}
.trade-status-item__title {
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.trade-status-item__text {
  font-size: 0.875rem;
  color: #6b7280;
}
.trade-status-item__text p {
  margin-bottom: 0.5rem;
}
.trade-status-item__text p:last-child {
  margin-bottom: 0;
}
.trade-status-item__text strong {
  font-weight: 600;
}
.trade-status-item__warning {
  font-size: 0.75rem;
  color: #2563eb;
}

.trade-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  flex-shrink: 0;
}
.trade-status-badge--success {
  background-color: #dcfce7;
  border: 1px solid #86efac;
  color: #15803d;
}
.trade-status-badge--active {
  background-color: #dbeafe;
  border: 1px solid #93c5fd;
  color: #2563eb;
}
.trade-status-badge--danger {
  background-color: #fee2e2;
  border: 1px solid #fca5a5;
  color: #dc2626;
}
.trade-status-badge--warning {
  background-color: #fef3c7;
  border: 1px solid #fcd34d;
  color: #ea580c;
}

.trade-dispute {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.trade-dispute__icon {
  width: 1rem;
  height: 1rem;
  color: #ea580c;
  margin-top: 0.125rem;
  flex-shrink: 0;
}
.trade-dispute__icon svg {
  width: 100%;
  height: 100%;
}
.trade-dispute__content {
  flex: 1;
  min-width: 0;
}
.trade-dispute__title {
  font-weight: 500;
  color: #9a3412;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.trade-dispute__text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
.trade-dispute__warning {
  background-color: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.trade-dispute__warning p {
  color: #9a3412;
  margin-bottom: 0.25rem;
}
.trade-dispute__warning p strong {
  font-weight: 600;
}
.trade-dispute__warning ul {
  margin-top: 0.25rem;
  color: #9a3412;
  list-style-type: disc;
  padding-left: 1.25rem;
}
.trade-dispute__warning ul li {
  margin-bottom: 0.25rem;
}
.trade-dispute__warning ul li:last-child {
  margin-bottom: 0;
}

.trade-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}
@media (min-width: 640px) {
  .trade-btn {
    width: auto;
  }
}
.trade-btn svg {
  width: 1rem;
  height: 1rem;
}
.trade-btn--primary {
  color: #ffffff;
  background-color: #4f8ff7;
}
.trade-btn--primary:hover {
  background-color: #3b7ce6;
}
.trade-btn--danger {
  color: #ffffff;
  background-color: #dc2626;
}
.trade-btn--danger:hover {
  background-color: #b91c1c;
}
.trade-btn--danger-outline {
  color: #dc2626;
  background-color: #ffffff;
  border-color: #fca5a5;
}
.trade-btn--danger-outline:hover {
  background-color: #fef2f2;
}

.trade-progress {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.trade-progress__step {
  display: flex;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .trade-progress__step {
    gap: 1rem;
  }
}
.trade-progress__step--active .trade-progress__number {
  background-color: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
}
.trade-progress__step--active .trade-progress__title {
  color: #1e40af;
}
.trade-progress__step--done .trade-progress__number {
  background-color: #dcfce7;
  border-color: #86efac;
  color: #15803d;
}
.trade-progress__indicator {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trade-progress__number {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid;
  background-color: #f3f4f6;
  border-color: #d1d5db;
  color: #9ca3af;
}
.trade-progress__line {
  width: 0.125rem;
  height: 2rem;
  margin-top: 0.5rem;
  background-color: #d1d5db;
}
.trade-progress__content {
  flex: 1;
  min-width: 0;
}
.trade-progress__title {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #9ca3af;
  font-size: 1rem;
}
.trade-progress__desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.trade-progress__desc strong {
  font-weight: 600;
  color: #111827;
}
.trade-progress__info {
  background-color: #dbeafe;
  border: 1px solid #93c5fd;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  color: #1e40af;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .trade-progress__info {
    padding: 0.75rem 1rem;
  }
}
.trade-progress__info p, .trade-progress__info ul {
  margin-bottom: 0.5rem;
}
.trade-progress__info p:last-child, .trade-progress__info ul:last-child {
  margin-bottom: 0;
}
.trade-progress__info ul {
  list-style-type: none;
  padding-left: 0;
}
.trade-progress__info ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.trade-progress__info ul li:last-child {
  margin-bottom: 0;
}
.trade-progress__info ul li::before {
  content: "•";
  color: #1e40af;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.trade-progress__info strong {
  font-weight: 600;
}
.trade-progress__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trade-feedback__notice {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.trade-feedback-form__options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.trade-feedback-form__option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
}
.trade-feedback-form__option:hover {
  background-color: #f9fafb;
}
.trade-feedback-form__option input[type=radio] {
  display: none;
}
.trade-feedback-form__option input[type=radio]:checked + .trade-feedback__radio::after {
  display: block;
}
.trade-feedback-form__option--positive input[type=radio]:checked ~ .trade-feedback__label {
  color: #15803d;
  font-weight: 600;
}
.trade-feedback-form__option--positive input[type=radio]:checked + .trade-feedback__radio {
  border-color: #15803d;
}
.trade-feedback-form__option--positive input[type=radio]:checked + .trade-feedback__radio::after {
  background-color: #15803d;
}
.trade-feedback-form__option--negative input[type=radio]:checked ~ .trade-feedback__label {
  color: #dc2626;
  font-weight: 600;
}
.trade-feedback-form__option--negative input[type=radio]:checked + .trade-feedback__radio {
  border-color: #dc2626;
}
.trade-feedback-form__option--negative input[type=radio]:checked + .trade-feedback__radio::after {
  background-color: #dc2626;
}
.trade-feedback-form__radio {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #d1d5db;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trade-feedback-form__radio::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  display: none;
}
.trade-feedback-form__label {
  font-size: 0.875rem;
  color: #374151;
}
.trade-feedback-form__message {
  margin-bottom: 1rem;
}
.trade-feedback-form__message-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.trade-feedback-form__textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  resize: none;
  font-size: 0.875rem;
}
.trade-feedback-form__textarea:focus {
  outline: none;
  border-color: #4f8ff7;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
}
.trade-feedback-form__hint {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.trade-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .trade-timer {
    padding: 0.75rem 1rem;
  }
}
.trade-timer__icon {
  width: 1rem;
  height: 1rem;
  color: #ea580c;
  flex-shrink: 0;
}
.trade-timer__icon svg {
  width: 100%;
  height: 100%;
}
.trade-timer__text {
  font-size: 0.875rem;
  color: #9a3412;
  font-weight: 500;
  word-break: break-word;
}
.trade-timer__text strong {
  font-weight: 600;
}

.trade-progress__step {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .trade-progress__step {
    gap: 1rem;
  }
}
.trade-progress__step:last-child {
  margin-bottom: 0;
}
.trade-progress__step--active .trade-progress__number {
  background-color: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
}
.trade-progress__step--active .trade-progress__title {
  color: #1e40af;
}
.trade-progress__step--active .trade-progress__line {
  background-color: #d1d5db;
}
.trade-progress__step--complete .trade-progress__number {
  background-color: #16a34a;
  border-color: #16a34a;
  color: white;
}
.trade-progress__step--complete .trade-progress__title {
  color: #15803d;
}
.trade-progress__step--complete .trade-progress__line {
  background-color: #16a34a;
}
.trade-progress__step--inactive .trade-progress__number {
  background-color: #f3f4f6;
  border-color: #d1d5db;
  color: #9ca3af;
}
.trade-progress__step--inactive .trade-progress__title {
  color: #9ca3af;
}
.trade-progress__step--inactive .trade-progress__desc {
  color: #9ca3af;
}
.trade-progress__step--inactive .trade-progress__line {
  background-color: #d1d5db;
}
.trade-progress__indicator {
  flex-shrink: 0;
  position: relative;
}
.trade-progress__number {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid;
}
.trade-progress__line {
  width: 0.125rem;
  height: 2rem;
  margin: 0.5rem auto 0;
}
.trade-progress__content {
  flex: 1;
  min-width: 0;
}
.trade-progress__title {
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.trade-progress__desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.trade-progress__info-box {
  background-color: #dbeafe;
  border: 1px solid #93c5fd;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .trade-progress__info-box {
    padding: 1rem;
  }
}
.trade-progress__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: #1e40af;
}
.trade-progress__list li {
  margin-bottom: 0.5rem;
}
.trade-progress__list li:last-child {
  margin-bottom: 0;
}
.trade-progress__list li::before {
  content: "•";
  color: #1e40af;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.trade-progress__list strong {
  font-weight: 600;
}
.trade-progress__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.trade-progress__actions form {
  width: 100%;
}
.trade-progress__waiting {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: italic;
  margin-top: 0.5rem;
}
.trade-progress__timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #9a3412;
  font-weight: 500;
}
@media (min-width: 640px) {
  .trade-progress__timer {
    padding: 0.75rem 1rem;
  }
}
.trade-progress__timer svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}
.trade-progress__complete, .trade-progress__cancelled, .trade-progress__disputed {
  text-align: center;
  padding: 2rem 1rem;
}
.trade-progress__complete-icon {
  margin: 0 auto 1rem;
  width: 3rem;
  height: 3rem;
  color: #16a34a;
}
.trade-progress__complete-icon svg {
  width: 100%;
  height: 100%;
}
.trade-progress__complete-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #15803d;
  margin-bottom: 0.5rem;
}
.trade-progress__complete-desc {
  font-size: 0.875rem;
  color: #6b7280;
}
.trade-progress__cancelled-icon {
  margin: 0 auto 1rem;
  width: 3rem;
  height: 3rem;
  color: #dc2626;
}
.trade-progress__cancelled-icon svg {
  width: 100%;
  height: 100%;
}
.trade-progress__cancelled-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 0.5rem;
}
.trade-progress__cancelled-desc {
  font-size: 0.875rem;
  color: #6b7280;
}
.trade-progress__disputed-icon {
  margin: 0 auto 1rem;
  width: 3rem;
  height: 3rem;
  color: #f59e0b;
}
.trade-progress__disputed-icon svg {
  width: 100%;
  height: 100%;
}
.trade-progress__disputed-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #d97706;
  margin-bottom: 0.5rem;
}
.trade-progress__disputed-desc {
  font-size: 0.875rem;
  color: #6b7280;
}
.trade-progress__not-filled {
  text-align: center;
  padding: 2rem 1rem;
}
.trade-progress__not-filled-icon {
  margin: 0 auto 1rem;
  width: 3rem;
  height: 3rem;
  color: #3b82f6;
}
.trade-progress__not-filled-icon svg {
  width: 100%;
  height: 100%;
}
.trade-progress__not-filled-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.5rem;
}
.trade-progress__not-filled-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
.trade-progress__not-filled-action {
  font-size: 0.875rem;
  color: #1e40af;
  font-weight: 500;
  margin-top: 0.5rem;
}
.trade-progress__created {
  text-align: center;
  padding: 2rem 1rem;
}
.trade-progress__created-icon {
  margin: 0 auto 1rem;
  width: 3rem;
  height: 3rem;
  color: #3b82f6;
}
.trade-progress__created-icon svg {
  width: 100%;
  height: 100%;
}
.trade-progress__created-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.5rem;
}
.trade-progress__created-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.trade-progress__created-desc strong {
  font-weight: 600;
  color: #111827;
}
.trade-progress__paid {
  text-align: center;
  padding: 2rem 1rem;
}
.trade-progress__paid-icon {
  margin: 0 auto 1rem;
  width: 3rem;
  height: 3rem;
  color: #f59e0b;
}
.trade-progress__paid-icon svg {
  width: 100%;
  height: 100%;
}
.trade-progress__paid-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #d97706;
  margin-bottom: 0.5rem;
}
.trade-progress__paid-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid transparent !important;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.btn--primary {
  color: white;
  background-color: #4F8FF7;
  border-color: transparent;
}
.btn--primary:hover {
  background-color: #3B7CE6;
}
.btn--secondary {
  color: #374151 !important;
  background-color: #f3f4f6 !important;
  border-color: #d1d5db !important;
}
.btn--secondary:hover {
  background-color: #e5e7eb !important;
}
.btn--danger-outline {
  color: #dc2626 !important;
  background-color: white !important;
  border-color: #fca5a5 !important;
}
.btn--danger-outline:hover {
  background-color: #fef2f2 !important;
}
.btn--danger {
  background-color: #dc2626;
}
.btn--warning-outline {
  color: #d97706 !important;
  background-color: white !important;
  border-color: #fcd34d !important;
  border: 1px solid !important;
}
.btn--warning-outline:hover {
  background-color: #fef3c7 !important;
}
.btn--full {
  width: 100%;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.modal:target {
  display: block;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .modal__overlay {
    padding: 1rem;
  }
}
.modal__content {
  background-color: white;
  border-radius: 0.5rem;
  max-width: 28rem;
  width: 100%;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  box-sizing: border-box;
  max-height: 90vh;
  overflow-y: auto;
}
.modal__header {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .modal__header {
    padding: 1.5rem;
  }
}
.modal__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}
.modal__close {
  font-size: 1.5rem;
  line-height: 1;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}
.modal__close:hover {
  color: #111827;
}
.modal__body {
  padding: 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .modal__body {
    padding: 1.5rem;
  }
}
.modal__text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 640px) {
  .modal__text {
    margin-bottom: 1.5rem;
  }
}
.modal__text:last-child {
  margin-bottom: 0;
}
.modal__text--warning {
  color: #dc2626;
  font-weight: 500;
}
.modal__footer {
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  box-sizing: border-box;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .modal__footer {
    padding: 1.5rem;
    flex-wrap: nowrap;
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: all 0.2s;
  box-sizing: border-box;
}
.form-input:focus {
  outline: none;
  border-color: #4F8FF7;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
}
.form-input::placeholder {
  color: #9ca3af;
}

.feedback-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #dbeafe;
  border: 1px solid #bfdbfe;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.feedback-notice svg {
  flex-shrink: 0;
  color: #4F8FF7;
  margin-top: 0.125rem;
}
.feedback-notice p {
  font-size: 0.875rem;
  color: #1e40af;
  margin: 0;
  line-height: 1.5;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feedback-rating-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feedback-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.feedback-optional {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6b7280;
}

.feedback-rating-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .feedback-rating-options {
    flex-direction: row;
    gap: 1rem;
  }
}

.feedback-rating-option {
  flex: 1;
  cursor: pointer;
  position: relative;
}
.feedback-rating-option .feedback-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.feedback-rating-option .feedback-radio-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: #ffffff;
  transition: all 0.2s ease;
}
.feedback-rating-option .feedback-radio-content:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
}
.feedback-rating-option .feedback-radio-indicator {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}
.feedback-rating-option .feedback-radio-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.feedback-rating-option .feedback-radio-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
@media (min-width: 640px) {
  .feedback-rating-option .feedback-radio-label {
    font-size: 1rem;
  }
}
.feedback-rating-option .feedback-radio:checked ~ .feedback-radio-content {
  border-width: 2px;
  background-color: rgba(79, 143, 247, 0.05);
}
.feedback-rating-option .feedback-radio:checked ~ .feedback-radio-content .feedback-radio-indicator::after {
  transform: translate(-50%, -50%) scale(1);
}
.feedback-rating-option--negative .feedback-radio:checked ~ .feedback-radio-content {
  border-color: #dc2626;
  background-color: #fef2f2;
}
.feedback-rating-option--negative .feedback-radio:checked ~ .feedback-radio-content .feedback-radio-indicator {
  border-color: #dc2626;
}
.feedback-rating-option--negative .feedback-radio:checked ~ .feedback-radio-content .feedback-radio-indicator::after {
  background-color: #dc2626;
}
.feedback-rating-option--negative .feedback-radio:checked ~ .feedback-radio-content .feedback-radio-label {
  color: #991b1b;
}
.feedback-rating-option--positive .feedback-radio:checked ~ .feedback-radio-content {
  border-color: #16a34a;
  background-color: #f0fdf4;
}
.feedback-rating-option--positive .feedback-radio:checked ~ .feedback-radio-content .feedback-radio-indicator {
  border-color: #16a34a;
}
.feedback-rating-option--positive .feedback-radio:checked ~ .feedback-radio-content .feedback-radio-indicator::after {
  background-color: #16a34a;
}
.feedback-rating-option--positive .feedback-radio:checked ~ .feedback-radio-content .feedback-radio-label {
  color: #166534;
}
.feedback-rating-option--trustworthy .feedback-radio:checked ~ .feedback-radio-content {
  border-color: #4F8FF7;
  background-color: #dbeafe;
}
.feedback-rating-option--trustworthy .feedback-radio:checked ~ .feedback-radio-content .feedback-radio-indicator {
  border-color: #4F8FF7;
}
.feedback-rating-option--trustworthy .feedback-radio:checked ~ .feedback-radio-content .feedback-radio-indicator::after {
  background-color: #4F8FF7;
}
.feedback-rating-option--trustworthy .feedback-radio:checked ~ .feedback-radio-content .feedback-radio-label {
  color: #1e40af;
}

.feedback-message-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feedback-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  line-height: 1.5;
  resize: vertical;
  min-height: 5rem;
  transition: all 0.2s ease;
}
.feedback-textarea:focus {
  outline: none;
  border-color: #4F8FF7;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
}
.feedback-textarea::placeholder {
  color: #9ca3af;
}

.feedback-hint {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}

.feedback-submit-section {
  display: flex;
  justify-content: flex-end;
}
.feedback-submit-section .btn--full {
  width: 100%;
}
@media (min-width: 640px) {
  .feedback-submit-section .btn--full {
    width: auto;
    min-width: 150px;
  }
}

.trade-card__description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

/* ============================================
   TRADES PAGE STYLES
   ============================================ */
.trades-page {
  padding: 2rem 0;
  min-height: calc(100vh - 200px);
}
.trades-page__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .trades-page__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .trades-page__container {
    padding: 0 3rem;
  }
}
.trades-page__header {
  margin-bottom: 2rem;
}
.trades-page__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .trades-page__title {
    font-size: 2.25rem;
  }
}
.trades-page__subtitle {
  font-size: 1rem;
  color: #6b7280;
}

.trades-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e5e7eb;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.trades-tabs::-webkit-scrollbar {
  display: none;
}
.trades-tabs__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .trades-tabs__item {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
.trades-tabs__item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.trades-tabs__item:hover {
  color: #4F8FF7;
  background-color: #f3f4f6;
}
.trades-tabs__item--active {
  color: #4F8FF7;
  border-bottom-color: #4F8FF7;
}
.trades-tabs__item--active:hover {
  background-color: transparent;
}

.trades-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.trades-empty {
  text-align: center;
  padding: 4rem 2rem;
}
.trades-empty__icon {
  margin: 0 auto 1.5rem;
  width: 4rem;
  height: 4rem;
  color: #d1d5db;
}
.trades-empty__icon svg {
  width: 100%;
  height: 100%;
}
.trades-empty__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.trades-empty__desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.trades-table__wrapper {
  overflow-x: auto;
}
.trades-table__content {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}
.trades-table__head {
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.trades-table__header {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .trades-table__header {
    padding: 1rem 1.5rem;
  }
}
.trades-table__header--action {
  text-align: center;
}
.trades-table__body {
  background-color: white;
}
.trades-table__row {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s;
}
.trades-table__row:hover {
  background-color: #f9fafb;
}
.trades-table__row:last-child {
  border-bottom: none;
}
.trades-table__cell {
  padding: 1rem;
  font-size: 0.875rem;
  color: #374151;
}
@media (min-width: 768px) {
  .trades-table__cell {
    padding: 1rem 1.5rem;
  }
}
.trades-table__cell--action {
  text-align: center;
}
.trades-table__link {
  color: #4F8FF7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.trades-table__link:hover {
  color: #3B7CE6;
  text-decoration: underline;
}

.trades-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.trades-badge--buy {
  background-color: #dbeafe;
  color: #1e40af;
}
.trades-badge--sell {
  background-color: #fce7f3;
  color: #be185d;
}

.trades-amount {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.trades-amount__crypto {
  font-weight: 500;
  color: #111827;
}
.trades-amount__fiat {
  font-size: 0.75rem;
  color: #6b7280;
}

.trades-payment {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trades-payment img {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.trades-status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.trades-status--active {
  background-color: #dbeafe;
  color: #1e40af;
}
.trades-status--warning {
  background-color: #fef3c7;
  color: #d97706;
}
.trades-status--success {
  background-color: #d1fae5;
  color: #065f46;
}
.trades-status--danger {
  background-color: #fee2e2;
  color: #991b1b;
}
.trades-status--muted {
  background-color: #f3f4f6;
  color: #6b7280;
}

.trades-date {
  font-size: 0.875rem;
  color: #6b7280;
}

.trades-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (min-width: 768px) {
  .trades-pagination {
    flex-wrap: nowrap;
  }
}
.trades-pagination__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  background-color: white;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.2s;
}
.trades-pagination__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.trades-pagination__btn:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}
.trades-pagination__btn--prev {
  order: 1;
}
.trades-pagination__btn--next {
  order: 3;
}
@media (min-width: 768px) {
  .trades-pagination__btn--next {
    order: 2;
  }
}
.trades-pagination__pages {
  display: flex;
  gap: 0.25rem;
  order: 2;
  width: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .trades-pagination__pages {
    width: auto;
    order: 2;
  }
}
.trades-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  background-color: white;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.2s;
}
.trades-pagination__page:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}
.trades-pagination__page--active {
  background-color: #4F8FF7;
  border-color: #4F8FF7;
  color: white;
}
.trades-pagination__page--active:hover {
  background-color: #3B7CE6;
  border-color: #3B7CE6;
}

.btn--sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .trades-table__wrapper {
    overflow-x: visible;
  }
  .trades-table__content {
    min-width: auto;
  }
  .trades-table__head {
    display: none;
  }
  .trades-table__row {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  .trades-table__cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f3f4f6;
  }
  .trades-table__cell:last-child {
    border-bottom: none;
  }
  .trades-table__cell::before {
    content: attr(data-label);
    font-weight: 500;
    color: #6b7280;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .trades-table__cell--action {
    justify-content: center;
  }
  .trades-table__cell--action::before {
    display: none;
  }
}
/* ============================================
   REGISTER PAGE STYLES
   ============================================ */
.register-page {
  padding: 2rem 1rem;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .register-page {
    padding: 3rem 3rem;
  }
}
.register-page__container {
  width: 100%;
  margin: 0 auto;
}

.register-card {
  background-color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  overflow: hidden;
}
.register-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
}
@media (min-width: 1024px) {
  .register-card__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.register-features {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .register-features {
    padding: 3rem;
  }
}

.register-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.register-feature__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-color: #10b981;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.register-feature__icon-svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}
.register-feature__content {
  flex: 1;
}
.register-feature__title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}
.register-feature__desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.register-form-section {
  padding: 2rem;
  background-color: #f9fafb;
}
@media (min-width: 1024px) {
  .register-form-section {
    padding: 3rem;
  }
}

.register-form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.register-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.register-form-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.register-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.register-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
.register-form__input, .register-form__select {
  width: 100%;
  height: 2.25rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  color: #111827;
  background-color: white;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  outline: none;
  transition: all 0.2s;
}
.register-form__input::placeholder, .register-form__select::placeholder {
  color: #9ca3af;
}
.register-form__input:focus, .register-form__select:focus {
  border-color: #4F8FF7;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
}
.register-form__select {
  cursor: pointer;
}
.register-form__input-wrapper {
  position: relative;
}
.register-form__toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #9ca3af;
  transition: color 0.2s;
}
.register-form__toggle:hover {
  color: #111827;
}
.register-form__toggle svg {
  width: 1rem;
  height: 1rem;
}
.register-form__warning {
  padding: 0.75rem;
  background-color: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 0.5rem;
}
.register-form__warning p {
  font-size: 0.875rem;
  color: #92400e;
  line-height: 1.6;
  margin: 0;
}
.register-form__warning p strong {
  font-weight: 600;
}
.register-form__error {
  font-size: 0.75rem;
  color: #ef4444;
}
.register-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.register-form__checkbox-input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  border-radius: 0.25rem;
  border: 1px solid #d1d5db;
  cursor: pointer;
  accent-color: #4F8FF7;
}
.register-form__checkbox-label {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
  cursor: pointer;
}
.register-form__link {
  color: #4F8FF7;
  text-decoration: underline;
  transition: color 0.2s;
}
.register-form__link:hover {
  color: #3B7CE6;
}
.register-form__referral {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.register-form__referral-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.register-form__referral-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4F8FF7;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.register-form__referral-toggle:hover {
  color: #3B7CE6;
}
.register-form__referral-toggle .referral-chevron {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}
.register-form__referral-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}
.register-form__referral-checkbox:checked ~ .register-form__referral-content {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.5rem;
}
.register-form__referral-checkbox:checked ~ .register-form__referral-toggle .referral-chevron {
  transform: rotate(180deg);
}
.register-form__submit {
  width: 100%;
  height: 2.75rem;
  padding: 0 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background-color: #4F8FF7;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.register-form__submit:hover {
  background-color: #3B7CE6;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.register-form__submit:active {
  transform: scale(0.98);
}

.register-form__footer {
  margin-top: 1.5rem;
  text-align: center;
}
.register-form__footer p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

@media (max-width: 1023px) {
  .register-features {
    border-bottom: 1px solid #e5e7eb;
  }
}
/* Settings Page Styles */
.settings-page {
  flex: 1;
  padding: 0.75rem 0;
}
@media (min-width: 640px) {
  .settings-page {
    padding: 1rem 0;
  }
}
@media (min-width: 1024px) {
  .settings-page {
    padding: 1.5rem 0;
  }
}

.settings-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .settings-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .settings-container {
    padding: 0 2rem;
  }
}
@media (min-width: 1280px) {
  .settings-container {
    padding: 0 3rem;
  }
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .breadcrumb-nav {
    margin-bottom: 1.5rem;
  }
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #a1a1aa;
}
@media (min-width: 640px) {
  .breadcrumb-list {
    gap: 0.625rem;
    font-size: 1rem;
  }
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.breadcrumb-link {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb-link:hover {
  color: #4f8ff7;
}

.breadcrumb-separator {
  color: #a1a1aa;
}
.breadcrumb-separator svg {
  width: 0.875rem;
  height: 0.875rem;
}

.breadcrumb-current {
  color: #4f8ff7;
  font-weight: 500;
}

/* Page Header */
.settings-page-header {
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .settings-page-header {
    margin-bottom: 2rem;
  }
}

.settings-page-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  .settings-page-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .settings-page-title {
    font-size: 1.875rem;
  }
}

.settings-page-subtitle {
  color: #a1a1aa;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .settings-page-subtitle {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .settings-page-subtitle {
    font-size: 1.125rem;
  }
}

/* Alert/Notice Box */
.settings-alert {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  background-color: rgba(79, 143, 247, 0.1019607843);
  border-color: rgba(79, 143, 247, 0.3019607843);
}
@media (min-width: 640px) {
  .settings-alert {
    padding: 1rem 1.25rem;
  }
}

.settings-alert-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #4f8ff7;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .settings-alert-title {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
}

.settings-alert-text {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #374151;
}
@media (min-width: 640px) {
  .settings-alert-text {
    font-size: 0.875rem;
  }
}
.settings-alert-text a {
  color: #4f8ff7;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}
.settings-alert-text a:hover {
  text-decoration: underline;
}

.settings-alert-warning {
  background-color: #fef3c7;
  border-color: #f59e0b;
}
.settings-alert-warning .settings-alert-title {
  color: #92400e;
}
.settings-alert-warning .settings-alert-text {
  color: #92400e;
}

/* Tabs Container */
.settings-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .settings-tabs {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}

.settings-tabs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
  padding: 0.25rem;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
}
@media (min-width: 640px) {
  .settings-tabs-list {
    gap: 0.5rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.settings-tab-input {
  display: none;
}

.settings-tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem;
  font-weight: 500;
  font-size: 0.75rem;
  color: #374151;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .settings-tab-btn {
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }
}
.settings-tab-btn svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .settings-tab-btn svg {
    width: 1rem;
    height: 1rem;
  }
}
.settings-tab-btn .tab-text-short {
  display: inline;
}
@media (min-width: 640px) {
  .settings-tab-btn .tab-text-short {
    display: none;
  }
}
.settings-tab-btn .tab-text-full {
  display: none;
}
@media (min-width: 640px) {
  .settings-tab-btn .tab-text-full {
    display: inline;
  }
}
.settings-tab-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.settings-tab-input:checked + .settings-tab-btn {
  background-color: #ffffff;
  color: #111827;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Tab Content */
.settings-tab-content {
  display: none;
  flex: 1;
}
.settings-tab-content.active {
  display: block;
}

/* Settings Grid */
.settings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .settings-grid {
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .settings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .settings-grid-full {
    grid-column: 1/-1;
  }
}

/* Settings Card */
.settings-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.settings-card-header {
  padding: 1rem;
}
@media (min-width: 640px) {
  .settings-card-header {
    padding: 1.5rem;
  }
}

.settings-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
@media (min-width: 640px) {
  .settings-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
  }
}
.settings-card-title svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #4f8ff7;
}
@media (min-width: 640px) {
  .settings-card-title svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.settings-card-description {
  color: #a1a1aa;
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .settings-card-description {
    font-size: 0.875rem;
  }
}

.settings-card-content {
  padding: 0 1rem 1rem;
}
@media (min-width: 640px) {
  .settings-card-content {
    padding: 0 1.5rem 1.5rem;
  }
}

/* Settings Item */
.settings-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .settings-item {
    align-items: center;
    margin-bottom: 1rem;
  }
}
.settings-item:last-child {
  margin-bottom: 0;
}

.settings-item-info {
  flex: 1;
  min-width: 0;
}

.settings-item-label {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
  display: block;
}
@media (min-width: 640px) {
  .settings-item-label {
    font-size: 1rem;
  }
}

.settings-item-description {
  font-size: 0.75rem;
  color: #a1a1aa;
  padding-right: 0.5rem;
}

/* Toggle Switch */
.settings-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 2rem;
  height: 1.15rem;
  background-color: #d1d5db;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}
.settings-toggle input[type=checkbox],
.settings-toggle input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.settings-toggle .settings-toggle-slider {
  display: none;
}
.settings-toggle::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  transform: translateX(0);
}
.settings-toggle:has(input[type=checkbox]:checked), .settings-toggle:has(input[type=radio]:checked) {
  background-color: #4f8ff7;
}
.settings-toggle:has(input[type=checkbox]:checked)::after, .settings-toggle:has(input[type=radio]:checked)::after {
  transform: translateX(calc(100% - 2px));
}

/* Separator */
.settings-separator {
  height: 1px;
  background-color: #e5e7eb;
  margin: 0.75rem 0;
}
@media (min-width: 640px) {
  .settings-separator {
    margin: 1rem 0;
  }
}

/* Form Group */
.settings-form-group {
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .settings-form-group {
    margin-bottom: 1rem;
  }
}
.settings-form-group:last-child {
  margin-bottom: 0;
}

.settings-form-label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .settings-form-label {
    font-size: 1rem;
  }
}

.settings-form-select,
.settings-form-input,
.settings-form-textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: #f9fafb;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
@media (min-width: 640px) {
  .settings-form-select,
  .settings-form-input,
  .settings-form-textarea {
    font-size: 1rem;
  }
}
.settings-form-select:hover,
.settings-form-input:hover,
.settings-form-textarea:hover {
  background-color: #f3f4f6;
}
.settings-form-select:focus,
.settings-form-input:focus,
.settings-form-textarea:focus {
  outline: none;
  border-color: #4f8ff7;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
}

.settings-form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.settings-form-hint {
  font-size: 0.75rem;
  color: #a1a1aa;
  margin-top: 0.25rem;
}

/* Button Actions */
.settings-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .settings-actions {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.settings-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  border: 1px solid;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.settings-btn-outline {
  background-color: transparent;
  border-color: #4f8ff7;
  color: #4f8ff7;
}
.settings-btn-outline:hover {
  background-color: rgba(79, 143, 247, 0.05);
}

.settings-btn-primary {
  background-color: #4f8ff7;
  border-color: #4f8ff7;
  color: #ffffff;
}
.settings-btn-primary:hover {
  background-color: #3b7ce6;
}

/* Save Button Container */
.settings-save-container {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .settings-save-container {
    padding-top: 1rem;
  }
}

.settings-save-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  border: 1px solid #4f8ff7;
  background-color: #4f8ff7;
  color: #ffffff;
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
}
@media (min-width: 640px) {
  .settings-save-btn {
    width: auto;
    padding: 0.5rem 2rem;
    font-size: 0.92rem;
  }
}
.settings-save-btn:hover {
  background-color: #3b7ce6;
}

/* Locale Preferences Grid */
.settings-locale-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .settings-locale-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Danger Zone */
.settings-danger-zone {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.settings-danger-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 1rem;
}

.settings-danger-btn {
  background-color: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
}
.settings-danger-btn:hover {
  background-color: #b91c1c;
}

/* Delete Account Modal Overlay - Separate from exchange rate modal */
.delete-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.delete-modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-checkbox:checked ~ .delete-modal-overlay {
  display: block;
}

.modal-checkbox:checked ~ .delete-modal-container {
  display: flex;
}

.modal-dialog {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #6b7280;
  transition: color 0.2s ease;
}
.modal-close:hover {
  color: #111827;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* About Page Styles */
.about-page {
  width: 100%;
  /* Container */
  /* Hero Section */
  /* Badge */
  /* Light Section */
  /* Dark Section */
  /* Section Header */
  /* Cards Grid */
  /* Card */
  /* Info Box */
  /* Features List */
  /* CTA Section */
  /* Guides Grid */
  /* Steps */
  /* FAQ */
  /* Support Box */
  /* Community Box */
  /* Featured Section */
}
.about-page .about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}
@media (min-width: 1024px) {
  .about-page .about-container {
    padding: 0 3rem;
  }
}
.about-page .about-hero {
  position: relative;
  padding: 4rem 0 5rem;
  background-color: #0a0a0a;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .about-page .about-hero {
    padding: 5rem 0 8rem;
  }
}
.about-page .about-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 143, 247, 0.05) 0%, transparent 50%);
}
.about-page .about-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(79, 143, 247, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 143, 247, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.about-page .about-hero__content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media (min-width: 1024px) {
  .about-page .about-hero__content {
    padding: 0 2rem;
  }
}
.about-page .about-hero__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .about-page .about-hero__title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-hero__title {
    font-size: 3.75rem;
    margin-bottom: 2rem;
  }
}
.about-page .about-hero__text {
  font-size: 1rem;
  color: #a1a1aa;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .about-page .about-hero__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-hero__text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}
.about-page .about-hero__subtext {
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.6;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .about-page .about-hero__subtext {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-hero__subtext {
    font-size: 1.125rem;
  }
}
.about-page .about-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(79, 143, 247, 0.1019607843);
  border: 1px solid rgba(79, 143, 247, 0.3019607843);
  color: #4f8ff7;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .about-page .about-badge {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.about-page .about-light-section {
  background-color: #ffffff;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .about-page .about-light-section {
    padding: 5rem 0;
  }
}
@media (min-width: 1280px) {
  .about-page .about-light-section {
    padding: 7rem 0;
  }
}
.about-page .about-dark-section {
  position: relative;
  background-color: #0a0a0a;
  padding: 4rem 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .about-page .about-dark-section {
    padding: 5rem 0;
  }
}
@media (min-width: 1280px) {
  .about-page .about-dark-section {
    padding: 7rem 0;
  }
}
.about-page .about-dark-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 143, 247, 0.05) 0%, transparent 50%);
}
.about-page .about-dark-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(79, 143, 247, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 143, 247, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.about-page .about-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .about-page .about-section-header {
    margin-bottom: 4rem;
  }
}
.about-page .about-section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .about-page .about-section-header h2 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}
.about-dark-section .about-page .about-section-header h2 {
  color: #ffffff;
}
.about-page .about-section-desc {
  font-size: 1rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .about-page .about-section-desc {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-section-desc {
    font-size: 1.25rem;
  }
}
.about-dark-section .about-page .about-section-desc {
  color: #a1a1aa;
}
.about-page .about-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .about-page .about-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.about-page .about-cards-grid--dark {
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  .about-page .about-cards-grid--dark {
    margin-top: 4rem;
  }
}
.about-page .about-card {
  border-radius: 0.75rem;
  border: 1px solid;
  text-align: center;
  padding: 1rem;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .about-page .about-card {
    padding: 1.5rem;
  }
}
.about-page .about-card--light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, #ffffff 100%);
  border-color: rgba(38, 38, 38, 0.5);
  backdrop-filter: blur(4px);
}
.about-page .about-card--light:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.about-page .about-card--dark {
  background: rgba(17, 17, 17, 0.5);
  border-color: rgba(38, 38, 38, 0.5);
  backdrop-filter: blur(4px);
}
.about-page .about-card--dark:hover {
  background: rgba(17, 17, 17, 0.7);
}
.about-page .about-card__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .about-page .about-card__icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .about-page .about-card__icon {
    width: 5rem;
    height: 5rem;
  }
}
.about-page .about-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 1024px) {
  .about-page .about-card__icon svg {
    width: 2rem;
    height: 2rem;
  }
}
@media (min-width: 1280px) {
  .about-page .about-card__icon svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.about-page .about-card__icon--blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #4f8ff7;
}
.about-page .about-card__icon--dark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(79, 143, 247, 0.2) 0%, rgba(79, 143, 247, 0.3) 100%);
}
@media (min-width: 1024px) {
  .about-page .about-card__icon--dark {
    width: 3rem;
    height: 3rem;
  }
}
@media (min-width: 1280px) {
  .about-page .about-card__icon--dark {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.about-page .about-card__icon--dark svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #4f8ff7;
}
@media (min-width: 1024px) {
  .about-page .about-card__icon--dark svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .about-page .about-card__icon--dark svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.about-page .about-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}
@media (min-width: 768px) {
  .about-page .about-card h3 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
.about-page .about-card--dark h3 {
  color: #ffffff;
}
@media (min-width: 1024px) {
  .about-page .about-card--dark h3 {
    margin-bottom: 0.75rem;
  }
}
.about-page .about-card p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .about-page .about-card p {
    font-size: 1rem;
  }
}
.about-page .about-card--dark p {
  font-size: 0.75rem;
  color: #a1a1aa;
}
@media (min-width: 768px) {
  .about-page .about-card--dark p {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-card--dark p {
    font-size: 1rem;
  }
}
.about-page .about-info-box {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  border: 1px solid #bfdbfe;
  text-align: center;
}
@media (min-width: 1024px) {
  .about-page .about-info-box {
    margin-top: 3rem;
    padding: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .about-page .about-info-box {
    margin-top: 4rem;
    padding: 2rem;
  }
}
.about-page .about-info-box h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .about-page .about-info-box h3 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-info-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1280px) {
  .about-page .about-info-box h3 {
    font-size: 1.5rem;
  }
}
.about-page .about-info-box p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about-page .about-info-box p {
    font-size: 1rem;
  }
}
.about-page .about-features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .about-page .about-features-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-features-list {
    margin-bottom: 4rem;
  }
}
.about-page .about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #a1a1aa;
  position: relative;
}
@media (min-width: 768px) {
  .about-page .about-feature-item {
    font-size: 0.875rem;
  }
}
.about-page .about-feature-check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-page .about-feature-check svg {
  width: 0.75rem;
  height: 0.75rem;
  color: #22c55e;
}
.about-page .about-cta-header {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}
.about-page .about-cta-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .about-page .about-cta-header h2 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-cta-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}
.about-page .about-cta-header > p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .about-page .about-cta-header > p {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-cta-header > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1280px) {
  .about-page .about-cta-header > p {
    margin-bottom: 3rem;
  }
}
.about-page .about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #4f8ff7;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .about-page .about-cta-btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}
.about-page .about-cta-btn:hover {
  background-color: #3b7ce6;
}
.about-page .about-cta-btn svg {
  width: 1rem;
  height: 1rem;
}
@media (min-width: 1024px) {
  .about-page .about-cta-btn svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.about-page .about-quick-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto 2rem;
}
@media (min-width: 640px) {
  .about-page .about-quick-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-quick-stats {
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
.about-page .about-quick-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .about-page .about-quick-stat {
    justify-content: flex-start;
  }
}
.about-page .about-quick-stat__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .about-page .about-quick-stat__icon {
    width: 2rem;
    height: 2rem;
  }
}
.about-page .about-quick-stat__icon svg {
  width: 0.875rem;
  height: 0.875rem;
  color: #4f8ff7;
}
@media (min-width: 1024px) {
  .about-page .about-quick-stat__icon svg {
    width: 1rem;
    height: 1rem;
  }
}
.about-page .about-quick-stat span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
@media (min-width: 1024px) {
  .about-page .about-quick-stat span {
    font-size: 1rem;
  }
}
.about-page .about-guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .about-page .about-guides-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
  }
}
.about-page .about-guide-section {
  text-align: left;
}
.about-page .about-guide-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .about-page .about-guide-section h3 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-guide-section h3 {
    font-size: 1.5rem;
  }
}
.about-page .about-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-page .about-step {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, #ffffff 100%);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-page .about-step--blue {
  background: linear-gradient(135deg, #dbeafe 0%, #ffffff 100%);
  border-color: #bfdbfe;
}
.about-page .about-step--green {
  background: linear-gradient(135deg, #dcfce7 0%, #ffffff 100%);
  border-color: #bbf7d0;
}
.about-page .about-step--purple {
  background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%);
  border-color: #d8b4fe;
}
.about-page .about-step__number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.about-page .about-step--blue .about-page .about-step__number {
  background-color: #bfdbfe;
  color: #1e40af;
}
.about-page .about-step--green .about-page .about-step__number {
  background-color: #bbf7d0;
  color: #15803d;
}
.about-page .about-step--purple .about-page .about-step__number {
  background-color: #d8b4fe;
  color: #7e22ce;
}
.about-page .about-step__content {
  flex: 1;
}
.about-page .about-step__content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .about-page .about-step__content h4 {
    font-size: 1.125rem;
  }
}
.about-page .about-step__content p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .about-page .about-step__content p {
    font-size: 1rem;
  }
}
.about-page .about-safety-tip {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
}
.about-page .about-safety-tip p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .about-page .about-safety-tip p {
    font-size: 1rem;
  }
}
.about-page .about-safety-tip p strong {
  color: #1a1a1a;
}
.about-page .about-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about-page .about-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}
.about-page .about-faq-toggle {
  display: none;
}
.about-page .about-faq-toggle:checked ~ .about-faq-answer {
  max-height: 500px;
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
}
.about-page .about-faq-toggle:checked ~ .about-faq-question svg {
  transform: rotate(180deg);
}
.about-page .about-faq-question {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}
@media (min-width: 768px) {
  .about-page .about-faq-question {
    font-size: 1rem;
  }
}
.about-page .about-faq-question:hover {
  background-color: rgba(79, 143, 247, 0.05);
}
.about-page .about-faq-question svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .about-page .about-faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.about-page .about-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 1rem;
}
.about-page .about-faq-answer p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .about-page .about-faq-answer p {
    font-size: 1rem;
  }
}
.about-page .about-support-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: #1a1a1a;
  text-align: center;
}
.about-page .about-support-box h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .about-page .about-support-box h4 {
    font-size: 1.125rem;
  }
}
.about-page .about-support-box p {
  font-size: 0.875rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .about-page .about-support-box p {
    font-size: 1rem;
  }
}
.about-page .about-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid #4b5563;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.about-page .about-support-btn:hover {
  background-color: #374151;
}
.about-page .about-community-box {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f1f5f9 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  text-align: center;
}
@media (min-width: 1024px) {
  .about-page .about-community-box {
    margin-top: 3rem;
    padding: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .about-page .about-community-box {
    margin-top: 4rem;
    padding: 2rem;
  }
}
.about-page .about-community-box h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .about-page .about-community-box h3 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-community-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1280px) {
  .about-page .about-community-box h3 {
    font-size: 1.5rem;
  }
}
.about-page .about-community-box p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .about-page .about-community-box p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-community-box p {
    margin-bottom: 2rem;
  }
}
.about-page .about-social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .about-page .about-social-buttons {
    gap: 0.75rem;
  }
}
@media (min-width: 1280px) {
  .about-page .about-social-buttons {
    gap: 1rem;
  }
}
.about-page .about-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  color: #1f2937;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
@media (min-width: 1024px) {
  .about-page .about-social-btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    gap: 0.5rem;
  }
}
.about-page .about-social-btn:hover {
  background-color: #dbeafe;
  border-color: #bfdbfe;
}
.about-page .about-social-btn svg {
  width: 0.875rem;
  height: 0.875rem;
}
@media (min-width: 1024px) {
  .about-page .about-social-btn svg {
    width: 1rem;
    height: 1rem;
  }
}
.about-page .about-featured {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(38, 38, 38, 0.5);
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}
@media (min-width: 1024px) {
  .about-page .about-featured {
    padding: 4rem 0 2rem;
  }
}
.about-page .about-featured h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .about-page .about-featured h2 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-featured h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }
}
.about-page .about-featured-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .about-page .about-featured-logos {
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-featured-logos {
    gap: 3rem;
  }
}
@media (min-width: 1280px) {
  .about-page .about-featured-logos {
    gap: 4rem;
  }
}
.about-page .about-featured-logo {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.about-page .about-featured-logo:hover {
  opacity: 1;
}
.about-page .about-featured-text {
  color: #1f2937;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4;
  white-space: pre-line;
}
@media (min-width: 768px) {
  .about-page .about-featured-text {
    font-size: 1rem;
  }
}
.about-page .about-featured-text--large {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .about-page .about-featured-text--large {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-featured-text--large {
    font-size: 1.5rem;
  }
}
.about-page .about-featured-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-page .about-featured-title {
  color: #1f2937;
  font-weight: 700;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .about-page .about-featured-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .about-page .about-featured-title {
    font-size: 1.25rem;
  }
}
.about-page .about-featured-subtitle {
  font-size: 0.625rem;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .about-page .about-featured-subtitle {
    font-size: 0.75rem;
  }
}
.about-page .about-featured-icon {
  width: 1.25rem;
  height: 1.25rem;
  background-color: #1f2937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .about-page .about-featured-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.about-page .about-featured-icon::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background-color: #ffffff;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .about-page .about-featured-icon::after {
    width: 0.75rem;
    height: 0.75rem;
  }
}

/* Support Pages Styles */
.support-page {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
@media (min-width: 1024px) {
  .support-page {
    padding-top: 2rem;
  }
}

/* Support Header */
.support-header {
  margin-bottom: 1.5rem;
}
.support-header .page-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .support-header .page-title {
    font-size: 2.25rem;
  }
}
.support-header .page-subtitle {
  color: #6b7280;
  font-size: 1rem;
}

/* Alert Boxes */
.support-alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid;
}
.support-alert--info {
  background-color: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
}
.support-alert--warning {
  background-color: #fef3c7;
  border-color: #fcd34d;
  color: #92400e;
}
.support-alert p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
.support-alert a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}
.support-alert a:hover {
  opacity: 0.8;
}

/* Support Card */
.support-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .support-card {
    padding: 2rem;
  }
}
.support-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

/* Ticket Form */
.ticket-form .form-group {
  margin-bottom: 1.25rem;
}
.ticket-form .form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}
.ticket-form .form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  background-color: #ffffff;
  color: #1f2937;
}
.ticket-form .form-control:focus {
  outline: none;
  border-color: #4f8ff7;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
}
.ticket-form .form-control:disabled {
  background-color: #f9fafb;
  color: #9ca3af;
  cursor: not-allowed;
}
.ticket-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.ticket-form .captcha-group {
  text-align: center;
}
.ticket-form .captcha-group img {
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  max-width: 20rem;
}
.ticket-form .btn-submit {
  background-color: #4f8ff7;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ticket-form .btn-submit:hover {
  background-color: #3b7ce6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 143, 247, 0.3);
}
.ticket-form .btn-submit:active {
  transform: translateY(0);
}

/* Ticket List Table */
.ticket-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.ticket-table thead {
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.ticket-table th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ticket-table td {
  padding: 1rem;
  font-size: 0.875rem;
  color: #374151;
  border-top: 1px solid #f3f4f6;
}
.ticket-table tbody tr {
  transition: background-color 0.2s ease;
}
.ticket-table tbody tr:hover {
  background-color: #f9fafb;
}
.ticket-table .ticket-id {
  font-family: monospace;
  font-weight: 600;
  color: #1f2937;
}
.ticket-table .ticket-date {
  color: #6b7280;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}
.status-badge--unanswered {
  background-color: #fef3c7;
  color: #92400e;
}
.status-badge--answered {
  background-color: #dbeafe;
  color: #1e40af;
}
.status-badge--closed {
  background-color: #f3f4f6;
  color: #4b5563;
}

/* Ticket View Page */
.ticket-view-page .ticket-header {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .ticket-view-page .ticket-header {
    padding: 2rem;
  }
}
.ticket-view-page .ticket-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .ticket-view-page .ticket-meta {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .ticket-view-page .ticket-meta {
    grid-template-columns: repeat(4, 1fr);
  }
}
.ticket-view-page .meta-item .meta-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ticket-view-page .meta-item .meta-value {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}
.ticket-view-page .ticket-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.ticket-view-page .ticket-category .category-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}
.ticket-view-page .ticket-category .category-value {
  font-weight: 600;
  color: #1f2937;
}
.ticket-view-page .ticket-content .content-label {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.ticket-view-page .ticket-content textarea {
  width: 100%;
  min-height: 120px;
  padding: 0.875rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #1f2937;
  background-color: #f9fafb;
  resize: vertical;
}
.ticket-view-page .btn-close-ticket {
  background-color: #ef4444;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
}
.ticket-view-page .btn-close-ticket:hover {
  background-color: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Chat/Replies Section */
.chat-section {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .chat-section {
    padding: 2rem;
  }
}
.chat-section .section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.chat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.chat-list .chat-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}
.chat-list .chat-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.chat-list .chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.chat-list .chat-header .chat-author {
  font-weight: 600;
  color: #1f2937;
  font-size: 0.875rem;
}
.chat-list .chat-header .chat-role {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.chat-list .chat-header .chat-role--requester {
  background-color: #dbeafe;
  color: #1e40af;
}
.chat-list .chat-header .chat-role--staff {
  background-color: #fef3c7;
  color: #92400e;
}
.chat-list .chat-header .chat-time {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-left: auto;
}
.chat-list .chat-message {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #374151;
}
.chat-list .empty-state {
  text-align: center;
  padding: 2rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Reply Form */
.reply-form {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .reply-form {
    padding: 2rem;
  }
}
.reply-form .form-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}
.reply-form textarea {
  width: 100%;
  min-height: 100px;
  padding: 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  transition: all 0.2s ease;
  margin-bottom: 0.5rem;
}
.reply-form textarea:focus {
  outline: none;
  border-color: #4f8ff7;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
}
.reply-form .form-hint {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.closed-message {
  text-align: center;
  padding: 1.5rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Terms & FAQ Pages */
.terms-page,
.faq-page {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
@media (min-width: 1024px) {
  .terms-page,
  .faq-page {
    padding-top: 2rem;
  }
}
.terms-page .content-wrapper,
.faq-page .content-wrapper {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .terms-page .content-wrapper,
  .faq-page .content-wrapper {
    padding: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .terms-page .content-wrapper,
  .faq-page .content-wrapper {
    padding: 3rem;
  }
}
.terms-page h1,
.faq-page h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .terms-page h1,
  .faq-page h1 {
    font-size: 2.25rem;
  }
}
.terms-page h3,
.faq-page h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.terms-page h3:first-of-type,
.faq-page h3:first-of-type {
  margin-top: 0;
}
.terms-page h4,
.faq-page h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.terms-page p,
.faq-page p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1rem;
}
.terms-page ul,
.faq-page ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.terms-page ul li,
.faq-page ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}
.terms-page ul li::before,
.faq-page ul li::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.625rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #4f8ff7;
  border-radius: 50%;
}
.terms-page ul.topmarks li,
.faq-page ul.topmarks li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-left: 0;
}
.terms-page ul.topmarks li::before,
.faq-page ul.topmarks li::before {
  display: none;
}
.terms-page ul.topmarks li .website-icon,
.faq-page ul.topmarks li .website-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.terms-page a,
.faq-page a {
  color: #4f8ff7;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.terms-page a:hover,
.faq-page a:hover {
  color: #3b7ce6;
}
.terms-page b,
.terms-page strong,
.faq-page b,
.faq-page strong {
  font-weight: 600;
  color: #1f2937;
}

/* Action Buttons */
.btn-view {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background-color: #4f8ff7;
  color: #ffffff;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-view:hover {
  background-color: #3b7ce6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 143, 247, 0.3);
}
.btn-view:active {
  transform: translateY(0);
}

/* Responsive Table Wrapper */
.table-responsive {
  overflow-x: auto;
  margin-top: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
  .ticket-table th,
  .ticket-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8125rem;
  }
  .ticket-table th:nth-child(3), .ticket-table th:nth-child(5) {
    display: none;
  }
  .ticket-table td:nth-child(3), .ticket-table td:nth-child(5) {
    display: none;
  }
  .ticket-meta {
    gap: 1rem;
  }
}
.blog-hero {
  background-color: #080808;
  padding: 4rem 0 8rem;
}
@media (max-width: 768px) {
  .blog-hero {
    padding: 2rem 0 4rem;
  }
}
.blog-hero__content {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .blog-hero__content {
    padding: 0 1.5rem;
  }
}
.blog-hero__title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light, #ffffff);
}
@media (max-width: 768px) {
  .blog-hero__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 640px) {
  .blog-hero__title {
    font-size: 1.875rem;
  }
}
.blog-hero__subtitle {
  color: var(--text-muted, #9ca3af);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  line-height: 1.75;
}
@media (max-width: 640px) {
  .blog-hero__subtitle {
    font-size: 1rem;
  }
}
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 640px) {
  .blog-filters {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
}
.blog-filters__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  outline: none;
}
@media (max-width: 640px) {
  .blog-filters__button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
.blog-filters__button--active {
  background-color: #4F8FF7;
  color: white;
  border: none;
}
.blog-filters__button--active:hover {
  background-color: #3B7CE6;
}
.blog-filters__button--inactive {
  background-color: #0e0e0e;
  border: 1px solid #333;
  color: #FFF;
}
.blog-filters__button--inactive:hover {
  border-color: #4F8FF7;
  background-color: rgba(79, 143, 247, 0.1);
}
.blog-filters__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.blog-search {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  width: 100%;
}
.blog-search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
}
@media (max-width: 640px) {
  .blog-search__icon {
    width: 1rem;
    height: 1rem;
  }
}
.blog-search__input {
  width: 100%;
  padding: 1.25rem 1rem 1.25rem 3rem;
  background-color: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  font-size: 1rem;
  color: #ffffff;
  outline: none;
  transition: all 0.2s ease;
}
@media (max-width: 640px) {
  .blog-search__input {
    padding: 1.5rem 1rem 1.5rem 2.5rem;
    font-size: 0.875rem;
  }
}
.blog-search__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.blog-search__input:focus {
  border-color: #4F8FF7;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.2);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .blog-grid {
    gap: 1rem;
  }
}
.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}
.blog-card:hover .blog-card__title {
  color: #4F8FF7;
}
.blog-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: #f3f4f6;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 3rem;
  font-weight: 700;
}
.blog-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}
.blog-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 640px) {
  .blog-card__content {
    padding: 1rem;
  }
}
.blog-card__title {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000000;
  transition: color 0.2s ease;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 640px) {
  .blog-card__title {
    font-size: 1rem;
  }
}
.blog-card__description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 640px) {
  .blog-card__description {
    font-size: 0.75rem;
  }
}
.blog-card__meta {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: #8D8D8D;
}
.blog-card__meta svg {
  width: 0.875rem;
  height: 0.875rem;
  margin-right: 0.375rem;
}
@media (max-width: 640px) {
  .blog-card__meta svg {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.blog-section--light {
  background-color: var(--light-bg, #f9fafb);
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .blog-section--light {
    padding: 6rem 0;
  }
}
.blog-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted, #9ca3af);
}
.blog-empty__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  opacity: 0.5;
}
.blog-empty__message {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.blog-pagination__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid var(--border-color, #e5e7eb);
  background-color: var(--card-bg, #ffffff);
  color: var(--text-foreground, #000000);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.blog-pagination__button:hover:not(.blog-pagination__button--disabled):not(.blog-pagination__button--active) {
  border-color: #4F8FF7;
  color: #4F8FF7;
}
.blog-pagination__button--active {
  background-color: #4F8FF7;
  border-color: #4F8FF7;
  color: white;
}
.blog-pagination__button--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.blog-pagination__ellipsis {
  padding: 0 0.5rem;
  color: var(--text-muted, #9ca3af);
}

.blog-post-header {
  background-color: #080808;
  padding: 3rem 6rem;
}
@media (min-width: 640px) {
  .blog-post-header {
    padding: 4rem 9rem;
  }
}
@media (min-width: 1024px) {
  .blog-post-header {
    padding: 5rem 12rem;
  }
}
.blog-post-header__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #4F8FF7;
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .blog-post-header__badge {
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
  }
}
.blog-post-header__title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .blog-post-header__title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .blog-post-header__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .blog-post-header__title {
    font-size: 3rem;
  }
}
.blog-post-header__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted, #9ca3af);
}
@media (min-width: 640px) {
  .blog-post-header__meta {
    gap: 1rem;
    font-size: 0.875rem;
  }
}
.blog-post-header__meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
@media (min-width: 640px) {
  .blog-post-header__meta-item {
    gap: 0.5rem;
  }
}
.blog-post-header__meta-item svg {
  width: 0.875rem;
  height: 0.875rem;
}
@media (min-width: 640px) {
  .blog-post-header__meta-item svg {
    width: 1rem;
    height: 1rem;
  }
}
.blog-post-header__meta-item img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
}
@media (min-width: 640px) {
  .blog-post-header__meta-item img {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.blog-post-header__author {
  color: #4F8FF7;
}
.blog-post-header__separator {
  display: none;
}
@media (min-width: 640px) {
  .blog-post-header__separator {
    display: inline;
  }
}
.blog-post-header__image {
  margin-top: 2rem;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 1rem;
}
@media (min-width: 640px) {
  .blog-post-header__image {
    margin-top: 3rem;
    aspect-ratio: 21/9;
    border-radius: 1.5rem;
  }
}
.blog-post-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post-cover {
  background-color: #080808;
  padding: 0 6rem 3rem;
}
@media (min-width: 640px) {
  .blog-post-cover {
    padding: 0 9rem 4rem;
  }
}
@media (min-width: 1024px) {
  .blog-post-cover {
    padding: 0 12rem 5rem;
  }
}
.blog-post-cover__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media (min-width: 640px) {
  .blog-post-cover__image {
    aspect-ratio: 21/9;
    border-radius: 1rem;
  }
}
.blog-post-cover__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post-content {
  background-color: #f8fafc;
  padding: 3rem 6rem;
  border-bottom: 1px solid #e5e7eb;
}
@media (min-width: 640px) {
  .blog-post-content {
    padding: 4rem 9rem;
  }
}
@media (min-width: 1024px) {
  .blog-post-content {
    padding: 5rem 12rem;
  }
}
.blog-post-content__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .blog-post-content__grid {
    grid-template-columns: 1fr 350px;
    gap: 3rem;
  }
}
.blog-post-article {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.7;
}
@media (min-width: 640px) {
  .blog-post-article {
    font-size: 1.125rem;
  }
}
.blog-post-article p {
  margin-bottom: 1.25rem;
}
.blog-post-article h2 {
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .blog-post-article h2 {
    font-size: 1.5rem;
    margin-top: 3rem;
  }
}
.blog-post-article h3 {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .blog-post-article h3 {
    font-size: 1.25rem;
  }
}
.blog-post-article ul, .blog-post-article ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.blog-post-article ul li, .blog-post-article ol li {
  margin-bottom: 0.5rem;
}
.blog-post-article strong {
  color: #1a1a1a;
  font-weight: 600;
}
.blog-post-article .tip-box {
  background-color: rgba(79, 143, 247, 0.1);
  border-left: 4px solid #4F8FF7;
  padding: 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 2rem 0;
}
@media (min-width: 640px) {
  .blog-post-article .tip-box {
    padding: 1.5rem;
    margin: 2.5rem 0;
  }
}
.blog-post-article .tip-box h4 {
  color: #1a1a1a;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .blog-post-article .tip-box h4 {
    font-size: 1.125rem;
  }
}
.blog-post-article .tip-box p {
  font-size: 0.875rem;
  margin-bottom: 0;
}
@media (min-width: 640px) {
  .blog-post-article .tip-box p {
    font-size: 1rem;
  }
}
.blog-post-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .blog-post-sidebar {
    display: block;
  }
}
.blog-post-sidebar__sticky {
  position: sticky;
  top: 2rem;
}
.blog-post-sidebar__card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}
.blog-post-sidebar__title {
  color: #1a1a1a;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-left: 4px solid #4F8FF7;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
.blog-post-sidebar__posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.blog-post-sidebar__post {
  display: flex;
  gap: 1rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.blog-post-sidebar__post:hover .blog-post-sidebar__post-title {
  color: #4F8FF7;
}
.blog-post-sidebar__post:hover .blog-post-sidebar__post-image img {
  transform: scale(1.05);
}
.blog-post-sidebar__post-number {
  color: #4F8FF7;
  font-size: 1.5rem;
  font-weight: 600;
  flex-shrink: 0;
}
.blog-post-sidebar__post-content {
  flex: 1;
  min-width: 0;
}
.blog-post-sidebar__post-title {
  color: #1a1a1a;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
@media (min-width: 640px) {
  .blog-post-sidebar__post-title {
    font-size: 1rem;
  }
}
.blog-post-sidebar__post-date {
  color: #8D8D8D;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.blog-post-sidebar__post-image {
  width: 100px;
  height: 66px;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .blog-post-sidebar__post-image {
    width: 120px;
    height: 80px;
  }
}
.blog-post-sidebar__post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-post-author {
  background-color: var(--light-bg, #f9fafb);
  padding: 3rem 6rem;
}
@media (min-width: 640px) {
  .blog-post-author {
    padding: 4rem 9rem;
  }
}
@media (min-width: 1024px) {
  .blog-post-author {
    padding: 5rem 12rem;
  }
}
.blog-post-author__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .blog-post-author__content {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.blog-post-author__avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .blog-post-author__avatar {
    width: 5rem;
    height: 5rem;
  }
}
.blog-post-author__info {
  flex: 1;
}
.blog-post-author__name {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
@media (min-width: 640px) {
  .blog-post-author__name {
    font-size: 1.25rem;
  }
}
.blog-post-author__title {
  color: #4F8FF7;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .blog-post-author__title {
    font-size: 0.875rem;
  }
}
.blog-post-author__bio {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media (min-width: 640px) {
  .blog-post-author__bio {
    font-size: 1rem;
  }
}
.blog-post-related {
  background-color: #080808;
  padding: 3rem 6rem;
}
@media (min-width: 640px) {
  .blog-post-related {
    padding: 4rem 9rem;
  }
}
@media (min-width: 1024px) {
  .blog-post-related {
    padding: 5rem 12rem;
  }
}
.blog-post-related__title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .blog-post-related__title {
    font-size: 1.875rem;
  }
}
.blog-post-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .blog-post-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .blog-post-related__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-post-related .blog-card {
  border-color: var(--border, #262626);
  background-color: var(--card, #111);
}
.blog-post-related .blog-card__title {
  color: white;
}
.blog-post-related .blog-card__description {
  color: var(--text-muted, #9ca3af);
}
.blog-post-related .blog-card__meta {
  color: var(--text-muted, #9ca3af);
}
.blog-post-related .blog-card:hover .blog-card__title {
  color: #4F8FF7;
}

.no-js .input-toggle,
.no-js .register-form__toggle,
.no-js .captcha__refresh,
.no-js #refreshBtn {
  display: none;
}

html, body {
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

body {
  font-family: "Inter";
}

/* Hide JS-only elements by default (shown when JS runs) */
.js-only {
  display: none;
}

/* Visually hidden but accessible to screen readers and SEO */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Header Sticky */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #000000;
  border-bottom: 1px solid #262626;
}

/* Navbar container */
.navbar {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 0.75rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .navbar {
    padding: 0 1rem;
  }
}
@media (min-width: 1024px) {
  .navbar {
    height: 64px;
    padding: 0 3rem;
  }
}
@media (min-width: 1280px) {
  .navbar {
    padding: 0 3rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  height: 100%;
  flex: 1;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-group {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-group.nav-primary {
  margin-left: 0;
}
.nav-group.nav-primary .nav-link {
  color: #FFFFFF;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}
.nav-group.nav-primary .nav-link.nav-link-muted {
  color: #8d8d8d;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}
.nav-group.nav-primary .nav-link.nav-link-muted:hover {
  color: #4f8ff7;
}
.nav-group.nav-primary .nav-link:hover {
  color: #4f8ff7;
}
.nav-group.nav-secondary {
  margin-left: auto;
  margin-right: 1rem;
}
.nav-group.auth-links {
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .nav-group.auth-links {
    gap: 1rem;
  }
}

.logo {
  display: none;
  align-items: center;
  margin-left: 0.25rem;
}
@media (min-width: 768px) {
  .logo {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .logo {
    margin-left: 0;
    margin-right: 2rem;
  }
}
.logo img {
  height: 28px;
  width: auto;
}
@media (min-width: 1024px) {
  .logo img {
    height: 32px;
  }
}

/* Mobile Logo - visible only on mobile devices */
.logo-mobile {
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
}
@media (min-width: 768px) {
  .logo-mobile {
    display: none;
  }
}
.logo-mobile a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border-radius: 0.375rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.logo-mobile a:hover {
  transform: scale(1.05);
  background-color: rgba(79, 143, 247, 0.1);
}
.logo-mobile img {
  height: 24px;
  width: 24px;
  object-fit: contain;
}
@media (min-width: 640px) {
  .logo-mobile img {
    height: 26px;
    width: 26px;
  }
}

/* Navigation Links */
.nav-link {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}
.nav-link:hover {
  color: #4f8ff7;
}
.nav-link.nav-link-muted {
  color: #8d8d8d;
  font-size: 0.875rem;
}
.nav-link.nav-link-muted:hover {
  color: #4f8ff7;
}
.nav-link img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #D9D9D9;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.nav-btn:hover {
  color: #4f8ff7;
  background-color: rgba(79, 143, 247, 0.1);
}
.nav-btn.nav-btn-icon {
  margin-left: 0.5rem;
  padding: 0.5rem;
  justify-content: center;
}
.nav-btn.nav-btn-icon svg {
  width: 16px;
  height: 16px;
}

/* User Actions */
.user-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

/* Wallet Button */
.wallet-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .wallet-btn {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.75rem;
  }
  .wallet-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.wallet-btn svg {
  width: 16px;
  height: 16px;
}
.wallet-btn .wallet-text {
  display: none;
}
@media (min-width: 1024px) {
  .wallet-btn .wallet-text {
    display: inline-block;
  }
}

/* Notification Button */
.notification-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notification-btn:hover {
  color: #4f8ff7;
  background-color: rgba(255, 255, 255, 0.05);
}
.notification-btn svg {
  width: 18px;
  height: 18px;
}

.notification-badge {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  background-color: #4f8ff7;
  color: white;
  font-size: 0.75rem;
  padding: 0.1rem 0.275rem;
  border-radius: 9999px;
  min-width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 500;
}

/* Profile Button */
.profile-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .profile-btn {
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
  }
}
.profile-btn:hover {
  color: #4f8ff7;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Mobile profile button - shows as link on mobile */
.profile-btn-mobile {
  display: flex;
}
@media (min-width: 1024px) {
  .profile-btn-mobile {
    display: none;
  }
}

/* Desktop profile button - shows dropdown on desktop */
.profile-btn-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .profile-btn-desktop {
    display: flex;
  }
}

.profile-avatar {
  width: 32px;
  height: 32px;
  background-color: #4f8ff7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-avatar-admin {
  background-color: #ef4444 !important;
}

.profile-avatar-moderator {
  background-color: #f59e0b !important;
}

.profile-initials {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
}

.profile-info {
  display: none;
  text-align: left;
  min-width: 0;
}
@media (min-width: 1024px) {
  .profile-info {
    display: block;
  }
}

.profile-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.profile-btn svg {
  display: none;
  width: 16px;
  height: 16px;
  color: #9CA3AF;
}
@media (min-width: 1024px) {
  .profile-btn svg {
    display: block;
  }
}

/* Dropdown Menus */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #1a1a1a;
  border: 1px solid #262626;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #D9D9D9;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.dropdown-item:hover {
  background-color: rgba(79, 143, 247, 0.1);
  color: #4f8ff7;
}
.dropdown-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.dropdown-item.text-red-500 {
  color: #EF4444;
}
.dropdown-item.text-red-500:hover {
  color: #FCA5A5;
  background-color: rgba(239, 68, 68, 0.1);
}
.dropdown-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.dropdown-divider {
  height: 1px;
  background-color: #262626;
  margin: 0.5rem 0;
}

/* Wallet Dropdown Specific */
.wallet-dropdown .dropdown-menu {
  left: 0;
  right: auto;
  min-width: 200px;
}
@media (min-width: 1024px) {
  .wallet-dropdown .dropdown-menu {
    left: 0;
    right: auto;
  }
}
.wallet-dropdown .dropdown-item {
  justify-content: space-between;
}
.wallet-dropdown .dropdown-item img {
  width: 18px;
  height: 18px;
}
.wallet-dropdown .dropdown-item span {
  font-family: monospace;
  font-size: 0.8rem;
  color: #9CA3AF;
}

/* Profile Dropdown Specific */
.profile-dropdown .dropdown-menu {
  min-width: 180px;
  right: 0;
  left: auto;
}

/* Nav Crypto Dropdown Specific */
.nav-crypto-dropdown {
  position: relative;
  display: inline-block;
  height: 100%;
}
.nav-crypto-dropdown .dropdown-menu {
  left: 0;
  right: auto;
  min-width: 220px;
  margin-top: -0.8rem;
}
.nav-crypto-dropdown .nav-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-crypto-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  justify-content: space-between;
}
.nav-crypto-menu .dropdown-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.nav-crypto-menu .dropdown-item span:first-of-type {
  flex: 1;
  text-align: left;
}
.nav-crypto-menu .dropdown-item .item-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.25rem;
  padding: 0.125rem 0.5rem;
  background-color: rgba(79, 143, 247, 0.1);
  color: #4f8ff7;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
.nav-crypto-menu .dropdown-item:hover .item-count {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Removed unused hamburger styles - using SVG icons instead */
/* Mobile Responsive Adjustments */
/* Mobile Menu Visibility */
@media (max-width: 1023px) {
  .mobile-menu-btn {
    display: block;
  }
  .navbar {
    padding: 0 0.75rem;
  }
}
@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}
@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }
  .wallet-btn {
    display: none;
  }
  .profile-info {
    display: none;
  }
  .profile-btn svg {
    display: none;
  }
  .user-actions {
    gap: 0.5rem;
  }
}
/* Mobile menu panel (hidden by default) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #0a0a0a;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  gap: 0.25rem;
  transition: right 0.3s ease-in-out;
  z-index: 1001;
  overflow-y: auto;
  border-left: 1px solid #262626;
}
.mobile-menu a {
  color: #FFFFFF;
  padding: 0.875rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}
.mobile-menu a:hover {
  background-color: rgba(79, 143, 247, 0.1);
  color: #4f8ff7;
}
.mobile-menu a.text-red-500 {
  color: #EF4444;
}
.mobile-menu a.text-red-500:hover {
  color: #FFFFFF;
  background-color: #EF4444;
}
.mobile-menu .dropdown-divider {
  height: 1px;
  background-color: #262626;
  margin: 0.75rem 0;
  opacity: 0.3;
}
.mobile-menu hr {
  border: none;
  border-top: 1px solid #262626;
  margin: 0.75rem 0;
  opacity: 0.3;
}

/* When checkbox is checked, slide the menu in */
#nav-toggle:checked ~ .mobile-menu {
  right: 0;
}

/* Hide the checkbox */
.nav-toggle {
  display: none;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: block;
}
@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}
.mobile-menu-btn .hamburger-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: white;
  cursor: pointer;
}
.mobile-menu-btn .hamburger-label svg {
  width: 24px;
  height: 24px;
}
.mobile-menu-btn .hamburger-label:hover {
  color: #4f8ff7;
}

/* Mobile menu links - consolidated with main mobile-menu styles above */
/* Removed duplicate mobile-menu-btn styles - already defined above */
/* Removed duplicate user-actions - already defined above */
/* Collapsible Section Styles */
.offers-section,
.feedback-section {
  /* When checkbox is unchecked (collapsed state) */
  /* Rotate icon when collapsed - point upward */
}
.offers-section .collapse-toggle,
.feedback-section .collapse-toggle {
  display: none;
}
.offers-section .section-header,
.feedback-section .section-header {
  margin-bottom: 1rem;
}
.offers-section .collapse-btn,
.feedback-section .collapse-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offers-section .collapse-btn:hover,
.feedback-section .collapse-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.offers-section .collapse-btn .collapse-icon,
.feedback-section .collapse-btn .collapse-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.offers-section .section-content,
.feedback-section .section-content {
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
  opacity: 1;
}
.offers-section .collapse-toggle:not(:checked) ~ .section-content,
.feedback-section .collapse-toggle:not(:checked) ~ .section-content {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.offers-section .collapse-toggle:not(:checked) ~ .section-header .collapse-btn .collapse-icon,
.feedback-section .collapse-toggle:not(:checked) ~ .section-header .collapse-btn .collapse-icon {
  transform: rotate(180deg);
}

/* Consolidated SVG icon sizes */
.feedback-section .trade-details svg,
.feedback-section .star {
  width: 16px;
  height: 16px;
}
.feedback-section .empty-icon svg {
  width: 48px;
  height: 48px;
}

/* Feedback badges for positive/negative/neutral ratings */
.feedback-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid;
}
.feedback-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.feedback-badge--positive {
  background-color: #f0fdf4;
  color: #166534;
  border-color: #86efac;
}
.feedback-badge--positive svg {
  stroke: #16a34a;
}
.feedback-badge--negative {
  background-color: #fef2f2;
  color: #991b1b;
  border-color: #fca5a5;
}
.feedback-badge--negative svg {
  stroke: #dc2626;
}
.feedback-badge--neutral {
  background-color: #f9fafb;
  color: #374151;
  border-color: #d1d5db;
}
.feedback-badge--neutral svg {
  stroke: #6b7280;
}

/* Tab switching functionality for offers section */
.offers-section {
  /* Active tab styles */
  /* Content visibility - JavaScript will handle showing/hiding */
}
.offers-section .tab-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  padding: 0.25rem;
  margin-bottom: 1.5rem;
}
.offers-section .tab-radio {
  display: none;
}
.offers-section .tab-btn {
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  color: #6b7280;
  background-color: transparent;
}
@media (min-width: 640px) {
  .offers-section .tab-btn {
    flex-direction: row;
    gap: 0.5rem;
  }
}
.offers-section .tab-btn .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 1.25rem;
  height: 1.25rem;
  background-color: #e5e7eb;
  color: #6b7280;
}
.offers-section .tab-btn span {
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .offers-section .tab-btn span {
    font-size: 0.875rem;
  }
}
.offers-section #buy-tab:checked ~ label[for=buy-tab],
.offers-section #sell-tab:checked ~ label[for=sell-tab] {
  background-color: #4f8ff7;
  color: #ffffff;
}
.offers-section #buy-tab:checked ~ label[for=buy-tab] .badge,
.offers-section #sell-tab:checked ~ label[for=sell-tab] .badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.offers-section .offers-content {
  display: none;
}

/* Removed duplicate dropdown styles - already defined above */
/* Consolidated dropdown styles - removed duplicates, using existing definitions above */
/* Additional Mobile Adjustments */
@media (max-width: 640px) {
  .navbar {
    padding: 0 0.5rem;
  }
  .logo {
    margin-left: 0.5rem;
  }
  .user-actions {
    gap: 0.25rem;
  }
  .notification-btn {
    padding: 0.375rem;
  }
  .profile-btn {
    padding: 0.125rem;
  }
  .profile-avatar {
    width: 28px;
    height: 28px;
  }
}
/* Dashboard Styles */
.wrap-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0.75rem;
}
@media (min-width: 640px) {
  .wrap-main {
    padding: 0 1rem;
  }
}
@media (min-width: 1024px) {
  .wrap-main {
    padding: 0 3rem;
  }
}

.dashboard-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .dashboard-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.header-content .header-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .header-content .header-title {
    font-size: 2.25rem;
  }
}
.header-content .header-subtitle {
  color: #6b7280;
  font-size: 1rem;
}

.header-actions .feedback-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
.header-actions .feedback-badge:hover {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  transform: translateY(-1px);
}
.header-actions .feedback-badge .feedback-icon {
  width: 1rem;
  height: 1rem;
}
.header-actions .feedback-badge .feedback-text-short {
  display: none;
}
@media (max-width: 640px) {
  .header-actions .feedback-badge .feedback-text-short {
    display: inline;
  }
}
.header-actions .feedback-badge .feedback-text-full {
  display: inline;
}
@media (max-width: 640px) {
  .header-actions .feedback-badge .feedback-text-full {
    display: none;
  }
}

/* Stats Section */
.stats-section {
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .stats-grid {
    gap: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.stats-grid--extended {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .stats-grid--extended {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .stats-grid--extended {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.stat-card {
  border-radius: 0.75rem;
  border: 1px solid;
  flex-direction: column;
  gap: 1.5rem;
}
.stat-card--blue {
  background: linear-gradient(135deg, #dbeafe 0%, #ffffff 100%);
  border-color: #bfdbfe;
}
.stat-card--green {
  background: linear-gradient(135deg, #dcfce7 0%, #ffffff 100%);
  border-color: #bbf7d0;
}
.stat-card--purple {
  background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%);
  border-color: #d8b4fe;
}
.stat-card--orange {
  background: linear-gradient(135deg, #fed7aa 0%, #ffffff 100%);
  border-color: #fdba74;
}
.stat-card--teal {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-color: rgba(20, 184, 166, 0.2);
}
.stat-card--pink {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(244, 114, 182, 0.1) 100%);
  border-color: rgba(236, 72, 153, 0.2);
}
.stat-card--indigo {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(129, 140, 248, 0.1) 100%);
  border-color: rgba(99, 102, 241, 0.2);
}
.stat-card--amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
  border-color: rgba(245, 158, 11, 0.2);
}

.stat-card-content {
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .stat-card-content {
    padding: 1rem;
  }
}
@media (min-width: 1024px) {
  .stat-card-content {
    padding: 1.5rem;
  }
}

.stat-info {
  min-width: 0;
  flex: 1;
}
.stat-info .stat-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
@media (min-width: 1024px) {
  .stat-info .stat-label {
    font-size: 0.875rem;
  }
}
.stat-info .stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
}
@media (min-width: 640px) {
  .stat-info .stat-value {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .stat-info .stat-value {
    font-size: 1.5rem;
  }
}

.stat-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 0.5rem;
}
@media (min-width: 1024px) {
  .stat-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.stat-icon svg {
  width: 1rem;
  height: 1rem;
}
@media (min-width: 1024px) {
  .stat-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.stat-icon--blue {
  background-color: rgba(79, 143, 247, 0.1);
  color: #4f8ff7;
}
.stat-icon--green {
  background-color: rgba(34, 197, 94, 0.2);
  color: #16a34a;
}
.stat-icon--purple {
  background-color: rgba(147, 51, 234, 0.2);
  color: #9333ea;
}
.stat-icon--orange {
  background-color: rgba(249, 115, 22, 0.2);
  color: #ea580c;
}
.stat-icon--teal {
  background-color: rgba(20, 184, 166, 0.15);
  color: #0d9488;
}
.stat-icon--pink {
  background-color: rgba(236, 72, 153, 0.15);
  color: #db2777;
}
.stat-icon--indigo {
  background-color: rgba(99, 102, 241, 0.15);
  color: #4f46e5;
}
.stat-icon--amber {
  background-color: rgba(245, 158, 11, 0.15);
  color: #d97706;
}

/* Dashboard Page Styles */
.dashboard-page {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
@media (min-width: 640px) {
  .dashboard-page {
    padding-top: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .dashboard-page {
    padding-top: 2rem;
  }
}

/* Dashboard Main Grid */
.dashboard-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .dashboard-main-grid {
    gap: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .dashboard-main-grid {
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }
}

.dashboard-main-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .dashboard-main-column {
    gap: 1.5rem;
  }
}

.dashboard-sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .dashboard-sidebar-column {
    gap: 1.5rem;
  }
}

/* Dashboard Card */
.dashboard-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
}
.dashboard-card .pagination-wrapper {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}
.dashboard-card .pagination-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-card .pagination-info {
  font-size: 0.875rem;
  color: #6b7280;
}
.dashboard-card .pagination-buttons {
  display: flex;
  gap: 0.5rem;
}
.dashboard-card .pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #111827;
  text-decoration: none;
  transition: all 0.2s ease;
}
.dashboard-card .pagination-btn:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.dashboard-card .pagination-btn:active {
  transform: scale(0.95);
}
.dashboard-card .pagination-btn--disabled {
  background: #f9fafb;
  color: #d1d5db;
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.dashboard-card--gradient-blue {
  background: linear-gradient(135deg, #dbeafe 0%, #ffffff 100%);
  border-color: #bfdbfe;
}

.card-header {
  padding: 1.5rem;
}
.card-header--flex {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .card-header--flex {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.card-header--pb {
  padding-bottom: 1rem;
}

.card-header-content {
  min-width: 0;
  flex: 1;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}
@media (min-width: 1024px) {
  .card-title {
    font-size: 1.25rem;
  }
}

.card-description {
  font-size: 0.875rem;
  color: #6b7280;
}

.card-content {
  padding: 0 1.5rem 1.5rem;
}
.card-content--pt {
  padding-top: 0;
}
.card-content--actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Button Styles */
.btn-sm {
  height: 2rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm .btn-icon {
  width: 1rem;
  height: 1rem;
}
.btn-sm .btn-icon-left {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}

.btn-outline {
  background-color: transparent;
  color: #4f8ff7;
}
.btn-outline:hover {
  background-color: #4f8ff7;
  color: #ffffff;
}
.btn-outline .btn-text-short {
  display: none;
}
@media (max-width: 639px) {
  .btn-outline .btn-text-short {
    display: inline;
  }
}
.btn-outline .btn-text-full {
  display: inline;
}
@media (max-width: 639px) {
  .btn-outline .btn-text-full {
    display: none;
  }
}

.btn-outline-dark {
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  color: #374151;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}
.btn-outline-dark:hover {
  background-color: #e5e7eb;
}
.btn-outline-dark.btn-compact {
  padding: 0.5rem 0.75rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 0.75rem;
  display: flex;
  text-decoration: none;
  border-radius: 0.4rem;
  padding: 0.4rem;
  transition-duration: 400ms;
  background-color: transparent;
  border: 1px solid #4f8ff7;
  color: #4f8ff7;
}
.btn-full:hover {
  background-color: #4f8ff7;
  color: #FFFFFF;
}

/* Trade List */
.trade-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .trade-list {
    gap: 1rem;
  }
}

.trade-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .trade-item {
    padding: 1rem;
  }
}

.trade-item-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}
@media (min-width: 1024px) {
  .trade-item-main {
    gap: 1rem;
  }
}

.trade-type-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}
.trade-type-icon--buy {
  background-color: #dcfce7;
  color: #16a34a;
}
.trade-type-icon--sell {
  background-color: #fee2e2;
  color: #dc2626;
}

.trade-item-info {
  min-width: 0;
  flex: 1;
}

.trade-title {
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 0.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trade-details {
  font-size: 0.875rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trade-item-end {
  text-align: right;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.trade-amount {
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.trade-meta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .trade-meta {
    gap: 0.5rem;
  }
}

.trade-time {
  font-size: 0.75rem;
  color: #9ca3af;
  display: none;
}
@media (min-width: 640px) {
  .trade-time {
    display: inline;
  }
}

/* Offer List */
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .offer-item {
    padding: 1rem;
  }
}

.offer-item-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}
@media (min-width: 1024px) {
  .offer-item-main {
    gap: 1rem;
  }
}

.offer-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.offer-icon svg {
  width: 1rem;
  height: 1rem;
}
.offer-icon--orange {
  background-color: #fed7aa;
  color: #ea580c;
}
.offer-icon--blue {
  background-color: #dbeafe;
  color: #4f8ff7;
}

.offer-item-info {
  min-width: 0;
  flex: 1;
}

/* Empty State for Dashboard Cards */
.empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: #9ca3af;
}

.empty-state-text {
  font-size: 0.875rem;
  margin: 0;
}

.offer-title {
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 0.125rem;
}

.offer-details {
  font-size: 0.875rem;
  color: #6b7280;
}

.offer-item-end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.offer-views {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.offer-views svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* Badge Variants */
.badge-primary {
  background-color: #000000;
  color: #ffffff;
  border: none;
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
}

.badge-secondary {
  background-color: #e5e7eb;
  color: #6b7280;
  border: none;
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
}

.badge-outline {
  background-color: transparent;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
}

/* Stats Mini Grid */
.stats-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .stats-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-mini {
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid;
}
.stat-mini--blue {
  background-color: #dbeafe;
  border-color: #bfdbfe;
}
.stat-mini--green {
  background-color: #dcfce7;
  border-color: #bbf7d0;
}
.stat-mini--purple {
  background-color: #f3e8ff;
  border-color: #d8b4fe;
}

.stat-mini-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.stat-mini-header svg {
  width: 1rem;
  height: 1rem;
}

.stat-mini-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
}

.stat-mini-value {
  font-size: 1.5rem;
  font-weight: 700;
}
.stat-mini-value--blue {
  color: #4f8ff7;
}
.stat-mini-value--green {
  color: #16a34a;
}
.stat-mini-value--purple {
  color: #9333ea;
}

/* Security Status */
.security-status-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.security-status-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(79, 143, 247, 0.1019607843);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.security-status-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #4f8ff7;
}

.security-status-text {
  flex: 1;
}

.security-status-title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.125rem;
}

.security-status-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
}

.security-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.security-check-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
}
.security-check-item--inactive {
  opacity: 0.5;
}
.security-check-item--inactive .security-check-label {
  color: #9ca3af;
}

.security-check-label {
  flex: 1;
}

.security-check-icon {
  width: 1rem;
  height: 1rem;
  color: #10b981;
  flex-shrink: 0;
}
.security-check-icon--inactive {
  color: #ef4444;
}

/* User Tabs (Trusted/Blocked Users) - Pure CSS, no JavaScript required */
/* Hide radio buttons visually but keep them accessible */
.user-tab-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.user-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  background-color: #f3f4f6;
  padding: 0.25rem;
  border-radius: 0.5rem;
}

.user-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background-color: transparent;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
}
.user-tab svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.user-tab:hover {
  color: #374151;
  background-color: rgba(255, 255, 255, 0.5);
}

/* CSS-based tab switching using :checked pseudo-class */
#tab-trusted:checked ~ .user-tabs label[for=tab-trusted],
#tab-blocked:checked ~ .user-tabs label[for=tab-blocked] {
  background-color: #ffffff;
  color: #4f8ff7;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Show content based on which radio button is checked */
.user-tab-content {
  display: none;
}

#tab-trusted:checked ~ #trusted-content {
  display: block;
}

#tab-blocked:checked ~ #blocked-content {
  display: block;
}

.user-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.user-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.user-item:hover {
  background-color: #f3f4f6;
  border-color: #4f8ff7;
}
.user-item:hover .user-item-icon {
  color: #4f8ff7;
  transform: translateX(2px);
}

.user-item-info {
  min-width: 0;
  flex: 1;
}

.user-item-name {
  font-weight: 500;
  color: #1f2937;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.user-item-stats {
  font-size: 0.75rem;
  color: #6b7280;
}

.user-item-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.user-list-more {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  padding: 0.5rem;
  background-color: #f9fafb;
  border-radius: 0.375rem;
  margin-top: 0.5rem;
}

/* Favourite List */
.favourite-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.favourite-item {
  padding: 0.75rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.favourite-item-info {
  min-width: 0;
  flex: 1;
}

.favourite-title {
  font-weight: 500;
  color: #1f2937;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.favourite-details {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Action Buttons */
.action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  border-radius: 0.375rem;
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  justify-content: flex-start;
}
.action-btn:hover {
  background-color: #f9fafb;
}

.action-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Promo Grid */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.promo-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
}
.promo-card--gradient {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.promo-card-content {
  padding: 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .promo-card-content {
    padding: 2rem;
  }
}

.promo-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .promo-title {
    font-size: 1.25rem;
  }
}

.promo-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .promo-description {
    font-size: 1rem;
  }
}

.promo-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Advertisement Creation Page */
.ad-create-page {
  padding-top: 0.75rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .ad-create-page {
    padding-top: 1rem;
  }
}
@media (min-width: 1024px) {
  .ad-create-page {
    padding-top: 1.5rem;
  }
}

.container-ad-create {
  max-width: 100%;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-section {
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .breadcrumb-section {
    margin-bottom: 1.5rem;
  }
}

.breadcrumb-nav {
  display: block;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #6b7280;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 640px) {
  .breadcrumb-list {
    gap: 0.625rem;
    font-size: 1rem;
  }
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.breadcrumb-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb-link:hover {
  color: #4f8ff7;
}

.breadcrumb-separator {
  display: inline-flex;
  color: #6b7280;
}
.breadcrumb-separator svg {
  width: 0.875rem;
  height: 0.875rem;
}

.breadcrumb-page {
  color: #6b7280;
}

.breadcrumb-page-active {
  color: #4f8ff7;
  font-weight: 500;
}

/* Page Header */
.page-header-section {
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .page-header-section {
    margin-bottom: 2rem;
  }
}

.page-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .page-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .page-title {
    font-size: 1.875rem;
  }
}

.page-description {
  font-size: 0.875rem;
  color: #6b7280;
}
@media (min-width: 640px) {
  .page-description {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .page-description {
    font-size: 1.125rem;
  }
}

/* Alert Boxes */
.alert-box {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}
.alert-box--info {
  background-color: rgba(79, 143, 247, 0.1019607843);
  border-color: #bfdbfe;
}
.alert-box--warning {
  background-color: #fef3c7;
  border-color: #fcd34d;
}

.alert-description {
  color: #374151;
}

.alert-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.alert-text {
  font-size: 0.875rem;
  line-height: 1.5;
}

.alert-link {
  color: #4f8ff7;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}
.alert-link:hover {
  text-decoration: underline;
}

.alert-list {
  margin-top: 0.75rem;
  margin-left: 1.25rem;
  list-style: disc;
}
.alert-list li {
  margin-top: 0.25rem;
}

/* Form Container */
.ad-create-content {
  margin-top: 1.5rem;
}

.ad-create-form {
  margin-top: 1.5rem;
}

.form-grid-container {
  position: relative;
}

.form-background-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) {
  .form-background-svg {
    display: block;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 1024px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Form Cards */
.form-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.form-card--order-1 {
  order: 1;
}
@media (min-width: 1024px) {
  .form-card--order-1 {
    order: 1;
  }
}
.form-card--order-2 {
  order: 2;
}
@media (min-width: 1024px) {
  .form-card--order-2 {
    order: 2;
  }
}
.form-card--order-3 {
  order: 3;
}
@media (min-width: 1024px) {
  .form-card--order-3 {
    order: 3;
  }
}
.form-card--order-4 {
  order: 4;
}
@media (min-width: 1024px) {
  .form-card--order-4 {
    order: 4;
  }
}
.form-card--full-width {
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .form-card--full-width {
    grid-column: 1/-1;
  }
}

.form-card-number {
  position: absolute;
  left: -1rem;
  top: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #4f8ff7;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .form-card-number {
    display: flex;
  }
}

.form-card-header {
  padding: 1.5rem;
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.375rem;
  align-items: start;
}

.form-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1;
}

.form-card-description {
  font-size: 0.875rem;
  color: #6b7280;
}

.form-card-content {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 0.25rem;
  display: block;
}
@media (min-width: 640px) {
  .form-label {
    font-size: 0.9rem;
  }
}

.form-label-optional {
  font-weight: 400;
  color: #6b7280;
  font-size: 0.875rem;
}

.form-input {
  display: flex;
  height: 2.25rem;
  width: 100%;
  min-width: 0;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  outline: none;
}
.form-input::placeholder {
  color: #9ca3af;
}
.form-input:focus {
  border-color: #4f8ff7;
  box-shadow: 0 0 0 3px rgba(73, 146, 239, 0.1);
}
.form-input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .form-input {
    font-size: 0.875rem;
  }
}

.form-select {
  display: flex;
  height: 2.25rem;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: all 0.2s ease;
  outline: none;
  cursor: pointer;
}
.form-select:focus {
  border-color: #4f8ff7;
  box-shadow: 0 0 0 3px rgba(73, 146, 239, 0.1);
}
.form-select:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.form-textarea {
  display: flex;
  width: 100%;
  min-width: 0;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  outline: none;
  resize: vertical;
  min-height: 5rem;
  font-family: inherit;
}
.form-textarea::placeholder {
  color: #9ca3af;
}
.form-textarea:focus {
  border-color: #4f8ff7;
  box-shadow: 0 0 0 3px rgba(73, 146, 239, 0.1);
}
.form-textarea:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .form-textarea {
    font-size: 0.875rem;
  }
}

.form-hint {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.5;
}

.form-hint-link {
  color: #4f8ff7;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}
.form-hint-link:hover {
  text-decoration: underline;
}

.form-error {
  font-size: 0.875rem;
  color: #dc2626;
  display: block;
}

/* Radio Tabs (for Buy/Sell toggle) */
.radio-group-tabs {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.radio-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #1f2937;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}
.radio-tab:hover {
  background-color: #f9fafb;
}
.radio-tab--active {
  background-color: rgba(79, 143, 247, 0.1019607843);
}

.radio-tab-indicator {
  aspect-ratio: 1;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: relative;
}
.radio-tab-indicator--checked {
  border-color: #4f8ff7;
}
.radio-tab-indicator--checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #4f8ff7;
}

.radio-tab-icon {
  display: none;
}

.radio-tab-label {
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}
@media (min-width: 640px) {
  .radio-tab-label {
    font-size: 1rem;
  }
}

/* Trade Type Badge */
.trade-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 2px solid #bfdbfe;
  background-color: rgba(79, 143, 247, 0.1019607843);
  color: #4f8ff7;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.2s ease;
}

.trade-type-badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #4f8ff7;
  margin-right: 0.5rem;
}

/* Radio Group Inline (for cryptocurrency selection) */
.radio-group-inline {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.radio-input {
  aspect-ratio: 1;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  transition: all 0.2s ease;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  background-color: transparent;
}
.radio-input:checked {
  border-color: #4f8ff7;
  background-color: transparent;
}
.radio-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #4f8ff7;
}
.radio-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(73, 146, 239, 0.1);
}
.radio-input:disabled {
  cursor: not-allowed;
  border-color: #ef4444;
  background-color: #fef2f2;
}
.radio-input:disabled:checked {
  border-color: #ef4444;
  background-color: #fef2f2;
}
.radio-input:disabled:checked::after {
  background-color: #ef4444;
  display: block;
}

.radio-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
}
@media (min-width: 640px) {
  .radio-label {
    font-size: 1rem;
  }
}
.radio-label--disabled {
  color: #dc2626;
  cursor: not-allowed;
}

/* Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-input {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border: 1px solid #d1d5db;
  cursor: pointer;
}
.checkbox-input:checked {
  background-color: #4f8ff7;
  border-color: #4f8ff7;
}

.checkbox-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
}
@media (min-width: 640px) {
  .checkbox-label {
    font-size: 1rem;
  }
}

/* Submit Button */
.form-submit-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}
@media (min-width: 1024px) {
  .form-submit-wrapper {
    grid-column: 1/-1;
  }
}

.btn {
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  color: #FFFFFF;
  transition-duration: 150ms;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background-color: #4992EF;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #3b7ce6;
}

.btn-danger {
  background-color: #f56565;
  color: #FFFFFF;
}

.btn-danger:hover {
  background-color: #e53e3e;
}

.btn-secondary {
  background-color: #141414;
  border: 1px solid #262626;
}

.hero {
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
  background-color: #0e0e0e;
}
.hero h1 {
  margin: 2rem 0rem;
}
.hero p {
  margin: 1rem 0rem;
}

/* Optimized hero background effects */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.05), transparent 85%), radial-gradient(circle at top left, rgba(59, 130, 246, 0.05), transparent 85%), linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
  background-size: 100%, 100%, 32px 32px, 32px 32px;
}

.hero h1 {
  font-size: 3.5rem;
  font-family: "Inter";
  font-weight: 700;
}

.text-primary {
  color: #4f8ff7;
}

.text-muted {
  color: #a1a1aa !important;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  background-color: #fafafa;
  color: #4f8ff7;
  border: 1px solid rgba(79, 143, 247, 0.3019607843);
  gap: 4px;
  white-space: nowrap;
  max-width: fit-content;
}

.badge .icon-shield {
  width: 12px;
  height: 12px;
  pointer-events: none;
}

.container {
  padding: 2rem;
}

@media (min-width: 640px) {
  .container {
    padding: 4rem;
  }
}
/* Button group layout */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .button-group {
    flex-direction: row;
  }
}
/* Large button size */
.btn-lg {
  padding: 12px 24px;
  font-size: 1.125rem; /* 18px */
}

/* Primary button with icon */
.btn-primary-icon {
  background-color: #4f8ff7;
  color: white;
  gap: 8px;
}

.btn-primary-icon:hover {
  background-color: #3b7ce6;
}

/* Arrow icon animation */
.icon-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.btn-primary-icon:hover .icon-arrow {
  transform: translateX(4px);
}

/* Outline button style */
.btn-outline-alt {
  border: 2px solid #4f8ff7 !important;
  background-color: transparent;
  color: #FFFFFF;
}

.btn-outline {
  border: 2px solid rgba(79, 143, 247, 0.3019607843);
  color: #4f8ff7;
}

.btn-outline-alt:hover {
  background-color: #4f8ff7;
}

.feature-section {
  margin-top: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background-color: #111111;
  color: #fafafa;
  border: 1px solid rgba(38, 38, 38, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 1;
}
.feature-card:hover {
  border-color: #4f8ff7;
}
.feature-card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: #a1a1aa;
}

.icon-wrapper {
  width: 3rem;
  height: 3rem;
  background-color: rgba(79, 143, 247, 0.1019607843);
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #4f8ff7;
}
.feature-card:hover .icon-wrapper {
  transform: scale(1.1);
}

.why-bitania {
  background-color: #fff;
  padding: 6rem 0;
  color: #1a1a1a;
}
.why-bitania .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.why-bitania .section-header h2 {
  font-size: 2rem;
  font-family: "Inter";
  font-weight: 700;
  margin-bottom: 1rem;
}
.why-bitania .section-header p {
  font-size: 1.125rem;
  color: #6b7280;
}
.why-bitania .section-header .badge {
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.why-bitania .section-header .badge .icon-lock {
  width: 14px;
  height: 14px;
}
.why-bitania .why-bitania-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .why-bitania .why-bitania-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.why-bitania .feature-card--white {
  background-color: #fff;
  text-align: left;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.why-bitania .feature-card--white:hover {
  border-color: rgba(79, 143, 247, 0.3019607843);
}
.why-bitania .feature-card--white:hover {
  border-color: rgba(79, 143, 247, 0.3019607843);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}
.why-bitania .feature-card--white h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.why-bitania .feature-card--white .text-primary {
  color: #4f8ff7;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.why-bitania .feature-card--white .small {
  font-size: 0.875rem;
}
.why-bitania .feature-card--white .icon-wrapper {
  width: 3rem;
  height: 3rem;
  background-color: rgba(79, 143, 247, 0.1019607843);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.why-bitania .feature-card--white .icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #4f8ff7;
}
.feature-card--white:hover .why-bitania .feature-card--white .icon-wrapper {
  transform: scale(1.1);
}
.why-bitania .feature-card--white .feature-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.why-bitania .feature-card--white .feature-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.why-bitania .feature-card--white .feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4f8ff7;
}

.section-p2p-trading {
  padding: 2rem 1rem;
  background-color: #0e0e0e;
  position: relative;
}
.section-p2p-trading .container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-p2p-trading .content-wrapper {
  max-width: 64rem;
  margin: 0 auto;
}
.section-p2p-trading .header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-p2p-trading .header .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #0d3324, #0d3324);
  color: #0AD173;
  border: 1px solid rgba(10, 209, 115, 0.3);
  border-radius: 0.375rem;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  margin-bottom: 1rem;
}
.section-p2p-trading .header .badge svg {
  width: 0.75rem;
  height: 0.75rem;
  stroke: #0AD173;
}
.section-p2p-trading .header .title {
  font-size: 2rem;
  font-family: "Inter";
  font-weight: 700;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .section-p2p-trading .header .title {
    font-size: 2.5rem;
  }
}
.section-p2p-trading .header .subtitle {
  color: #a1a1aa;
  font-size: 1.125rem;
  padding: 1rem 0rem;
}
.section-p2p-trading .card {
  background-color: #121315;
  border: 1px solid rgba(38, 38, 38, 0.5);
  border-radius: 0.75rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.section-p2p-trading .card .card-header {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
}
.section-p2p-trading .card .card-header .card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFFFFF;
}
.section-p2p-trading .card .card-header .card-title svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #4f8ff7;
}
.section-p2p-trading .card .card-header .card-actions {
  display: flex;
  gap: 0.5rem;
  background-color: #1a1a1a;
  padding: 0.4rem;
  border-radius: 8px;
}
.section-p2p-trading .card .card-header .card-actions .btn {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.section-p2p-trading .card .card-header .card-actions .btn-buy {
  background-color: transparent;
  color: #fff;
}
.section-p2p-trading .card .card-header .card-actions .btn-buy:hover {
  background-color: #01A541;
}
.section-p2p-trading .card .card-header .card-actions .btn-sell {
  background-color: transparent;
  color: #fff;
}
.section-p2p-trading .card .card-header .card-actions .btn-sell:hover {
  background-color: #eb4034;
  color: #fff;
}
.section-p2p-trading .card .card-header .card-actions input[type=radio]:checked + .btn-buy {
  background-color: #01A541;
}
.section-p2p-trading .card .card-header .card-actions input[type=radio]:checked + .btn-sell {
  background-color: #eb4034;
}
.section-p2p-trading .card .card-body {
  padding: 0 1.5rem 1.5rem;
}
.section-p2p-trading .card .card-body .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.section-p2p-trading .card .card-body .form-grid .custom-select {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
}
.section-p2p-trading .card .card-body .form-grid .custom-select:hover {
  border-color: #555;
}
.section-p2p-trading .card .card-body .form-grid .custom-select:focus {
  outline: none;
  border-color: #4f8ff7;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.section-p2p-trading .card .card-body .form-grid .custom-select option {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 0.5rem;
}
.section-p2p-trading .card .card-body .form-grid .custom-select optgroup {
  background-color: #0f0f0f;
  color: #888;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .section-p2p-trading .card .card-body .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .section-p2p-trading .card .card-body .form-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.section-p2p-trading .card .card-body .form-grid .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #FFFFFF;
}
.section-p2p-trading .card .card-body .form-grid .form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}
.section-p2p-trading .card .card-body .form-grid .form-group:has(.btn-search) {
  justify-content: flex-end;
}
.section-p2p-trading .card .card-body .form-grid .form-group .select-fallback {
  background-color: #181A1B;
  border: 1px solid #27282A;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.section-p2p-trading .card .card-body .form-grid .form-group .select-fallback .mono {
  font-family: monospace;
}
.section-p2p-trading .card .card-body .form-grid .form-group .select-fallback .icon {
  width: 1rem;
  height: 1rem;
  opacity: 0.5;
}
.section-p2p-trading .card .card-body .form-grid .btn-search {
  background-color: #4f8ff7;
  color: #fff;
  height: 2.5rem;
  border-radius: 0.5rem;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.section-p2p-trading .card .card-body .form-grid .btn-search svg {
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}
.group:hover .section-p2p-trading .card .card-body .form-grid .btn-search svg {
  transform: scale(1.1);
}
.section-p2p-trading .card .card-body .form-grid .visually-hidden {
  opacity: 0;
  pointer-events: none;
}
.section-p2p-trading .card .card-body .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(38, 38, 38, 0.5);
}
.section-p2p-trading .card .card-body .card-footer .btn-filters {
  background-color: transparent;
  color: #a1a1aa;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-p2p-trading .card .card-body .card-footer .btn-filters .icon {
  width: 1rem;
  height: 1rem;
}
.section-p2p-trading .card .card-body .card-footer .btn-filters:hover {
  color: #fafafa;
}
.section-p2p-trading .card .card-body .card-footer .stats {
  display: flex;
  gap: 1rem;
  color: #a1a1aa;
  font-size: 0.875rem;
}

.stats-grid-home {
  margin-top: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stats-grid .stat-item {
  text-align: center;
}
.stats-grid .stat-item .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(79, 143, 247, 0.1019607843);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  transition: transform 0.3s ease;
}
.stats-grid .stat-item .icon-box svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #4f8ff7;
}
.stats-grid .stat-item .stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFFFFF;
  margin: 0.4rem 0rem;
}
.stats-grid .stat-item .stat-label {
  font-size: 0.875rem;
  color: #a1a1aa;
  margin: 0.2rem 0rem;
}

.trading-section {
  padding: 4rem 0;
  background: #f9fafb;
}
.trading-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.trading-section .card {
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 1rem;
}
.trading-section .card__header {
  padding: 1.5rem 1.5rem;
}
.trading-section .card__header-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .trading-section .card__header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.trading-section .card__title {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
}
.trading-section .card__title svg {
  margin-right: 0.5rem;
  color: #3b82f6;
  width: 1.25rem;
  height: 1.25rem;
}
.trading-section .card__subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
.trading-section .card__actions {
  display: flex;
  gap: 0.5rem;
}
.trading-section .card__content {
  overflow-x: auto;
}
.trading-section .card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
}
.trading-section .card__footer .pagination {
  display: flex;
  gap: 0.5rem;
}
.trading-section .trading-table {
  width: 100%;
  border-collapse: collapse;
}
.trading-section .trading-table th,
.trading-section .trading-table td {
  text-align: left;
  padding: 0.75rem;
  white-space: nowrap;
  font-size: 0.875rem;
}
.trading-section .trading-table thead {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #3E3E3E;
  color: #FFFFFF;
}
.trading-section .trading-table tbody tr {
  transition: background 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.trading-section .trading-table tbody tr:hover {
  background-color: #f3f4f6;
}
.trading-section .trader {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.trading-section .trader .avatar-wrapper {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}
.trading-section .trader .avatar {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  overflow: hidden;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #4f8ff7;
}
.trading-section .trader .avatar__status {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 0.75rem;
  height: 0.75rem;
  background: #22c55e;
  border: 2px solid #000;
  border-radius: 9999px;
  z-index: 2;
}
.trading-section .trader__name {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
}
.trading-section .trader__name svg {
  width: 1rem;
  height: 1rem;
  stroke: #4f8ff7;
}
.trading-section .trader__stats {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #6b7280;
}
.trading-section .trader__stats svg {
  width: 0.8rem;
  height: 0.8rem;
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.125rem;
  margin-right: 0.2rem;
}
.trading-section .trader__stats .rating svg {
  stroke: #f0b100;
  fill: #f0b100;
}
.trading-section .response-time svg {
  width: 0.8rem;
  height: 0.8rem;
}
.trading-section .badge {
  display: inline-block;
  background: #dfe9ff;
  border-radius: 0.375rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}
.trading-section .price {
  color: #4f8ff7;
  font-weight: 700;
}
.trading-section .limits {
  font-size: 0.875rem;
  color: #6b7280;
}
.trading-section .stats {
  font-size: 0.75rem;
}
.trading-section .stats .response-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6b7280;
}
.trading-section .stats .completion {
  color: #1d4ed8;
  font-weight: 500;
  margin-top: 0.25rem;
}
.trading-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.trading-section .btn--primary {
  background: #4f8ff7;
  color: #fff;
  border: none;
}
.trading-section .btn--primary:hover {
  background: #2563eb;
}
.trading-section .btn--outline {
  background: #fff;
  border: 1px solid #d1d5db;
  color: #111 !important;
}
.trading-section .btn--outline:hover {
  background: #f3f4f6;
}
.trading-section .btn--outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.trading-section .footer-text {
  color: #6b7280;
}

.pagination {
  text-align: right;
}

/* Wallet Page Styles */
.wallet-page {
  background-color: #f9fafb;
  min-height: 100vh;
  padding: 1.5rem 0;
}
.wallet-page .wallet-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .wallet-page .wallet-container {
    padding: 1.5rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .wallet-page .wallet-container {
    padding: 1.5rem 3rem;
  }
}
.wallet-page .wallet-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .wallet-page .wallet-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.wallet-page .wallet-header .wallet-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wallet-page .wallet-header .wallet-header-content .wallet-icon {
  width: 2rem;
  height: 2rem;
  color: #4f8ff7;
  flex-shrink: 0;
}
.wallet-page .wallet-header .wallet-header-content .wallet-header-text h1 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}
@media (min-width: 640px) {
  .wallet-page .wallet-header .wallet-header-content .wallet-header-text h1 {
    font-size: 1.5rem;
  }
}
.wallet-page .wallet-header .wallet-header-content .wallet-header-text p {
  font-size: 0.875rem;
  color: #6b7280;
}
.wallet-page .wallet-header .wallet-header-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .wallet-page .wallet-header .wallet-header-actions {
    flex-direction: row;
  }
}
.wallet-page .wallet-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.wallet-page .wallet-card .wallet-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}
.wallet-page .wallet-card .wallet-card-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wallet-page .wallet-card .wallet-card-header h4 svg {
  width: 1.25rem;
  height: 1.25rem;
}
.wallet-page .wallet-card .wallet-card-content {
  padding: 1.5rem;
}
.wallet-page .wallet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .wallet-page .wallet-grid {
    grid-template-columns: 2fr 1fr;
  }
}
.wallet-page .wallet-grid > .wallet-card,
.wallet-page .wallet-grid > .dashboard-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.wallet-page .wallet-grid > .wallet-card .wallet-card-content,
.wallet-page .wallet-grid > .wallet-card .card-content,
.wallet-page .wallet-grid > .dashboard-card .wallet-card-content,
.wallet-page .wallet-grid > .dashboard-card .card-content {
  flex: 1;
}
.wallet-page .wallet-overview .overview-value {
  margin-bottom: 1rem;
}
.wallet-page .wallet-overview .overview-value p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.wallet-page .wallet-overview .overview-value .value-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.wallet-page .wallet-overview .overview-value .value-display .total-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
}
.wallet-page .wallet-overview .overview-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}
@media (min-width: 640px) {
  .wallet-page .wallet-overview .overview-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.wallet-page .wallet-overview .overview-stats .stat-item {
  text-align: center;
}
@media (min-width: 640px) {
  .wallet-page .wallet-overview .overview-stats .stat-item {
    text-align: left;
  }
}
.wallet-page .wallet-overview .overview-stats .stat-item p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}
.wallet-page .wallet-overview .overview-stats .stat-item .stat-value {
  font-weight: 600;
  color: #111827;
}
.wallet-page .wallet-overview .overview-stats .stat-item .stat-value.positive {
  color: #16a34a;
}
.wallet-page .balance-hidden {
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #9ca3af;
}

/* Exchange Rate Modal Styles */
.modal-toggle {
  display: none;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  visibility: hidden;
}
@media (min-width: 640px) {
  .modal-overlay {
    padding: 1rem;
  }
}

.modal-toggle:checked ~ .modal-overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.modal-container {
  position: relative;
  z-index: 10000;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  box-sizing: border-box;
}

.modal-toggle:checked ~ .modal-overlay .modal-container {
  transform: scale(1) translateY(0);
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.modal-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  border: 1px solid #e5e7eb;
  box-sizing: border-box;
  width: 100%;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .modal-header {
    padding: 1.5rem;
  }
}
.modal-header .modal-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
@media (min-width: 640px) {
  .modal-header .modal-title {
    gap: 0.75rem;
    font-size: 1.25rem;
  }
}
.modal-header .modal-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #4f8ff7;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .modal-header .modal-title svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.modal-header .modal-close {
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-header .modal-close:hover {
  background-color: #f3f4f6;
}
.modal-header .modal-close svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
}

.modal-body {
  padding: 1rem;
  max-height: 60vh;
  overflow-y: auto;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .modal-body {
    padding: 1.5rem;
  }
}
.modal-body .modal-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.5;
}
@media (min-width: 640px) {
  .modal-body .modal-description {
    margin-bottom: 1.5rem;
  }
}

.exchange-rate-section {
  margin-bottom: 1.5rem;
}
.exchange-rate-section:last-child {
  margin-bottom: 0;
}

.exchange-rate-crypto {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}
.exchange-rate-crypto .crypto-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.exchange-rate-crypto .crypto-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.exchange-rate-crypto .crypto-icon.crypto-icon-monero {
  background-color: #f26822;
  color: white;
}
.exchange-rate-crypto .crypto-icon.crypto-icon-bitcoin {
  background-color: #f7931a;
  color: white;
}
.exchange-rate-crypto .crypto-icon.crypto-icon-litecoin {
  background-color: #345d9d;
  color: white;
}

.exchange-rate-table-wrapper {
  margin-top: 1rem;
  overflow-x: auto;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 640px) {
  .exchange-rate-table-wrapper {
    margin-top: 1.5rem;
  }
}
@media (max-width: 640px) {
  .exchange-rate-table-wrapper {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }
}

.exchange-rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.exchange-rate-table thead {
  background-color: #f9fafb;
}
.exchange-rate-table thead th {
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 700;
  color: #111827;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}
.exchange-rate-table thead th.currency-col {
  text-align: left;
}
.exchange-rate-table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.15s;
  background-color: #ffffff;
}
.exchange-rate-table tbody tr:last-child {
  border-bottom: none;
}
.exchange-rate-table tbody tr:hover {
  background-color: #f9fafb;
}
.exchange-rate-table tbody td {
  padding: 0.875rem 1rem;
  color: #374151;
  font-weight: 500;
  text-align: center;
}
.exchange-rate-table tbody td.currency-cell {
  text-align: left;
  font-weight: 700;
  color: #111827;
}

@media (max-width: 768px) {
  .exchange-rate-table {
    font-size: 0.75rem;
  }
  .exchange-rate-table thead th,
  .exchange-rate-table tbody td {
    padding: 0.5rem;
  }
}
@media (max-width: 768px) and (min-width: 640px) {
  .exchange-rate-table thead th,
  .exchange-rate-table tbody td {
    padding: 0.5rem 0.75rem;
  }
}
@media (max-width: 768px) {
  .exchange-rate-table thead th {
    font-size: 0.75rem;
  }
}
.modal-divider {
  height: 1px;
  background-color: #e5e7eb;
  margin: 1.5rem 0;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .modal-footer {
    padding: 1.5rem;
  }
}

.modal-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  display: inline-block;
}
.modal-btn.modal-btn-close {
  background-color: #ef4444;
  color: white;
}
.modal-btn.modal-btn-close:hover {
  background-color: #dc2626;
}

.wallet-page .security-card .security-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.wallet-page .security-card .security-item:last-child {
  margin-bottom: 1rem;
}
.wallet-page .security-card .security-item span {
  font-size: 0.875rem;
  color: #6b7280;
}
.wallet-page .security-card .security-item svg {
  width: 1rem;
  height: 1rem;
  color: #16a34a;
}
.wallet-page .wallet-tabs {
  background-color: #f3f4f6;
  border-radius: 0.75rem;
  padding: 0.1875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .wallet-page .wallet-tabs {
    display: inline-grid;
    min-width: 300px;
  }
}
.wallet-page .wallet-tabs .tab-input {
  display: none;
}
.wallet-page .wallet-tabs .tab-label {
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.wallet-page .wallet-tabs .tab-label:hover {
  color: #111827;
}
.wallet-page .wallet-tabs .tab-input:checked + .tab-label {
  background-color: #ffffff;
  color: #111827;
  border-color: #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.wallet-page .tab-content {
  display: none;
}
.wallet-page .tab-content.active {
  display: block;
}
.wallet-page .balance-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wallet-page .balance-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}
@media (min-width: 640px) {
  .wallet-page .balance-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.wallet-page .balance-item:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
}
.wallet-page .balance-item .balance-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.wallet-page .balance-item .balance-info .crypto-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wallet-page .balance-item .balance-info .crypto-icon .icon-inner {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wallet-page .balance-item .balance-info .crypto-icon .icon-inner svg {
  width: 1rem;
  height: 1rem;
  color: #ffffff;
}
.wallet-page .balance-item .balance-info .crypto-icon.xmr .icon-inner {
  background-color: #ff6600;
}
.wallet-page .balance-item .balance-info .crypto-icon.btc .icon-inner {
  background-color: #f7931a;
}
.wallet-page .balance-item .balance-info .crypto-icon.ltc .icon-inner {
  background-color: #a6a9aa;
}
.wallet-page .balance-item .balance-info .crypto-icon.usdt .icon-inner {
  background-color: #26a17b;
}
.wallet-page .balance-item .balance-info .crypto-details h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.125rem;
}
.wallet-page .balance-item .balance-info .crypto-details p {
  font-size: 0.875rem;
  color: #6b7280;
}
.wallet-page .balance-item .balance-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .wallet-page .balance-item .balance-details {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}
.wallet-page .balance-item .balance-details .balance-amounts {
  text-align: left;
}
@media (min-width: 640px) {
  .wallet-page .balance-item .balance-details .balance-amounts {
    text-align: right;
  }
}
.wallet-page .balance-item .balance-details .balance-amounts .crypto-amount {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}
.wallet-page .balance-item .balance-details .balance-amounts .fiat-amount {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.wallet-page .balance-item .balance-details .balance-action {
  width: 100%;
}
@media (min-width: 640px) {
  .wallet-page .balance-item .balance-details .balance-action {
    width: auto;
  }
}
.wallet-page .wallet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.wallet-page .wallet-btn.btn-outline {
  background-color: #ffffff;
  color: #374151;
  border: 1px solid #d1d5db;
}
.wallet-page .wallet-btn.btn-outline:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}
.wallet-page .wallet-btn.btn-outline svg {
  width: 1rem;
  height: 1rem;
}
.wallet-page .wallet-btn.btn-wallet-primary {
  background-color: #4f8ff7;
  color: #ffffff;
}
.wallet-page .wallet-btn.btn-wallet-primary:hover {
  background-color: #3b7ce6;
}
.wallet-page .wallet-btn.btn-wallet-primary svg {
  width: 1rem;
  height: 1rem;
}
.wallet-page .wallet-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.375rem;
  border: 1px solid transparent;
}
.wallet-page .wallet-badge.badge-success {
  background-color: #dcfce7;
  color: #166534;
  border-color: #bbf7d0;
}
.wallet-page .wallet-badge.badge-success svg {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.125rem;
}
.wallet-page .transactions-mobile {
  display: block;
}
@media (min-width: 640px) {
  .wallet-page .transactions-mobile {
    display: none;
  }
}
.wallet-page .transactions-desktop {
  display: none;
}
@media (min-width: 640px) {
  .wallet-page .transactions-desktop {
    display: block;
  }
}
.wallet-page .transaction-card-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wallet-page .transaction-card {
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: #ffffff;
  transition: all 0.2s ease;
}
.wallet-page .transaction-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.wallet-page .transaction-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.wallet-page .transaction-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wallet-page .transaction-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wallet-page .transaction-detail .detail-label {
  font-size: 0.875rem;
  color: #6b7280;
}
.wallet-page .transaction-detail .detail-value {
  font-weight: 500;
  color: #111827;
}
.wallet-page .transaction-detail .detail-value.transaction-time {
  font-size: 0.875rem;
}
.wallet-page .transaction-action {
  padding-top: 0.5rem;
}
.wallet-page .transaction-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wallet-page .transaction-type .transaction-type-text {
  text-transform: capitalize;
  font-weight: 500;
  color: #111827;
}
.wallet-page .transaction-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.wallet-page .transaction-icon.transaction-icon-deposit {
  color: #16a34a;
}
.wallet-page .transaction-icon.transaction-icon-withdrawal {
  color: #dc2626;
}
.wallet-page .transaction-icon.transaction-icon-trade {
  color: #3b82f6;
}
.wallet-page .transaction-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wallet-page .transaction-status .status-text {
  text-transform: capitalize;
  font-size: 0.875rem;
}
.wallet-page .status-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.wallet-page .status-icon.status-icon-completed {
  color: #16a34a;
}
.wallet-page .status-icon.status-icon-pending {
  color: #eab308;
}
.wallet-page .status-icon.status-icon-failed {
  color: #dc2626;
}
.wallet-page .transaction-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #374151;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.wallet-page .transaction-btn:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}
.wallet-page .transaction-btn svg {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
}
.wallet-page .transaction-table-wrapper {
  width: 100%;
  overflow-x: auto;
}
.wallet-page .transaction-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.wallet-page .transaction-table thead {
  border-bottom: 1px solid #e5e7eb;
}
.wallet-page .transaction-table thead th {
  padding: 0.75rem 0.5rem;
  text-align: left;
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
  font-size: 0.875rem;
}
.wallet-page .transaction-table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.15s ease;
}
.wallet-page .transaction-table tbody tr:last-child {
  border-bottom: none;
}
.wallet-page .transaction-table tbody tr:hover {
  background-color: #f9fafb;
}
.wallet-page .transaction-table tbody td {
  padding: 0.75rem 0.5rem;
  color: #374151;
  white-space: nowrap;
}
.wallet-page .transaction-table tbody td.crypto-cell {
  font-weight: 500;
  color: #111827;
}
.wallet-page .transaction-table tbody td.time-cell {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Deposit/Withdraw Page Styles */
.deposit-withdraw-page {
  background-color: #f9fafb;
  min-height: 100vh;
  padding: 1.5rem 0;
}
.deposit-withdraw-page .page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .deposit-withdraw-page .page-container {
    padding: 0 1.5rem;
  }
}
.deposit-withdraw-page .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}
@media (min-width: 640px) {
  .deposit-withdraw-page .breadcrumb {
    gap: 0.625rem;
  }
}
.deposit-withdraw-page .breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}
.deposit-withdraw-page .breadcrumb a:hover {
  color: #4f8ff7;
}
.deposit-withdraw-page .breadcrumb .breadcrumb-separator {
  display: inline-flex;
  align-items: center;
}
.deposit-withdraw-page .breadcrumb .breadcrumb-separator svg {
  width: 0.875rem;
  height: 0.875rem;
}
.deposit-withdraw-page .breadcrumb .breadcrumb-current {
  color: #4f8ff7;
  font-weight: 500;
}
.deposit-withdraw-page .page-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
}
.deposit-withdraw-page .page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .deposit-withdraw-page .page-grid {
    grid-template-columns: 2fr 1fr;
  }
}
.deposit-withdraw-page .dw-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.deposit-withdraw-page .dw-card .dw-card-header {
  padding: 1.5rem;
}
.deposit-withdraw-page .dw-card .dw-card-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}
.deposit-withdraw-page .dw-card .dw-card-header h4.text-green {
  color: #16a34a;
}
.deposit-withdraw-page .dw-card .dw-card-header h4.text-red {
  color: #dc2626;
}
.deposit-withdraw-page .dw-card .dw-card-content {
  padding: 1.5rem;
}
.deposit-withdraw-page .dw-card .dw-card-content.pt-0 {
  padding-top: 0;
}
.deposit-withdraw-page .dw-card p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.625;
}
.deposit-withdraw-page .address-box {
  padding: 1rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.deposit-withdraw-page .address-box .address-display {
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-size: 0.8125rem;
  line-height: 1.5;
  word-break: break-all;
  color: #111827;
  margin-bottom: 0.75rem;
}
.deposit-withdraw-page .alert-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.deposit-withdraw-page .alert-box svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.deposit-withdraw-page .alert-box.alert-warning {
  background-color: #fef3c7;
  border-color: #fcd34d;
  color: #92400e;
}
.deposit-withdraw-page .alert-box.alert-warning svg {
  color: #f59e0b;
}
.deposit-withdraw-page .alert-box.alert-danger {
  background-color: #fee2e2;
  border-color: #fca5a5;
  color: #7f1d1d;
}
.deposit-withdraw-page .alert-box.alert-danger svg {
  color: #dc2626;
}
.deposit-withdraw-page .form-group {
  margin-bottom: 1rem;
}
.deposit-withdraw-page .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}
.deposit-withdraw-page .form-group .form-hint {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
.deposit-withdraw-page .form-group input[type=text],
.deposit-withdraw-page .form-group input[type=number],
.deposit-withdraw-page .form-group input[type=password],
.deposit-withdraw-page .form-group textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background-color: #ffffff;
  transition: all 0.2s ease;
}
.deposit-withdraw-page .form-group input[type=text]:focus,
.deposit-withdraw-page .form-group input[type=number]:focus,
.deposit-withdraw-page .form-group input[type=password]:focus,
.deposit-withdraw-page .form-group textarea:focus {
  outline: none;
  border-color: #4f8ff7;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
}
.deposit-withdraw-page .form-group input[type=text]::placeholder,
.deposit-withdraw-page .form-group input[type=number]::placeholder,
.deposit-withdraw-page .form-group input[type=password]::placeholder,
.deposit-withdraw-page .form-group textarea::placeholder {
  color: #9ca3af;
}
.deposit-withdraw-page .form-group textarea {
  min-height: 5rem;
  resize: vertical;
}
.deposit-withdraw-page .captcha-group {
  margin-bottom: 1rem;
}
.deposit-withdraw-page .captcha-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}
.deposit-withdraw-page .captcha-group .captcha-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.deposit-withdraw-page .captcha-group .captcha-display .captcha-code {
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-family: monospace;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
.deposit-withdraw-page .captcha-group input {
  max-width: 20rem;
}
.deposit-withdraw-page .data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.deposit-withdraw-page .data-table thead tr {
  border-bottom: 1px solid #e5e7eb;
}
.deposit-withdraw-page .data-table thead th {
  padding: 0.5rem;
  text-align: left;
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
}
.deposit-withdraw-page .data-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s ease;
}
.deposit-withdraw-page .data-table tbody tr:hover {
  background-color: #f9fafb;
}
.deposit-withdraw-page .data-table tbody tr:last-child {
  border-bottom: none;
}
.deposit-withdraw-page .data-table tbody td {
  padding: 0.5rem;
  color: #374151;
  white-space: nowrap;
}
.deposit-withdraw-page .data-table tbody td.text-center {
  text-align: center;
  color: #6b7280;
  padding: 2rem 0.5rem;
}
.deposit-withdraw-page .data-table tbody td.font-mono {
  font-family: monospace;
  font-size: 0.75rem;
}
.deposit-withdraw-page .table-wrapper {
  overflow-x: auto;
}
.deposit-withdraw-page .status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.deposit-withdraw-page .status-indicator svg {
  width: 1rem;
  height: 1rem;
}
.deposit-withdraw-page .status-indicator svg.text-green {
  color: #16a34a;
}
.deposit-withdraw-page .status-indicator svg.text-yellow {
  color: #eab308;
}
.deposit-withdraw-page .status-indicator span {
  text-transform: capitalize;
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .deposit-withdraw-page .qr-sidebar {
    position: sticky;
    top: 1.5rem;
  }
}
.deposit-withdraw-page .qr-sidebar .qr-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.deposit-withdraw-page .qr-sidebar .qr-content .qr-image-wrapper {
  width: 12rem;
  height: 12rem;
  background-color: #ffffff;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}
.deposit-withdraw-page .qr-sidebar .qr-content .qr-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.deposit-withdraw-page .qr-sidebar .qr-content .qr-hint {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
}
.deposit-withdraw-page .btn-dw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.deposit-withdraw-page .btn-dw.btn-outline {
  background-color: #ffffff;
  color: #374151;
  border: 1px solid #d1d5db;
}
.deposit-withdraw-page .btn-dw.btn-outline:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}
.deposit-withdraw-page .btn-dw.btn-outline svg {
  width: 1rem;
  height: 1rem;
}
.deposit-withdraw-page .btn-dw.btn-green {
  background-color: #16a34a;
  color: #ffffff;
}
.deposit-withdraw-page .btn-dw.btn-green:hover {
  background-color: #15803d;
}
.deposit-withdraw-page .btn-dw.btn-primary {
  background-color: #4f8ff7;
  color: #ffffff;
}
.deposit-withdraw-page .btn-dw.btn-primary:hover {
  background-color: #3b7ce6;
}
.deposit-withdraw-page .btn-dw.w-full {
  width: 100%;
}

.as-seen-section {
  padding: 4rem 0;
  background-color: #0C0D0D;
}
.as-seen-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.as-seen-section .container .heading {
  text-align: center;
  margin-bottom: 3rem;
}
.as-seen-section .container .heading h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .as-seen-section .container .heading h2 {
    font-size: 1.875rem;
  }
}
.as-seen-section .container .logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .as-seen-section .container .logos {
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .as-seen-section .container .logos {
    gap: 4rem;
  }
}
.as-seen-section .container .logos .logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.as-seen-section .container .logos .logo-item:hover {
  opacity: 1;
}
.as-seen-section .container .logos .logo-item .media-logo {
  max-height: 60px;
  height: auto;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.5);
  transition: filter 0.3s ease;
}
@media (min-width: 768px) {
  .as-seen-section .container .logos .logo-item .media-logo {
    max-height: 70px;
    max-width: 200px;
  }
}
.as-seen-section .container .logos .logo-item .media-logo:hover {
  filter: brightness(0) invert(1);
}
.as-seen-section .container .logos .logo-item .logo-text {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  white-space: pre-line;
}
.as-seen-section .container .logos .logo-item .logo-subtext {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 0.25rem;
}
.as-seen-section .container .logos .logo-item .logo-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.as-seen-section .container .logos .logo-item .logo-inline .circle-wrapper {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.as-seen-section .container .logos .logo-item .logo-inline .circle-wrapper .circle-inner {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #1f2937;
  border-radius: 9999px;
}
.as-seen-section .container .logos .logo-item .nasdaq-icon {
  width: 2rem;
  height: 1.5rem;
  color: #fff;
}

.feedback-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(79, 143, 247, 0.3019607843);
  background-color: rgba(79, 143, 247, 0.1019607843);
  color: #4f8ff7;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .feedback-badge {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
  }
}
.feedback-badge:hover {
  background-color: rgba(79, 143, 247, 0.2);
}
.feedback-badge .feedback-icon {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  margin-right: 0.25rem;
}
@media (min-width: 640px) {
  .feedback-badge .feedback-icon {
    margin-right: 0;
  }
}
.feedback-badge .feedback-text-full {
  display: none;
}
@media (min-width: 640px) {
  .feedback-badge .feedback-text-full {
    display: inline;
  }
}
.feedback-badge .feedback-text-short {
  display: inline;
}
@media (min-width: 640px) {
  .feedback-badge .feedback-text-short {
    display: none;
  }
}

.wrap-main {
  padding: 1rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .wrap-main {
    padding: 3.5rem;
    max-width: 1280px;
  }
}

/* Profile Page Styles */
.profile-page {
  background-color: #ffffff;
  min-height: 100vh;
  /* Profile Reputation Section */
  /* Profile Advertisements Section */
  /* Profile Feedback Section */
  /* Pagination for Feedback */
  /* PGP Modal and Bio Section */
}
.profile-page .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem;
}
.profile-page .profile-header {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .profile-page .profile-header {
    margin-bottom: 1.5rem;
  }
}
.profile-page .profile-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .profile-page .profile-header h1 {
    font-size: 2.5rem;
  }
}
.profile-page .profile-header p {
  font-size: 0.875rem;
  color: #6b7280;
}
@media (min-width: 1024px) {
  .profile-page .profile-header p {
    font-size: 1rem;
  }
}
.profile-page .profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .profile-page .profile-grid {
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
  }
}
.profile-page .profile-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .profile-page .profile-card {
    padding: 1.5rem;
  }
}
.profile-page .profile-user-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.profile-page .profile-user-section .user-avatar-container {
  position: relative;
}
.profile-page .profile-user-section .user-avatar-container .user-avatar {
  width: 5rem;
  height: 5rem;
  background-color: #4f8ff7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .profile-page .profile-user-section .user-avatar-container .user-avatar {
    width: 6rem;
    height: 6rem;
  }
}
.profile-page .profile-user-section .user-avatar-container .user-avatar-admin {
  background-color: #ef4444 !important;
}
.profile-page .profile-user-section .user-avatar-container .user-avatar-moderator {
  background-color: #f59e0b !important;
}
.profile-page .profile-user-section .user-avatar-container .user-avatar-moderator .avatar-inner {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-page .profile-user-section .user-avatar-container .user-avatar-moderator .avatar-inner .profile-initials {
  color: white;
}
.profile-page .profile-user-section .user-avatar-container .user-avatar-moderator .avatar-inner svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #6b7280;
}
.profile-page .profile-user-section .user-avatar-container .online-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.profile-page .profile-user-section .user-avatar-container .online-badge .status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #22c55e;
  border-radius: 50%;
}
.profile-page .profile-user-section .user-avatar-container .online-badge span {
  font-size: 0.75rem;
  color: #15803d;
}
.profile-page .profile-user-section .user-info h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}
@media (min-width: 1024px) {
  .profile-page .profile-user-section .user-info h2 {
    font-size: 1.5rem;
  }
}
.profile-page .profile-user-section .user-info .user-rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.profile-page .profile-user-section .user-info .user-rank-badge svg {
  width: 16px;
  height: 16px;
}
.profile-page .profile-user-section .user-info .user-rank-admin {
  background-color: #fee2e2;
  color: #dc2626;
}
.profile-page .profile-user-section .user-info .user-rank-moderator {
  background-color: #fef3c7;
  color: #d97706;
}
.profile-page .profile-user-section .user-info p {
  font-size: 0.875rem;
  color: #6b7280;
}
@media (min-width: 1024px) {
  .profile-page .profile-user-section .user-info p {
    font-size: 1rem;
  }
}
.profile-page .profile-user-section .social-buttons {
  display: flex;
  gap: 0.5rem;
}
.profile-page .profile-user-section .social-buttons .social-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.profile-page .profile-user-section .social-buttons .social-btn svg {
  width: 1rem;
  height: 1rem;
}
.profile-page .profile-user-section .social-buttons .social-btn.twitter {
  background-color: #000000;
  color: #ffffff;
}
.profile-page .profile-user-section .social-buttons .social-btn.twitter:hover {
  background-color: #1a1a1a;
}
.profile-page .profile-user-section .social-buttons .social-btn.facebook {
  background-color: #4267b2;
  color: #ffffff;
}
.profile-page .profile-user-section .social-buttons .social-btn.facebook:hover {
  background-color: #365899;
}
.profile-page .profile-user-section .social-buttons .social-btn.email {
  background-color: #6b7280;
  color: #ffffff;
}
.profile-page .profile-user-section .social-buttons .social-btn.email:hover {
  background-color: #4b5563;
}
.profile-page .profile-user-section .feedback-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
}
@media (min-width: 640px) {
  .profile-page .profile-user-section .feedback-stats {
    gap: 1rem;
  }
}
.profile-page .profile-user-section .feedback-stats .feedback-stat {
  border-radius: 0.5rem;
  padding: 0.75rem;
  border: 1px solid;
}
.profile-page .profile-user-section .feedback-stats .feedback-stat.positive {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
}
.profile-page .profile-user-section .feedback-stats .feedback-stat.positive .stat-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.profile-page .profile-user-section .feedback-stats .feedback-stat.positive .stat-content svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #16a34a;
}
.profile-page .profile-user-section .feedback-stats .feedback-stat.positive .stat-content span {
  font-weight: 600;
  font-size: 1.125rem;
  color: #15803d;
}
.profile-page .profile-user-section .feedback-stats .feedback-stat.positive p {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 0.25rem;
  color: #16a34a;
}
.profile-page .profile-user-section .feedback-stats .feedback-stat.negative {
  background-color: #fef2f2;
  border-color: #fecaca;
}
.profile-page .profile-user-section .feedback-stats .feedback-stat.negative .stat-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.profile-page .profile-user-section .feedback-stats .feedback-stat.negative .stat-content svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #dc2626;
}
.profile-page .profile-user-section .feedback-stats .feedback-stat.negative .stat-content span {
  font-weight: 600;
  font-size: 1.125rem;
  color: #b91c1c;
}
.profile-page .profile-user-section .feedback-stats .feedback-stat.negative p {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 0.25rem;
  color: #dc2626;
}
.profile-page .profile-info-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.profile-page .profile-info-section .info-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .profile-page .profile-info-section .info-subtitle {
    margin-bottom: 1.5rem;
  }
}
.profile-page .profile-info-section .info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .profile-page .profile-info-section .info-list {
    gap: 1rem;
  }
}
.profile-page .profile-info-section .info-list .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.profile-page .profile-info-section .info-list .info-item:last-child {
  border-bottom: none;
}
.profile-page .profile-info-section .info-list .info-item .info-label {
  color: #6b7280;
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .profile-page .profile-info-section .info-list .info-item .info-label {
    font-size: 1rem;
  }
}
.profile-page .profile-info-section .info-list .info-item .info-value {
  color: #111827;
  font-weight: 500;
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .profile-page .profile-info-section .info-list .info-item .info-value {
    font-size: 1rem;
  }
}
.profile-page .profile-reputation-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.profile-page .profile-reputation-section .info-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .profile-page .profile-reputation-section .info-subtitle {
    margin-bottom: 1.5rem;
  }
}
.profile-page .profile-reputation-section .reputation-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .profile-page .profile-reputation-section .reputation-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 1280px) {
  .profile-page .profile-reputation-section .reputation-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
.profile-page .profile-reputation-section .reputation-item {
  background: linear-gradient(to bottom, #ffffff, #fafafa);
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s ease;
}
@media (min-width: 640px) {
  .profile-page .profile-reputation-section .reputation-item {
    padding: 1.25rem;
  }
}
.profile-page .profile-reputation-section .reputation-item:hover {
  border-color: #4f8ff7;
  box-shadow: 0 4px 12px rgba(79, 143, 247, 0.15);
  transform: translateY(-2px);
}
.profile-page .profile-reputation-section .reputation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f3f4f6;
}
.profile-page .profile-reputation-section .reputation-website {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}
.profile-page .profile-reputation-section .reputation-website svg {
  width: 20px;
  height: 20px;
  color: #6b7280;
  flex-shrink: 0;
}
.profile-page .profile-reputation-section .reputation-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4f8ff7;
  text-decoration: none;
  transition: color 0.2s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .profile-page .profile-reputation-section .reputation-link {
    font-size: 1rem;
  }
}
.profile-page .profile-reputation-section .reputation-link:hover {
  color: #3b7ce6;
  text-decoration: underline;
}
.profile-page .profile-reputation-section .reputation-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: #dcfce7;
  color: #15803d;
  border: 1.5px solid #86efac;
  flex-shrink: 0;
}
.profile-page .profile-reputation-section .reputation-badge svg {
  width: 16px;
  height: 16px;
}
.profile-page .profile-reputation-section .reputation-details {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .profile-page .profile-reputation-section .reputation-details {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.profile-page .profile-reputation-section .reputation-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.profile-page .profile-reputation-section .reputation-stat .reputation-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.profile-page .profile-reputation-section .reputation-stat .reputation-value {
  font-size: 0.875rem;
  color: #111827;
  font-weight: 600;
}
@media (min-width: 640px) {
  .profile-page .profile-reputation-section .reputation-stat .reputation-value {
    font-size: 0.9375rem;
  }
}
.profile-page .profile-reputation-section .reputation-stat .reputation-value.text-muted {
  color: #9ca3af;
  font-weight: 400;
}
.profile-page .profile-ads-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .profile-page .profile-ads-section h3 {
    font-size: 1.5rem;
  }
}
.profile-page .profile-ads-section .info-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.profile-page .profile-ads-section .ad-tab-input {
  display: none;
}
.profile-page .profile-ads-section .ad-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  padding: 0.25rem;
  margin-bottom: 1.5rem;
  gap: 0.25rem;
}
.profile-page .profile-ads-section .ad-tab-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: #6b7280;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 640px) {
  .profile-page .profile-ads-section .ad-tab-label {
    font-size: 1rem;
  }
}
.profile-page .profile-ads-section .ad-tab-label svg {
  flex-shrink: 0;
}
.profile-page .profile-ads-section .ad-tab-label:hover {
  background-color: rgba(79, 143, 247, 0.1);
  color: #4f8ff7;
}
.profile-page .profile-ads-section .ad-tab-label.active {
  background-color: #4f8ff7;
  color: #ffffff;
}
.profile-page .profile-ads-section #tab-buy:checked ~ .ad-tabs label[for=tab-buy],
.profile-page .profile-ads-section #tab-sell:checked ~ .ad-tabs label[for=tab-sell] {
  background-color: #4f8ff7;
  color: #ffffff;
}
.profile-page .profile-ads-section .ad-tab-content {
  display: none;
}
.profile-page .profile-ads-section #tab-buy:checked ~ #buy-content,
.profile-page .profile-ads-section #tab-sell:checked ~ #sell-content {
  display: block;
}
.profile-page .profile-ads-section .ads-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.profile-page .profile-ads-section .ad-item {
  background: linear-gradient(to bottom, #ffffff, #fafafa);
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s ease;
}
@media (min-width: 640px) {
  .profile-page .profile-ads-section .ad-item {
    padding: 1.25rem;
  }
}
.profile-page .profile-ads-section .ad-item:hover {
  border-color: #4f8ff7;
  box-shadow: 0 4px 12px rgba(79, 143, 247, 0.15);
  transform: translateY(-2px);
}
.profile-page .profile-ads-section .ad-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.profile-page .profile-ads-section .ad-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid;
}
.profile-page .profile-ads-section .ad-type-badge svg {
  width: 14px;
  height: 14px;
}
.profile-page .profile-ads-section .ad-type-badge.buy-badge {
  background-color: #dcfce7;
  color: #15803d;
  border-color: #86efac;
}
.profile-page .profile-ads-section .ad-type-badge.sell-badge {
  background-color: #fee2e2;
  color: #991b1b;
  border-color: #fca5a5;
}
.profile-page .profile-ads-section .ad-meta-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.profile-page .profile-ads-section .ad-location {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  background-color: #f9fafb;
  border-radius: 0.375rem;
  border: 1px solid #e5e7eb;
}
.profile-page .profile-ads-section .ad-location .emoji {
  font-size: 1rem;
}
.profile-page .profile-ads-section .ad-payment-method {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  background-color: #f3f4f6;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
}
.profile-page .profile-ads-section .ad-payment-method .payment-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  flex-shrink: 0;
}
.profile-page .profile-ads-section .ad-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .profile-page .profile-ads-section .ad-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.profile-page .profile-ads-section .ad-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 640px) {
  .profile-page .profile-ads-section .ad-detail-item.full-width {
    grid-column: 1/-1;
  }
}
.profile-page .profile-ads-section .ad-detail-item .ad-detail-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.profile-page .profile-ads-section .ad-detail-item .ad-detail-value {
  font-size: 0.875rem;
  color: #111827;
  font-weight: 500;
}
@media (min-width: 640px) {
  .profile-page .profile-ads-section .ad-detail-item .ad-detail-value {
    font-size: 1rem;
  }
}
.profile-page .profile-ads-section .ad-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}
.profile-page .profile-ads-section .view-all-ads {
  margin-top: 1.5rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}
.profile-page .profile-ads-section .view-all-ads .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #4f8ff7;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.profile-page .profile-ads-section .view-all-ads .btn-view-all:hover {
  background-color: #3b7ce6;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(79, 143, 247, 0.2);
}
.profile-page .profile-ads-section .view-all-ads .btn-view-all svg {
  width: 16px;
  height: 16px;
}
.profile-page .profile-ads-section .empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  text-align: center;
}
.profile-page .profile-ads-section .empty-state svg {
  color: #9ca3af;
  margin-bottom: 1rem;
}
.profile-page .profile-ads-section .empty-state p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
@media (min-width: 640px) {
  .profile-page .profile-ads-section .empty-state p {
    font-size: 1rem;
  }
}
.profile-page .profile-feedback-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .profile-page .profile-feedback-section h3 {
    font-size: 1.5rem;
  }
}
.profile-page .profile-feedback-section .info-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.profile-page .profile-feedback-section .feedback-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.profile-page .profile-feedback-section .feedback-item {
  background: linear-gradient(to bottom, #ffffff, #fafafa);
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s ease;
}
@media (min-width: 640px) {
  .profile-page .profile-feedback-section .feedback-item {
    padding: 1.25rem;
  }
}
.profile-page .profile-feedback-section .feedback-item:hover {
  border-color: #4f8ff7;
  box-shadow: 0 4px 12px rgba(79, 143, 247, 0.15);
}
.profile-page .profile-feedback-section .feedback-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.profile-page .profile-feedback-section .feedback-left {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}
.profile-page .profile-feedback-section .feedback-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #4f8ff7, #3b7ce6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.profile-page .profile-feedback-section .feedback-user-info {
  flex: 1;
  min-width: 0;
}
.profile-page .profile-feedback-section .feedback-username {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}
.profile-page .profile-feedback-section .feedback-username:hover {
  color: #4f8ff7;
}
.profile-page .profile-feedback-section .feedback-meta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #6b7280;
}
.profile-page .profile-feedback-section .feedback-meta svg {
  flex-shrink: 0;
}
.profile-page .profile-feedback-section .feedback-time {
  font-size: 0.75rem;
}
.profile-page .profile-feedback-section .feedback-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
  border: 1.5px solid;
}
.profile-page .profile-feedback-section .feedback-rating svg {
  width: 18px;
  height: 18px;
}
.profile-page .profile-feedback-section .feedback-rating.feedback-rating-positive {
  background-color: #dcfce7;
  color: #15803d;
  border-color: #86efac;
}
.profile-page .profile-feedback-section .feedback-rating.feedback-rating-positive svg {
  stroke: #15803d;
}
.profile-page .profile-feedback-section .feedback-rating.feedback-rating-negative {
  background-color: #fee2e2;
  color: #991b1b;
  border-color: #fca5a5;
}
.profile-page .profile-feedback-section .feedback-rating.feedback-rating-negative svg {
  stroke: #991b1b;
}
.profile-page .profile-feedback-section .feedback-rating.feedback-rating-neutral {
  background-color: #f3f4f6;
  color: #374151;
  border-color: #d1d5db;
}
.profile-page .profile-feedback-section .feedback-rating.feedback-rating-neutral svg {
  stroke: #374151;
}
.profile-page .profile-feedback-section .feedback-content {
  padding: 1rem;
  background-color: #f9fafb;
  border-radius: 0.5rem;
  border-left: 3px solid #4f8ff7;
}
.profile-page .profile-feedback-section .feedback-content p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #374151;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.profile-page .pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
}
.profile-page .pagination .page-info {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}
.profile-page .pagination .pagination-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.profile-page .pagination .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.profile-page .pagination .btn svg {
  width: 14px;
  height: 14px;
}
.profile-page .pagination .btn-secondary {
  background-color: #ffffff;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.profile-page .pagination .btn-secondary:hover {
  background-color: #f9fafb;
  border-color: #4f8ff7;
  color: #4f8ff7;
}
.profile-page .pgp-section {
  margin-top: 1rem;
  width: 100%;
}
.profile-page .modal-toggle {
  display: none;
}
.profile-page .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}
.profile-page .modal-toggle:checked ~ .modal-overlay {
  display: flex;
}
.profile-page .modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.profile-page .modal-container {
  position: relative;
  z-index: 10000;
  width: 100%;
  max-width: 600px;
}
.profile-page .modal-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.profile-page .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.profile-page .modal-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
.profile-page .modal-title svg {
  color: #4f8ff7;
}
.profile-page .modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #6b7280;
  transition: color 0.2s ease;
}
.profile-page .modal-close:hover {
  color: #111827;
}
.profile-page .modal-body {
  padding: 1.5rem;
}
.profile-page .modal-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.profile-page .pgp-key-container {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
  max-height: 300px;
  overflow-y: auto;
}
.profile-page .pgp-key-display {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #374151;
  margin: 0;
  white-space: pre-wrap;
  word-break: break-all;
}
.profile-page .modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e5e7eb;
}
.profile-page .modal-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.profile-page .modal-btn-close {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}
.profile-page .modal-btn-close:hover {
  background-color: #e5e7eb;
}
.profile-page .bio-section {
  width: 100%;
}
.profile-page .bio-section .text-muted {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.profile-page .bio-section .cloud-b {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
}
.profile-page .bio-section .cloud-b p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}
.profile-page .user-actions {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.profile-page .user-actions form {
  flex: 1;
  min-width: 0;
}
@media (min-width: 640px) {
  .profile-page .user-actions form {
    flex: 0 1 auto;
  }
}
.profile-page .user-actions .btn {
  width: 100%;
}
@media (min-width: 640px) {
  .profile-page .user-actions .btn {
    width: auto;
  }
}

.footer {
  background-color: #000000;
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem;
}
.footer .container .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer .container .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer .container .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer .container .footer-grid .footer-column h4 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.footer .container .footer-grid .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .container .footer-grid .footer-column ul li {
  margin-bottom: 0.75rem;
}
.footer .container .footer-grid .footer-column ul li a {
  font-size: 0.875rem;
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.3s;
}
.footer .container .footer-grid .footer-column ul li a:hover {
  color: #3b82f6;
}
.footer .container .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer .container .footer-bottom {
    flex-direction: row;
  }
}
.footer .container .footer-bottom .footer-copy {
  font-size: 0.875rem;
  color: #a1a1aa;
  text-align: center;
}
.footer .container .footer-bottom .footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}
.footer .container .footer-bottom .footer-links a {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.3s;
}
.footer .container .footer-bottom .footer-links a:hover {
  color: #3b82f6;
}
.footer .container .footer-bottom .footer-links span {
  color: #a1a1aa;
}

.login {
  width: 100%;
  min-height: calc(100vh - 200px);
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}
.login__wrapper {
  display: block;
  padding: 3rem 0.5rem;
  max-width: 28rem;
}
.login__card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.login__card--wide {
  max-width: 42rem;
}
.login__header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.login__header .login__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #4F8FF7, #3B7CE6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.login__header .login__icon--warning {
  background: linear-gradient(to bottom right, #f59e0b, #d97706);
}
.login__header .login__icon .icon--lock,
.login__header .login__icon .icon--key,
.login__header .login__icon .icon--user-plus,
.login__header .login__icon .icon--shield,
.login__header .login__icon .icon--phone {
  stroke: #fff;
  stroke-width: 0.1rem;
  width: 28px;
  height: 28px;
}
.login__header .login__title {
  font-size: 1.5rem;
  font-weight: 600;
}
.login__header .login__description {
  color: #6b7280;
}
.login select.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  font-size: 1rem;
  color: #111827;
  cursor: pointer;
  transition: all 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%234F8FF7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}
.login select.custom-select:hover {
  border-color: rgba(79, 143, 247, 0.5);
}
.login select.custom-select:focus {
  border-color: #4F8FF7;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.2);
}
.login__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.login__form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.login__form .form-group label,
.login__form .form-group .form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
}
.login__form .form-group .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: #f9fafb;
  color: #111827;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all 0.2s ease;
}
.login__form .form-group .form-control:focus {
  border-color: #4F8FF7;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.15);
}
.login__form .form-group .form-control::placeholder {
  color: #6b7280;
}
.login__form .form-group .form-help-text {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}
.login__form .form-group .input-wrapper {
  position: relative;
}
.login__form .form-group .input-wrapper input, .login__form .form-group .input-wrapper select {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: #f9fafb;
  color: #111827;
  font-size: 0.92rem;
  font: "Inter";
}
.login__form .form-group .input-wrapper input:focus, .login__form .form-group .input-wrapper select:focus {
  border-color: #4F8FF7;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.2);
}
.login__form .form-group .input-wrapper .input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  stroke: #6b7280;
  stroke-width: 0.1rem;
}
.login__form .form-group .input-wrapper .input-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}
.login__form .form-group .input-wrapper .input-toggle .icon--eye {
  width: 1rem;
  height: 1rem;
  color: #6b7280;
}
.login__form .form-group .input-wrapper .input-toggle .icon--eye:hover {
  color: #111827;
}
.login__form .checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.login__form .checkbox input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  accent-color: #4F8FF7;
}
.login__form .captcha svg {
  width: 1rem;
  height: 1rem;
}
.login__form .captcha .captcha__image {
  max-width: 50%;
}
.login__form .captcha .captcha__wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.login__form .captcha .captcha__wrapper .captcha__code {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 0.5rem 1rem;
  font-family: monospace;
  font-weight: bold;
  color: #111827;
  border-radius: 0.5rem;
}
.login__form .captcha .captcha__wrapper input {
  flex: 1;
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: #f9fafb;
  color: #111827;
  font-size: 0.92rem;
  font: "Inter";
}
.login__form .captcha .captcha__wrapper input:focus {
  border-color: #4F8FF7;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.2);
}
.login__form .captcha .captcha__wrapper .captcha__refresh {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
}
.login__form .captcha .captcha__wrapper .captcha__refresh:hover {
  color: #4F8FF7;
}
.login__form .btn--primary {
  background-color: #4F8FF7;
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.login__form .btn--primary:hover {
  background-color: #3B7CE6;
}
.login .divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #6b7280;
}
.login .divider span {
  padding: 0 1rem;
  background: #ffffff;
  position: relative;
  z-index: 1;
}
.login .divider:before, .login .divider:after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e5e7eb;
}
.login__footer {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}
.login__footer p {
  padding: 1rem 0rem;
}
.login__footer .link {
  color: #4F8FF7;
  text-decoration: none;
}
.login__footer .link:hover {
  color: #3B7CE6;
  text-decoration: underline;
}
.login__notice {
  margin-top: 1.5rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.login__notice .icon--shield {
  color: #4F8FF7;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  stroke-width: 0.15rem;
}
.login__notice h4 {
  margin: 0;
  font-size: 0.875rem;
  color: #111827;
}
.login__notice p {
  font-size: 0.75rem;
  padding: 0.5rem 0rem;
  color: #6b7280;
}
.login__notice .icon--lightbulb,
.login__notice .icon--help {
  color: #4F8FF7;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  stroke-width: 0.15rem;
}

.mnemonic-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.mnemonic-notice--important {
  background-color: #fef3c7;
  border: 1px solid #fbbf24;
}
.mnemonic-notice--danger {
  background-color: #fee2e2;
  border: 1px solid #f87171;
}

.mnemonic-notice-icon {
  flex-shrink: 0;
}
.mnemonic-notice-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.mnemonic-notice--important .mnemonic-notice-icon {
  color: #d97706;
}
.mnemonic-notice--danger .mnemonic-notice-icon {
  color: #dc2626;
}

.mnemonic-notice-content {
  flex: 1;
}

.mnemonic-notice-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}
.mnemonic-notice--important .mnemonic-notice-title {
  color: #92400e;
}
.mnemonic-notice--danger .mnemonic-notice-title {
  color: #991b1b;
}

.mnemonic-notice-text {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}
.mnemonic-notice--important .mnemonic-notice-text {
  color: #78350f;
}
.mnemonic-notice--danger .mnemonic-notice-text {
  color: #7f1d1d;
}

.mnemonic-container {
  margin-bottom: 1.5rem;
}

.mnemonic-display {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.mnemonic-display-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
}

.mnemonic-display-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.mnemonic-copy-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background-color: transparent;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  color: #6b7280;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mnemonic-copy-btn:hover {
  background-color: #ffffff;
  border-color: #4F8FF7;
  color: #4F8FF7;
}
.mnemonic-copy-btn:active {
  transform: scale(0.95);
}
.mnemonic-copy-btn.copying {
  animation: copyPulse 0.4s ease-in-out;
}
.mnemonic-copy-btn svg {
  width: 1rem;
  height: 1rem;
}

@keyframes copyPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.mnemonic-copy-text {
  font-weight: 500;
}

.mnemonic-words {
  padding: 1.5rem;
}
.mnemonic-words code {
  display: block;
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  line-height: 1.75;
  color: #1f2937;
  word-break: break-all;
  white-space: pre-wrap;
}

.pgp-message-display {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #1f2937;
  resize: none;
  outline: none;
  word-break: break-all;
  white-space: pre-wrap;
}

.mnemonic-tips {
  margin: 0.5rem 0 0 0;
  padding-left: 1.25rem;
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.6;
}
.mnemonic-tips li {
  margin-bottom: 0.375rem;
}

.login-banner {
  width: 100%;
  background-color: #0A0A0A;
  border-bottom: 1px solid rgba(203, 213, 224, 0.3);
  padding-block: 0.75rem;
}
.login-banner__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  color: #D1D5DB;
  text-align: center;
  padding: 0 1rem;
}
.login-banner__icon {
  width: 1rem;
  height: 1rem;
  stroke: #4F8FF7;
  flex-shrink: 0;
}
.login-banner__text {
  font-size: 0.875rem;
  margin: 0;
}

.flash-banner {
  width: 100%;
  border-bottom: 1px solid rgba(203, 213, 224, 0.3);
  padding-block: 0.75rem;
}
.flash-banner__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 0 1rem;
}
.flash-banner__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.flash-banner__text {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}
.flash-banner__text a {
  text-decoration: underline;
  font-weight: 500;
}
.flash-banner__text a:hover {
  opacity: 0.8;
}
.flash-banner--info {
  background-color: #0A0A0A;
  color: #D1D5DB;
}
.flash-banner--info a {
  color: #4F8FF7;
}
.flash-banner--success {
  background-color: #064e3b;
  color: #d1fae5;
}
.flash-banner--success a {
  color: #6ee7b7;
}
.flash-banner--error, .flash-banner--danger {
  background-color: #7f1d1d;
  color: #fecaca;
}
.flash-banner--error a, .flash-banner--danger a {
  color: #fca5a5;
}
.flash-banner--warning {
  background-color: #78350f;
  color: #fde68a;
}
.flash-banner--warning a {
  color: #fcd34d;
}

.ads-banner {
  background-color: #ffffff;
  padding: 0.75rem 0;
  border-bottom: 1px solid #CBD5E0;
}
.ads-banner .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .ads-banner .container {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .ads-banner .container {
    padding: 0 3rem;
  }
}

.login-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #FFF;
  font-size: 0.875rem;
}

.banner-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #4f8ff7;
  flex-shrink: 0;
}

.ads-main {
  background-color: white;
  color: #1a1a1a;
  min-height: calc(100vh - 64px);
}
.ads-main .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}
@media (min-width: 640px) {
  .ads-main .container {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .ads-main .container {
    padding: 3rem;
  }
}

.ads-header {
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .ads-header {
    margin-bottom: 2rem;
  }
}
.ads-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .ads-header h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .ads-header h1 {
    font-size: 2.5rem;
  }
}

.warning-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .warning-notice {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.warning-notice .warning-icon {
  width: 1rem;
  height: 1rem;
  color: #d97706;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
@media (min-width: 640px) {
  .warning-notice .warning-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.warning-notice p {
  color: #92400e;
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 640px) {
  .warning-notice p {
    font-size: 0.875rem;
  }
}

.ads-search-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .ads-search-card {
    margin-bottom: 2rem;
  }
}

.ads-search-form .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: end;
}
@media (min-width: 768px) {
  .ads-search-form .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .ads-search-form .form-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .ads-search-form .form-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.ads-search-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ads-search-form .form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
.ads-search-form .custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  border: 1px solid #d1d5db;
  background-color: #f9fafb;
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}
.ads-search-form .custom-select:hover {
  background-color: #f3f4f6;
  border-color: #9ca3af;
}
.ads-search-form .custom-select:focus {
  border-color: #4f8ff7;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234f8ff7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}
.ads-search-form .search-btn {
  height: 2.25rem;
  padding: 0 2rem;
  background-color: #4f8ff7;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.2s ease;
}
.ads-search-form .search-btn:hover {
  background-color: #3b7ce6;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.offers-section {
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .offers-section {
    margin-top: 2rem;
  }
}
.offers-section .section-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .offers-section .section-header h2 {
    font-size: 1.5rem;
  }
}
.offers-section .section-header p {
  color: #6b7280;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .offers-section .section-header p {
    font-size: 1rem;
  }
}

.offers-table {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.offers-table.promoted-offers {
  border: 2px solid #4f8ff7;
}
.offers-table.promoted-offers h3 {
  font-weight: 700;
}
.offers-table.regular-offers {
  border: 1px solid #e5e7eb;
}
.offers-table .table-header.promoted-header {
  background-color: #4f8ff7;
  color: white;
  padding: 0.75rem 1rem;
}
@media (min-width: 640px) {
  .offers-table .table-header.promoted-header {
    padding: 0.75rem 1rem;
  }
}
.offers-table .table-header.promoted-header h3 {
  font-weight: 500;
  font-size: 0.875rem;
  margin: 0;
}
@media (min-width: 640px) {
  .offers-table .table-header.promoted-header h3 {
    font-size: 1rem;
  }
}
.offers-table .table-columns {
  background-color: #333333;
  color: white;
}
.offers-table .table-columns .column-headers {
  display: none;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .offers-table .table-columns .column-headers {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr 0.8fr 1.2fr 1.5fr;
    gap: 1rem;
    padding: 1.25rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
}
.offers-table .table-columns .column-headers .col {
  color: white;
}
.offers-table .table-body {
  background-color: white;
}
.offers-table .table-body .offer-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s ease;
}
@media (min-width: 1024px) {
  .offers-table .table-body .offer-row {
    grid-template-columns: 1.2fr 1.8fr 0.8fr 1.2fr 1.5fr;
    align-items: center;
  }
}
.offers-table .table-body .offer-row:hover {
  background-color: #f9fafb;
}
.offers-table .table-body .offer-row:last-child {
  border-bottom: none;
}
.offers-table .table-body .offer-row .col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .offers-table .table-body .offer-row .col {
    gap: 0.5rem;
  }
}
.offers-table .table-body .offer-row .col.trade-speed {
  flex-direction: row;
  align-items: center;
}
.offers-table .table-body .offer-row .trader-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.offers-table .table-body .offer-row .trader-info .trader-name {
  font-weight: 600;
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}
.offers-table .table-body .offer-row .trader-info .trader-name a {
  color: #000;
  text-decoration: none;
}
.offers-table .table-body .offer-row .trader-info .trader-stats {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.125rem;
}
.offers-table .table-body .offer-row .trader-info .trader-stats .feedback-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.offers-table .table-body .offer-row .trader-info .trader-stats .feedback-container .feedback-percentage {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.offers-table .table-body .offer-row .trader-info .trader-stats .feedback-container .feedback-count {
  color: #6b7280;
  font-size: 0.6875rem;
  white-space: nowrap;
}
.offers-table .table-body .offer-row .trader-info .trader-stats .last-online {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.2;
}
.offers-table .table-body .offer-row .trader-info .trader-stats .last-online .online-indicator {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #3b82f6;
  border-radius: 50%;
  flex-shrink: 0;
}
.offers-table .table-body .offer-row .payment-method .badges-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.offers-table .table-body .offer-row .payment-method .payment-badge {
  border: 1px solid #4f8ff7;
  color: #4f8ff7;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  display: inline-block;
  width: fit-content;
}
.offers-table .table-body .offer-row .payment-method .verified-badge {
  background-color: #e3f2fd;
  color: #1976d2;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  width: fit-content;
}
.offers-table .table-body .offer-row .payment-method .pay-on-fill-badge {
  background-color: #fef3c7;
  color: #92400e;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  width: fit-content;
  border: 1px solid #fbbf24;
  cursor: help;
  transition: all 0.2s ease;
}
.offers-table .table-body .offer-row .payment-method .pay-on-fill-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.offers-table .table-body .offer-row .payment-method .pay-on-fill-badge:hover {
  background-color: #fde68a;
  border-color: #f59e0b;
  transform: translateY(-1px);
}
.offers-table .table-body .offer-row .payment-method .payment-details {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
.offers-table .table-body .offer-row .trade-speed {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.offers-table .table-body .offer-row .trade-speed .clock-icon {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
}
.offers-table .table-body .offer-row .trade-speed span {
  font-size: 0.875rem;
  color: #374151;
}
.offers-table .table-body .offer-row .price-info .price {
  font-weight: 700;
  color: #111827;
  font-size: 1rem;
}
.offers-table .table-body .offer-row .price-info .rate {
  font-size: 0.875rem;
  color: #6b7280;
}
.offers-table .table-body .offer-row .limits-action .limits {
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.5rem;
}
.offers-table .table-body .offer-row .limits-action .limits div {
  margin-bottom: 0.125rem;
}
.offers-table .table-body .offer-row .limits-action .btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  height: auto;
  width: fit-content;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .offers-table .table-body .offer-row .limits-action .btn-sm {
    padding: 0.375rem 1rem;
  }
}
.offers-table .table-footer {
  background-color: #f5f5f5;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .offers-table .table-footer {
    flex-direction: row;
    gap: 0;
  }
}
.offers-table .table-footer .btn {
  padding: 0.5rem 1rem;
  width: 100%;
}
@media (min-width: 640px) {
  .offers-table .table-footer .btn {
    width: auto;
  }
}
.offers-table .table-footer .btn-secondary {
  background-color: #333333;
  color: white;
  border: 1px solid #333333;
}
.offers-table .table-footer .btn-secondary:hover {
  background-color: #444444;
}
.offers-table .ads-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.offers-table .ads-pagination__prev {
  flex: 0 0 auto;
  min-width: 100px;
  text-align: left;
}
.offers-table .ads-pagination__next {
  flex: 0 0 auto;
  min-width: 100px;
  text-align: right;
}
.offers-table .ads-pagination__numbers {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.offers-table .ads-pagination__btn {
  padding: 0.625rem 1.25rem;
  background-color: #4f8ff7;
  color: white;
  border: 1px solid #4f8ff7;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.offers-table .ads-pagination__btn:hover {
  background-color: #3b7ce6;
  border-color: #3b7ce6;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.offers-table .ads-pagination__number {
  min-width: 36px;
  height: 36px;
  padding: 0.5rem 0.75rem;
  color: #4b5563;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.offers-table .ads-pagination__number:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
  color: #1f2937;
}
.offers-table .ads-pagination__number--active {
  background-color: #4f8ff7;
  color: white;
  border-color: #4f8ff7;
  font-weight: 600;
}
.offers-table .ads-pagination__number--active:hover {
  background-color: #3b7ce6;
  border-color: #3b7ce6;
}
@media (max-width: 768px) {
  .offers-table .ads-pagination {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }
  .offers-table .ads-pagination__prev, .offers-table .ads-pagination__next {
    width: 100%;
    min-width: auto;
    text-align: center;
  }
  .offers-table .ads-pagination__btn {
    width: 100%;
    display: block;
  }
  .offers-table .ads-pagination__numbers {
    width: 100%;
    order: -1;
  }
}
@media (max-width: 640px) {
  .offers-table .ads-pagination__numbers {
    gap: 0.25rem;
  }
  .offers-table .ads-pagination__number {
    min-width: 32px;
    height: 32px;
    padding: 0.375rem 0.5rem;
    font-size: 0.8125rem;
  }
  .offers-table .ads-pagination__btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}

.how-to-buy-section {
  margin-top: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}
@media (min-width: 640px) {
  .how-to-buy-section {
    margin-top: 3rem;
    margin-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .how-to-buy-section {
    margin-top: 4rem;
  }
}
.how-to-buy-section .section-icon {
  width: 4rem;
  height: 4rem;
  background-color: #4f8ff7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
@media (min-width: 640px) {
  .how-to-buy-section .section-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
  }
}
.how-to-buy-section .section-icon .coins-icon {
  width: 2rem;
  height: 2rem;
  color: white;
}
@media (min-width: 640px) {
  .how-to-buy-section .section-icon .coins-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.how-to-buy-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .how-to-buy-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .how-to-buy-section h2 {
    font-size: 2.5rem;
  }
}
.how-to-buy-section .section-description {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 4xl;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .how-to-buy-section .section-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}
.how-to-buy-section .info-box {
  background-color: #f9fafb;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin: 0 1rem 2rem;
  text-align: left;
}
@media (min-width: 640px) {
  .how-to-buy-section .info-box {
    padding: 1.5rem 2rem;
    margin: 0 0 2.5rem;
  }
}
@media (min-width: 1024px) {
  .how-to-buy-section .info-box {
    margin-bottom: 3rem;
  }
}
.how-to-buy-section .info-box p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .how-to-buy-section .info-box p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.how-to-buy-section .info-box p:last-child {
  margin-bottom: 0;
}
.how-to-buy-section .steps-section {
  margin-bottom: 2rem;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .how-to-buy-section .steps-section {
    margin-bottom: 2.5rem;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .how-to-buy-section .steps-section {
    margin-bottom: 3rem;
  }
}
.how-to-buy-section .steps-section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  text-align: left;
}
@media (min-width: 640px) {
  .how-to-buy-section .steps-section h3 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .how-to-buy-section .steps-section h3 {
    font-size: 1.5rem;
  }
}
.how-to-buy-section .steps-section .steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .how-to-buy-section .steps-section .steps-list {
    gap: 2rem;
  }
}
.how-to-buy-section .steps-section .step {
  display: flex;
  gap: 0.75rem;
  text-align: left;
}
@media (min-width: 640px) {
  .how-to-buy-section .steps-section .step {
    gap: 1rem;
  }
}
.how-to-buy-section .steps-section .step .step-number {
  width: 1.75rem;
  height: 1.75rem;
  background-color: #4f8ff7;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
@media (min-width: 640px) {
  .how-to-buy-section .steps-section .step .step-number {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
}
.how-to-buy-section .steps-section .step .step-content {
  flex: 1;
}
.how-to-buy-section .steps-section .step .step-content h4 {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
@media (min-width: 640px) {
  .how-to-buy-section .steps-section .step .step-content h4 {
    font-size: 1.125rem;
  }
}
.how-to-buy-section .steps-section .step .step-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .how-to-buy-section .steps-section .step .step-content p {
    font-size: 1rem;
  }
}
.how-to-buy-section .steps-section .step .step-content p:last-child {
  margin-bottom: 0;
}
.how-to-buy-section .steps-section .step .step-content .highlight {
  color: #4f8ff7;
}
.how-to-buy-section .support-section {
  padding: 0 1rem;
}
.how-to-buy-section .support-section p {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .how-to-buy-section .support-section p {
    font-size: 1.125rem;
  }
}
.how-to-buy-section .support-section .btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  width: 100%;
}
@media (min-width: 640px) {
  .how-to-buy-section .support-section .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    width: auto;
  }
}

.no-offers {
  padding: 1rem;
}
.no-offers a {
  color: #4f8ff7;
  text-decoration: none;
  font-weight: 600;
}

.payment-icon {
  display: inline-block;
  background-repeat: no-repeat;
  vertical-align: text-bottom;
}

.payment-icon {
  margin-right: 4px;
  width: 16px;
  height: 16px;
  background-image: url(/static/images/icons/payment-icons-sprite.png);
}

.payment-icon-gazprombank,
.website-icon-accept {
  background-position: 0 0;
}

.payment-icon-sbp {
  background-position: -18px 0;
}

.payment-icon-sberbank {
  background-position: -36px 0;
}

.payment-icon-tinkoff_bank {
  background-position: -54px 0;
}

.payment-icon-advcash {
  background-position: -90px 0;
}

.payment-icon-afriex {
  background-position: -108px 0;
}

.payment-icon-airtm {
  background-position: -126px 0;
}

.payment-icon-alipay {
  background-position: -144px 0;
}

.payment-icon-all_online {
  background-position: -162px 0;
}

.payment-icon-amex {
  background-position: -180px 0;
}

.payment-icon-apple_pay {
  background-position: 0 -18px;
}

.payment-icon-astropay {
  background-position: -18px -18px;
}

.payment-icon-bank_transfer_imps {
  background-position: -36px -18px;
}

.payment-icon-bizum {
  background-position: -54px -18px;
}

.payment-icon-bpay {
  background-position: -72px -18px;
}

.payment-icon-cash {
  background-position: -90px -18px;
}

.payment-icon-cashiers_check {
  background-position: -108px -18px;
}

.payment-icon-cashu {
  background-position: -126px -18px;
}

.payment-icon-cash_at_atm {
  background-position: -144px -18px;
}

.payment-icon-cash_by_mail {
  background-position: -162px -18px;
}

.payment-icon-cash_deposit {
  background-position: -180px -18px;
}

.payment-icon-cash_on_delivery {
  background-position: 0 -36px;
}

.payment-icon-chase_quickpay {
  background-position: -18px -36px;
}

.payment-icon-chime {
  background-position: -36px -36px;
}

.payment-icon-chipper_cash {
  background-position: -54px -36px;
}

.payment-icon-creditcard {
  background-position: -72px -36px;
}

.payment-icon-cryptocurrency {
  background-position: -90px -36px;
}

.payment-icon-dwolla {
  background-position: -108px -36px;
}

.payment-icon-easypaisa {
  background-position: -126px -36px;
}

.payment-icon-facebook_pay {
  background-position: -144px -36px;
}

.payment-icon-gift_card_code_global {
  background-position: -162px -36px;
}

.payment-icon-goldback {
  background-position: -180px -36px;
}

.payment-icon-googlewallet {
  background-position: 0 -54px;
}

.payment-icon-green_dot_card {
  background-position: -18px -54px;
}

.payment-icon-hal_cash {
  background-position: -36px -54px;
}

.payment-icon-hyperwallet {
  background-position: -54px -54px;
}

.payment-icon-ideal {
  background-position: -72px -54px;
}

.payment-icon-interac {
  background-position: -90px -54px;
}

.payment-icon-international_wire_swift {
  background-position: -108px -54px;
}

.payment-icon-kaoshi_network {
  background-position: -126px -54px;
}

.payment-icon-koronapay {
  background-position: -144px -54px;
}

.payment-icon-lydia {
  background-position: -162px -54px;
}

.payment-icon-mb_way {
  background-position: -180px -54px;
}

.payment-icon-mercado_pago {
  background-position: 0 -72px;
}

.payment-icon-mobilepay_danske_bank {
  background-position: -18px -72px;
}

.payment-icon-mobile_top_up {
  background-position: -36px -72px;
}

.payment-icon-moneybookers {
  background-position: -54px -72px;
}

.payment-icon-moneygram {
  background-position: -72px -72px;
}

.payment-icon-mpesa_kenya {
  background-position: -90px -72px;
}

.payment-icon-mpesa_tanzania {
  background-position: -108px -72px;
}

.payment-icon-mtn_mobile_money {
  background-position: -126px -72px;
}

.payment-icon-national_bank {
  background-position: -144px -72px;
}

.payment-icon-neosurf {
  background-position: -162px -72px;
}

.payment-icon-neteller {
  background-position: -180px -72px;
}

.payment-icon-netspend {
  background-position: 0 -90px;
}

.payment-icon-onecard {
  background-position: -18px -90px;
}

.payment-icon-osko_payid {
  background-position: -36px -90px;
}

.payment-icon-other {
  background-position: -54px -90px;
}

.payment-icon-other_online_wallet {
  background-position: -72px -90px;
}

.payment-icon-other_online_wallet_global {
  background-position: -90px -90px;
}

.payment-icon-other_pre_paid_debit {
  background-position: -108px -90px;
}

.payment-icon-other_remittance {
  background-position: -126px -90px;
}

.payment-icon-paxum {
  background-position: -144px -90px;
}

.payment-icon-payeer {
  background-position: -162px -90px;
}

.payment-icon-paym {
  background-position: -180px -90px;
}

.payment-icon-payoneer {
  background-position: 0 -108px;
}

.payment-icon-paypal {
  background-position: -18px -108px;
}

.payment-icon-paypalmycash {
  background-position: -36px -108px;
}

.payment-icon-paysafecard {
  background-position: -54px -108px;
}

.payment-icon-paysend {
  background-position: -72px -108px;
}

.payment-icon-paytm {
  background-position: -90px -108px;
}

.payment-icon-perfect_money {
  background-position: -108px -108px;
}

.payment-icon-pingit {
  background-position: -126px -108px;
}

.payment-icon-poli {
  background-position: -144px -108px;
}

.payment-icon-postal_order {
  background-position: -162px -108px;
}

.payment-icon-privat24 {
  background-position: -180px -108px;
}

.payment-icon-pyc {
  background-position: 0 -126px;
}

.payment-icon-postepay {
  background-position: -18px -126px;
}

.payment-icon-qiwi {
  background-position: -36px -126px;
}

.payment-icon-reloadit {
  background-position: -54px -126px;
}

.payment-icon-remitly {
  background-position: -72px -126px;
}

.payment-icon-revolut {
  background-position: -90px -126px;
}

.payment-icon-ria {
  background-position: -108px -126px;
}

.payment-icon-sepa {
  background-position: -126px -126px;
}

.payment-icon-serve2serve {
  background-position: -144px -126px;
}

.payment-icon-sofi_p2p {
  background-position: -162px -126px;
}

.payment-icon-solidtrustpay {
  background-position: -180px -126px;
}

.payment-icon-specific_bank {
  background-position: 0 -144px;
}

.payment-icon-cash_app {
  background-position: -18px -144px;
}

.payment-icon-strike {
  background-position: -36px -144px;
}

.payment-icon-superflash {
  background-position: -54px -144px;
}

.payment-icon-swish {
  background-position: -72px -144px;
}

.payment-icon-telegramatic_order {
  background-position: -90px -144px;
}

.payment-icon-tigopesa_tanzania {
  background-position: -108px -144px;
}

.payment-icon-transferwise {
  background-position: -126px -144px;
}

.payment-icon-twint {
  background-position: -144px -144px;
}

.payment-icon-up {
  background-position: -162px -144px;
}

.payment-icon-upi {
  background-position: -180px -144px;
}

.payment-icon-vanilla {
  background-position: 0 -162px;
}

.payment-icon-venmo {
  background-position: -18px -162px;
}

.payment-icon-vipps {
  background-position: -36px -162px;
}

.payment-icon-virtual_visa_mastercard {
  background-position: -54px -162px;
}

.payment-icon-walmart2walmart {
  background-position: -72px -162px;
}

.payment-icon-webmoney {
  background-position: -90px -162px;
}

.payment-icon-wechat {
  background-position: -108px -162px;
}

.payment-icon-worldremit {
  background-position: -126px -162px;
}

.payment-icon-wu {
  background-position: -144px -162px;
}

.payment-icon-xoom {
  background-position: -162px -162px;
}

.payment-icon-yandex_money {
  background-position: -180px -162px;
}

.payment-icon-yoomoney {
  background-position: 0 -180px;
}

.payment-icon-zelle {
  background-position: -18px -180px;
}

.payment-icon-zen {
  background-position: -36px -180px;
}

/* ============================================
   FORUM PAGE STYLES
   ============================================ */
.forum-page {
  min-height: 100vh;
  background-color: #f9fafb;
}

.forum-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .forum-main {
    padding: 1.5rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .forum-main {
    padding: 1.5rem 3rem;
  }
}

/* Breadcrumb Navigation */
.forum-breadcrumb {
  margin-bottom: 1.5rem;
}
.forum-breadcrumb .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 640px) {
  .forum-breadcrumb .breadcrumb-list {
    gap: 0.625rem;
  }
}
.forum-breadcrumb .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.forum-breadcrumb .breadcrumb-link {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}
.forum-breadcrumb .breadcrumb-link:hover {
  color: #4f8ff7;
}
.forum-breadcrumb .breadcrumb-separator {
  color: #9ca3af;
  display: flex;
  align-items: center;
}
.forum-breadcrumb .breadcrumb-separator svg {
  width: 14px;
  height: 14px;
}
.forum-breadcrumb .breadcrumb-page {
  color: #4f8ff7;
  font-weight: 500;
}

/* Forum Header */
.forum-header {
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .forum-header {
    margin-bottom: 2rem;
  }
}

.forum-header-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .forum-header-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.forum-header-text {
  flex: 1;
}
.forum-header-text .forum-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .forum-header-text .forum-title {
    font-size: 1.875rem;
  }
}
.forum-header-text .forum-description {
  font-size: 0.875rem;
  color: #4b5563;
}
@media (min-width: 640px) {
  .forum-header-text .forum-description {
    font-size: 1rem;
  }
}

.forum-header-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .forum-header-actions {
    flex-direction: row;
    gap: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .forum-header-actions {
    align-items: center;
  }
}

.forum-search {
  position: relative;
  width: 100%;
}
@media (min-width: 640px) {
  .forum-search {
    width: 20rem;
  }
}
.forum-search .search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #9ca3af;
  pointer-events: none;
}
.forum-search .forum-search-input {
  width: 100%;
  height: 2.5rem;
  padding-left: 2.5rem;
  padding-right: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background-color: #ffffff;
  transition: all 0.2s ease;
}
.forum-search .forum-search-input:focus {
  outline: none;
  border-color: #4f8ff7;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
}
.forum-search .forum-search-input::placeholder {
  color: #9ca3af;
}

.btn-forum-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 1rem;
  background-color: #4f8ff7;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .btn-forum-new {
    font-size: 1rem;
  }
}
.btn-forum-new:hover {
  background-color: #3b7ce6;
}
.btn-forum-new svg {
  width: 16px;
  height: 16px;
}

/* Stats Cards */
.forum-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .forum-stats {
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .forum-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.forum-stat-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background-color: #ffffff;
}
@media (min-width: 640px) {
  .forum-stat-card {
    padding: 1rem;
    gap: 0.75rem;
  }
}
.forum-stat-card .forum-stat-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .forum-stat-card .forum-stat-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.forum-stat-card .forum-stat-icon svg {
  width: 16px;
  height: 16px;
}
@media (min-width: 640px) {
  .forum-stat-card .forum-stat-icon svg {
    width: 20px;
    height: 20px;
  }
}
.forum-stat-card .forum-stat-content {
  min-width: 0;
  flex: 1;
}
.forum-stat-card .forum-stat-label {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}
@media (min-width: 640px) {
  .forum-stat-card .forum-stat-label {
    font-size: 0.875rem;
  }
}
.forum-stat-card .forum-stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
@media (min-width: 640px) {
  .forum-stat-card .forum-stat-value {
    font-size: 1.25rem;
  }
}
.forum-stat-card.forum-stat-blue .forum-stat-icon {
  background-color: rgba(79, 143, 247, 0.1);
  color: #4f8ff7;
}
.forum-stat-card.forum-stat-green .forum-stat-icon {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.forum-stat-card.forum-stat-purple .forum-stat-icon {
  background-color: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.forum-stat-card.forum-stat-amber .forum-stat-icon {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

/* Content Grid */
.forum-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .forum-content-grid {
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }
}

.forum-main-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .forum-main-section {
    gap: 1.5rem;
  }
}

/* Forum Card */
.forum-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
}
.forum-card .forum-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}
.forum-card .forum-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.forum-card .forum-card-title svg {
  width: 20px;
  height: 20px;
  color: #4f8ff7;
}
.forum-card .forum-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Category Card */
.category-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
@media (min-width: 640px) {
  .category-card {
    padding: 1rem;
  }
}
.category-card:hover {
  background-color: #f9fafb;
}
.category-card .category-card-main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}
@media (min-width: 640px) {
  .category-card .category-card-main {
    align-items: center;
    gap: 1rem;
  }
}
.category-card .category-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(79, 143, 247, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .category-card .category-icon {
    width: 3rem;
    height: 3rem;
  }
}
.category-card .category-icon svg {
  width: 16px;
  height: 16px;
  color: #4f8ff7;
}
@media (min-width: 640px) {
  .category-card .category-icon svg {
    width: 20px;
    height: 20px;
  }
}
.category-card .category-info {
  flex: 1;
  min-width: 0;
}
.category-card .category-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .category-card .category-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
.category-card .category-title .category-emoji {
  font-size: 1rem;
}
@media (min-width: 640px) {
  .category-card .category-title .category-emoji {
    font-size: 1.125rem;
  }
}
.category-card .category-title a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.category-card .category-title a:hover {
  color: #4f8ff7;
}
.category-card .category-description {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0 0 0.25rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 640px) {
  .category-card .category-description {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}
.category-card .category-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #9ca3af;
}
@media (min-width: 640px) {
  .category-card .category-meta {
    gap: 1rem;
  }
}
.category-card .category-last-activity {
  display: none;
  text-align: right;
  max-width: 12rem;
  min-width: 0;
}
@media (min-width: 1024px) {
  .category-card .category-last-activity {
    display: block;
  }
}
.category-card .category-last-activity .last-post-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  margin: 0 0 0.25rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.category-card .category-last-activity .last-post-author,
.category-card .category-last-activity .last-post-time {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}
.category-card .category-last-activity .no-activity {
  font-size: 0.875rem;
  color: #9ca3af;
  margin: 0;
}
.category-card .category-chevron {
  width: 16px;
  height: 16px;
  color: #9ca3af;
  margin-left: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .category-card .category-chevron {
    margin-left: 1rem;
  }
}

/* Discussion Item */
.discussion-item {
  display: flex;
  align-items: flex-start;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
@media (min-width: 640px) {
  .discussion-item {
    padding: 1rem;
  }
}
.discussion-item:hover {
  background-color: #f9fafb;
}
.discussion-item .discussion-avatar {
  width: 2rem;
  height: 2rem;
  background-color: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4b5563;
  flex-shrink: 0;
}
.discussion-item .discussion-content {
  flex: 1;
  min-width: 0;
  margin-left: 0.75rem;
}
.discussion-item .discussion-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
@media (min-width: 640px) {
  .discussion-item .discussion-title {
    font-size: 1rem;
  }
}
.discussion-item .discussion-title .pin-icon {
  width: 12px;
  height: 12px;
  color: #4f8ff7;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
@media (min-width: 640px) {
  .discussion-item .discussion-title .pin-icon {
    width: 16px;
    height: 16px;
  }
}
.discussion-item .discussion-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}
@media (min-width: 640px) {
  .discussion-item .discussion-meta {
    gap: 1rem;
    font-size: 0.875rem;
  }
}
.discussion-item .discussion-badge {
  padding: 0.125rem 0.5rem;
  background-color: #f3f4f6;
  color: #4b5563;
  border-radius: 0.375rem;
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .discussion-item .discussion-badge {
    padding: 0.25rem 0.5rem;
  }
}
.discussion-item .discussion-stats {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.discussion-item .discussion-stats svg {
  width: 12px;
  height: 12px;
}
.discussion-item .discussion-stats-desktop {
  display: none;
}
@media (min-width: 768px) {
  .discussion-item .discussion-stats-desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
.discussion-item .category-chevron {
  width: 16px;
  height: 16px;
  color: #9ca3af;
  margin-left: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
@media (min-width: 640px) {
  .discussion-item .category-chevron {
    margin-left: 1rem;
  }
}

/* Sidebar */
.forum-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .forum-sidebar {
    gap: 1.5rem;
  }
}

.sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 2.25rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
@media (min-width: 640px) {
  .sidebar-btn {
    height: 2.5rem;
  }
}
.sidebar-btn svg {
  width: 16px;
  height: 16px;
}
.sidebar-btn.sidebar-btn-primary {
  background-color: #4f8ff7;
  color: #ffffff;
  border: none;
}
.sidebar-btn.sidebar-btn-primary:hover {
  background-color: #3b7ce6;
}
.sidebar-btn.sidebar-btn-secondary {
  background-color: #ffffff;
  color: #374151;
  border: 1px solid #e5e7eb;
}
.sidebar-btn.sidebar-btn-secondary:hover {
  background-color: #f9fafb;
}

/* Contributors */
.contributor-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.contributor-item .contributor-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contributor-item .contributor-rank {
  width: 2rem;
  height: 2rem;
  background-color: rgba(79, 143, 247, 0.1);
  color: #4f8ff7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}
.contributor-item .contributor-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  margin: 0 0 0.125rem 0;
}
.contributor-item .contributor-posts {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}
.contributor-item .contributor-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.contributor-item .contributor-badge.badge-expert {
  background-color: #dbeafe;
  color: #1e40af;
}
.contributor-item .contributor-badge.badge-pro {
  background-color: #dcfce7;
  color: #16a34a;
}
.contributor-item .contributor-badge.badge-developer {
  background-color: #f3e8ff;
  color: #7c3aed;
}
.contributor-item .contributor-badge.badge-helper {
  background-color: #fef3c7;
  color: #d97706;
}
.contributor-item .contributor-badge.badge-analyst {
  background-color: #fee2e2;
  color: #dc2626;
}

/* Guidelines */
.guidelines-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}
.guidelines-list li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.guidelines-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #4f8ff7;
  text-decoration: none;
  transition: all 0.2s ease;
}
.guidelines-link:hover {
  text-decoration: underline;
}

/* ============================================
   CREATE TOPIC PAGE STYLES
   ============================================ */
.create-topic-header {
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .create-topic-header {
    margin-bottom: 2rem;
  }
}
.create-topic-header .header-actions {
  margin-bottom: 1rem;
}
.create-topic-header .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: #ffffff;
  color: #374151;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
@media (min-width: 640px) {
  .create-topic-header .btn-back {
    padding: 0.5rem 1rem;
    height: 2.25rem;
  }
}
.create-topic-header .btn-back svg {
  width: 16px;
  height: 16px;
}
.create-topic-header .btn-back:hover {
  background-color: #f9fafb;
}
.create-topic-header .btn-back .btn-back-text-full {
  display: none;
}
@media (min-width: 640px) {
  .create-topic-header .btn-back .btn-back-text-full {
    display: inline;
  }
}
.create-topic-header .btn-back .btn-back-text-short {
  display: inline;
}
@media (min-width: 640px) {
  .create-topic-header .btn-back .btn-back-text-short {
    display: none;
  }
}
.create-topic-header .header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .create-topic-header .header-content {
    gap: 1rem;
  }
}
.create-topic-header .header-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: rgba(79, 143, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .create-topic-header .header-icon {
    width: 4rem;
    height: 4rem;
  }
}
.create-topic-header .header-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #4f8ff7;
}
@media (min-width: 640px) {
  .create-topic-header .header-icon svg {
    width: 2rem;
    height: 2rem;
  }
}
.create-topic-header .header-text {
  flex: 1;
  min-width: 0;
}
.create-topic-header .header-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem 0;
}
@media (min-width: 640px) {
  .create-topic-header .header-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .create-topic-header .header-title {
    font-size: 1.875rem;
  }
}
.create-topic-header .header-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
@media (min-width: 640px) {
  .create-topic-header .header-description {
    font-size: 1rem;
  }
}

.create-topic-form .forum-card-content {
  gap: 1rem;
}
@media (min-width: 640px) {
  .create-topic-form .forum-card-content {
    gap: 1.5rem;
  }
}

/* Form Fields */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background-color: #ffffff;
  transition: all 0.2s ease;
  outline: none;
}
@media (min-width: 640px) {
  .form-input,
  .form-textarea {
    font-size: 1rem;
  }
}
.form-input:focus,
.form-textarea:focus {
  border-color: #4f8ff7;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}
.form-input:disabled,
.form-textarea:disabled {
  background-color: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.6;
}

.form-input {
  height: 2.5rem;
}

.form-textarea {
  min-height: 8rem;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}

.form-help {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
@media (min-width: 640px) {
  .form-help {
    font-size: 0.875rem;
  }
}

.emoji-hint {
  color: #6b7280;
}

/* Guidelines Box */
.guidelines-box {
  padding: 1rem;
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
}
.guidelines-box .guidelines-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e40af;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .guidelines-box .guidelines-title {
    font-size: 1rem;
  }
}
.guidelines-box .guidelines-title svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.guidelines-box .guidelines-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
  color: #1e40af;
}
@media (min-width: 640px) {
  .guidelines-box .guidelines-list {
    font-size: 0.875rem;
  }
}
.guidelines-box .guidelines-list li {
  margin-bottom: 0.375rem;
  line-height: 1.5;
}
.guidelines-box .guidelines-list li:last-child {
  margin-bottom: 0;
}

/* CAPTCHA */
.captcha-container {
  margin-bottom: 0.75rem;
}

.captcha-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.captcha-input {
  max-width: 20rem;
}

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
}
@media (min-width: 640px) {
  .form-actions {
    flex-direction: row;
    gap: 0.75rem;
  }
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background-color: #4f8ff7;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
}
@media (min-width: 640px) {
  .btn-submit {
    flex: none;
  }
}
.btn-submit svg {
  width: 16px;
  height: 16px;
}
.btn-submit:hover:not(:disabled) {
  background-color: #3b7ce6;
}
.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1rem;
  background-color: #ffffff;
  color: #374151;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
}
@media (min-width: 640px) {
  .btn-cancel {
    flex: none;
    font-size: 1rem;
  }
}
.btn-cancel:hover {
  background-color: #f9fafb;
}

/* ============================================
   FORUM CATEGORY PAGE STYLES
   ============================================ */
/* Category Header */
.category-header {
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .category-header {
    margin-bottom: 2rem;
  }
}

.category-header-back {
  margin-bottom: 1rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: #ffffff;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
@media (min-width: 640px) {
  .btn-back {
    height: 2.25rem;
    padding: 0 0.75rem;
  }
}
.btn-back svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-back .back-text-full {
  display: none;
}
@media (min-width: 640px) {
  .btn-back .back-text-full {
    display: inline;
  }
}
.btn-back .back-text-short {
  display: inline;
}
@media (min-width: 640px) {
  .btn-back .back-text-short {
    display: none;
  }
}
.btn-back:hover {
  background-color: #f9fafb;
  color: #4f8ff7;
}

.category-header-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-header-main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}
@media (min-width: 640px) {
  .category-header-main {
    gap: 1rem;
  }
}

.category-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .category-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
  }
}
.category-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 640px) {
  .category-icon svg {
    width: 2rem;
    height: 2rem;
  }
}

.category-info {
  flex: 1;
  min-width: 0;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .category-title {
    font-size: 1.5rem;
    gap: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .category-title {
    font-size: 1.875rem;
  }
}
.category-title span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-description {
  font-size: 0.875rem;
  color: #4b5563;
  margin: 0.25rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 640px) {
  .category-description {
    font-size: 1rem;
  }
}

.category-stats {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}
@media (min-width: 640px) {
  .category-stats {
    gap: 1.5rem;
    font-size: 0.875rem;
  }
}
.category-stats span {
  white-space: nowrap;
}

.btn-new-topic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0.5rem 1rem;
  background-color: #4f8ff7;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}
@media (min-width: 640px) {
  .btn-new-topic {
    width: auto;
    align-self: flex-start;
  }
}
.btn-new-topic svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-new-topic:hover {
  background-color: #3b7ce6;
  opacity: 0.9;
}

.admin-actions {
  margin-top: 0.5rem;
}

.btn-admin-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  padding: 0 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (min-width: 640px) {
  .btn-admin-toggle {
    height: 2.25rem;
    font-size: 0.875rem;
  }
}
.btn-admin-toggle.btn-warning {
  background-color: #fef3c7;
  color: #92400e;
  border-color: #fbbf24;
}
.btn-admin-toggle.btn-warning:hover {
  background-color: #fde68a;
}
.btn-admin-toggle.btn-success {
  background-color: #d1fae5;
  color: #065f46;
  border-color: #10b981;
}
.btn-admin-toggle.btn-success:hover {
  background-color: #a7f3d0;
}

/* Topics List */
.topics-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.topic-item {
  display: flex;
  align-items: flex-start;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 640px) {
  .topic-item {
    padding: 1rem;
  }
}

.topic-main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}
@media (min-width: 640px) {
  .topic-main {
    gap: 1rem;
  }
}

.topic-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4b5563;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .topic-avatar {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.875rem;
  }
}

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

.topic-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
@media (min-width: 640px) {
  .topic-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
.topic-title .icon-pin {
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .topic-title .icon-pin {
    width: 1rem;
    height: 1rem;
  }
}
.topic-title span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.topic-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #4b5563;
}
@media (min-width: 640px) {
  .topic-meta {
    gap: 1rem;
    font-size: 0.875rem;
  }
}
.topic-meta .topic-author {
  white-space: nowrap;
}
.topic-meta .badge {
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .topic-meta .badge {
    padding: 0.25rem 0.5rem;
  }
}
.topic-meta .badge.badge-administrator {
  background-color: #fee2e2;
  color: #991b1b;
}
.topic-meta .badge.badge-moderator {
  background-color: #dbeafe;
  color: #1e40af;
}

.topic-likes {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.topic-likes svg {
  width: 0.75rem;
  height: 0.75rem;
}

.topic-stats-mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .topic-stats-mobile {
    display: none;
  }
}
.topic-stats-mobile .stat-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.topic-stats-mobile .stat-item svg {
  width: 0.75rem;
  height: 0.75rem;
}

.topic-last-reply-mobile {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .topic-last-reply-mobile {
    display: none;
  }
}

.topic-stats-desktop {
  display: none;
}
@media (min-width: 768px) {
  .topic-stats-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
  }
}
.topic-stats-desktop .stat-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.topic-stats-desktop .stat-item svg {
  width: 0.75rem;
  height: 0.75rem;
}
.topic-stats-desktop .last-reply-info {
  text-align: right;
}
.topic-stats-desktop .last-reply-info p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
}
.topic-stats-desktop .last-reply-info .last-reply-author {
  font-size: 0.75rem;
}
.topic-stats-desktop .last-reply-info .last-reply-time {
  font-size: 0.75rem;
  color: #9ca3af;
}

.chevron-icon {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
  margin-left: 1rem;
  flex-shrink: 0;
}

.topic-count {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6b7280;
}

.no-topics {
  padding: 2rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .no-topics {
    font-size: 1rem;
  }
}

.notifications-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 3rem;
}

.page-header-section {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header-content {
  flex: 1;
  min-width: 250px;
}

.header-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-icon {
  color: var(--primary);
}

.header-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.header-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.inline-form {
  display: inline-block;
}

.notifications-container {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.notifications-list {
  display: flex;
  flex-direction: column;
}

.notification-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--card-bg);
  transition: background-color 0.2s;
}

.notification-card:last-child {
  border-bottom: none;
}

.notification-card:hover {
  background: var(--hover-bg);
}

.notification-card--unread {
  background: var(--primary-light);
}

.notification-card--unread:hover {
  background: var(--primary-lighter);
}

.notification-indicator {
  display: flex;
  align-items: center;
  padding-top: 0.25rem;
}

.notification-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4f8ff7;
  color: #4f8ff7;
}

.notification-dot--read {
  background: var(--border-color);
  box-shadow: none;
}

.notification-icon {
  display: flex;
  align-items: flex-start;
  padding-top: 0.125rem;
  color: var(--text-secondary);
}

.notification-card--unread .notification-icon {
  color: var(--primary);
}

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

.notification-message {
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.notification-message a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.notification-message a:hover {
  text-decoration: underline;
}

.notification-meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.notification-actions {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  padding-top: 0.125rem;
}

.empty-state {
  padding: 4rem 2rem;
  text-align: center;
}

.empty-state-icon {
  margin: 0 auto 1.5rem;
  color: var(--text-tertiary);
  opacity: 0.5;
}

.empty-state-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.75rem 0;
}

.empty-state-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .notifications-page {
    padding: 1rem 0.5rem;
  }
  .page-header-section {
    flex-direction: column;
    align-items: stretch;
  }
  .header-actions {
    justify-content: stretch;
  }
  .header-actions form {
    flex: 1;
  }
  .header-actions button {
    width: 100%;
    justify-content: center;
  }
  .notification-card {
    padding: 1rem;
    gap: 0.75rem;
  }
  .notification-actions {
    flex-direction: column;
    gap: 0.375rem;
  }
  .btn-sm .btn-text {
    display: none;
  }
  .btn-sm {
    padding: 0.5rem;
  }
}
.btn-danger-outline {
  border: 1px solid #f56565 !important;
  background-color: rgba(0, 0, 0, 0);
  color: #f56565;
}

.btn-danger-ghost {
  background-color: #f56565;
}

/* Wallet Crypto Page Styles */
.wallet-crypto-page {
  min-height: 100vh;
  background-color: #f9fafb;
  padding: 1.5rem 0;
  width: 100%;
  overflow-x: hidden;
}

.wallet-crypto-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.75rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .wallet-crypto-container {
    padding: 0 1rem;
  }
}
@media (min-width: 1024px) {
  .wallet-crypto-container {
    padding: 0 3rem;
  }
}

.wallet-crypto-header {
  margin-bottom: 1.5rem;
}

.breadcrumb-nav {
  margin-bottom: 1rem;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #9ca3af;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.breadcrumb-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb-link:hover {
  color: #4f8ff7;
}

.breadcrumb-page {
  color: #4f8ff7;
  font-weight: 500;
}

.breadcrumb-separator {
  display: flex;
  align-items: center;
  color: #9ca3af;
}
.breadcrumb-separator svg {
  width: 0.875rem;
  height: 0.875rem;
}

.wallet-crypto-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.wallet-crypto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .wallet-crypto-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.wallet-crypto-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.wallet-crypto-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.wallet-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.wallet-card-sticky {
  position: sticky;
  top: 1.5rem;
}

.wallet-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .wallet-card-header {
    padding: 1rem;
  }
}

.wallet-card-header-green .wallet-card-title {
  color: #16a34a;
}

.wallet-card-header-red .wallet-card-title {
  color: #dc2626;
}

.wallet-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wallet-card-title-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #4f8ff7;
}

.wallet-card-content {
  padding: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .wallet-card-content {
    padding: 1rem;
  }
}

.wallet-card-content-top {
  padding-top: 1.5rem;
}

.wallet-card-content-spacing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.wallet-card-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.wallet-address-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.wallet-address-box {
  padding: 1rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .wallet-address-box {
    padding: 0.75rem;
  }
}

.wallet-address-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wallet-address-display {
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-size: 0.8125rem;
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: break-word;
  color: #111827;
  max-width: 100%;
}
@media (max-width: 640px) {
  .wallet-address-display {
    font-size: 0.75rem;
  }
}

.wallet-btn-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.wallet-btn-copy:hover {
  background-color: #f3f4f6;
  color: #111827;
}
.wallet-btn-copy:active {
  transform: scale(0.95);
}
.wallet-btn-copy.copying {
  animation: copyPulse 0.4s ease-in-out;
}
.wallet-btn-copy svg {
  width: 1rem;
  height: 1rem;
}

.wallet-copy-text {
  font-weight: 500;
}

.wallet-btn-pgp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: #16a34a;
  border: none;
  border-radius: 0.375rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.wallet-btn-pgp:hover {
  background-color: #15803d;
}
.wallet-btn-pgp svg {
  width: 1rem;
  height: 1rem;
}

.wallet-btn-generate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #4f8ff7;
  border: none;
  border-radius: 0.375rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.wallet-btn-generate:hover {
  background-color: #3b7ce6;
}

.wallet-table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 640px) {
  .wallet-table-container {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.wallet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.wallet-table-header tr {
  border-bottom: 1px solid #e5e7eb;
}

.wallet-table-head {
  padding: 0.5rem;
  text-align: left;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
}

.wallet-table-body tr:last-child {
  border-bottom: none;
}

.wallet-table-row {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s ease;
}
.wallet-table-row:hover {
  background-color: #f9fafb;
}

.wallet-table-cell {
  padding: 0.5rem;
  vertical-align: middle;
  white-space: nowrap;
  color: #111827;
}

.wallet-table-cell-mono {
  font-family: monospace;
  font-size: 0.75rem;
}

.wallet-table-cell-date {
  font-size: 0.875rem;
  color: #6b7280;
}

.wallet-table-cell-empty {
  text-align: center;
  padding: 2rem 0.5rem;
  color: #9ca3af;
}

.wallet-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.wallet-status-badge svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.wallet-status-badge-completed {
  color: #16a34a;
}
.wallet-status-badge-completed svg {
  stroke: #16a34a;
}

.wallet-status-badge-pending {
  color: #eab308;
}
.wallet-status-badge-pending svg {
  stroke: #eab308;
}

.wallet-status-badge-failed {
  color: #dc2626;
}
.wallet-status-badge-failed svg {
  stroke: #dc2626;
}

.wallet-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.75rem 1rem;
  border: 1px solid;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.wallet-alert svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
}

.wallet-alert-warning {
  background-color: #fef3c7;
  border-color: #fde68a;
  color: #92400e;
}
.wallet-alert-warning svg {
  stroke: #d97706;
}

.wallet-alert-danger {
  background-color: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}
.wallet-alert-danger svg {
  stroke: #dc2626;
}

.wallet-alert-description {
  line-height: 1.5;
}

.wallet-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wallet-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wallet-form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.wallet-form-hint {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.wallet-form-input {
  width: 100%;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: #111827;
  transition: all 0.2s ease;
}
.wallet-form-input::placeholder {
  color: #9ca3af;
}
.wallet-form-input:focus {
  outline: none;
  border-color: #4f8ff7;
  box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
}

.wallet-captcha-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wallet-captcha-image {
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
}
.wallet-captcha-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wallet-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  background-color: #4f8ff7;
  border: none;
  border-radius: 0.375rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.wallet-btn-submit:hover {
  background-color: #3b7ce6;
}
.wallet-btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wallet-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.wallet-qr-image {
  width: 12rem;
  height: 12rem;
  background-color: #ffffff;
  padding: 0.4rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}
.wallet-qr-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wallet-qr-hint {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
}

.wallet-qr-placeholder {
  padding: 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .wallet-crypto-page {
    padding: 1rem 0;
  }
  .wallet-crypto-container {
    padding: 0 0.75rem;
  }
  .wallet-crypto-title {
    font-size: 1.25rem;
  }
  .wallet-card-header,
  .wallet-card-content {
    padding: 1rem;
  }
  .wallet-table-container {
    overflow-x: scroll;
  }
  .wallet-table {
    min-width: 600px;
  }
  .wallet-captcha-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*# sourceMappingURL=main.css.map */
