/* [project]/src/styles/base/variables.css [app-client] (css) */
:root {
  --bg: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary: #1a1a25;
  --text: #e4e4e7;
  --text-muted: #a1a1aa;
  --primary: #5865f2;
  --primary-hover: #4752c4;
  --primary-light: #7289da;
  --accent: #8b5cf6;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --border: #27272a;
  --border-hover: #3f3f46;
  --card: #16161d;
  --card-hover: #1e1e28;
  --radius: 12px;
  --radius-sm: 8px;
}

/* [project]/src/styles/base/reset.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* [project]/src/styles/base/scrollbar.css [app-client] (css) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 4px;
}

::selection {
  background-color: var(--primary);
  color: #fff;
}

/* [project]/src/styles/base/utilities.css [app-client] (css) */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: .25rem;
}

.gap-2 {
  gap: .5rem;
}

.gap-3 {
  gap: .75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.grid {
  display: grid;
}

.text-center {
  text-align: center;
}

/* [project]/src/styles/base/typography.css [app-client] (css) */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.text-muted {
  color: var(--text-muted);
}

.text-sm {
  font-size: .875rem;
}

.text-xs {
  font-size: .75rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* [project]/src/styles/base/animations.css [app-client] (css) */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-in {
  animation: .3s ease-out fadeIn;
}

.animate-slide-up {
  animation: .3s ease-out slideUp;
}

.animate-spin {
  animation: 1s linear infinite spin;
}

/* [project]/src/styles/base/index.css [app-client] (css) */


/* [project]/src/styles/components/buttons.css [app-client] (css) */
.btn {
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  display: inline-flex;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover:not(:disabled) {
  background: var(--primary-hover);
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--card-hover);
  border-color: var(--border-hover);
}

.btn-ghost {
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: none;
}

.btn-ghost:hover:not(:disabled) {
  background: var(--bg-tertiary);
  color: var(--text);
  border-color: var(--border-hover);
}

.btn-success {
  background: var(--success);
  color: #fff;
}

.btn-danger {
  background: var(--error);
  color: #fff !important;
}

.btn-danger:hover:not(:disabled) {
  background: #dc2626;
  box-shadow: 0 4px 12px #ef44444d;
}

.btn-sm {
  padding: .375rem .75rem;
  font-size: .8125rem;
}

.btn-lg {
  padding: .75rem 1.5rem;
  font-size: 1rem;
}

.btn-icon {
  padding: .5rem;
}

.btn-spinner {
  border: 2px solid;
  border-top-color: #0000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  margin-right: .5rem;
  animation: .8s linear infinite spin;
  display: inline-block;
}

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

/* [project]/src/styles/components/cards.css [app-client] (css) */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-hover {
  transition: all .2s;
}

.card-hover:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
}

/* [project]/src/styles/components/inputs.css [app-client] (css) */
.input {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 100%;
  color: var(--text);
  padding: .625rem 1rem;
  font-size: .875rem;
  transition: border-color .2s;
}

.input::placeholder {
  color: var(--text-muted);
}

.input:focus {
  border-color: var(--primary);
  outline: none;
}

.input-lg {
  border-radius: var(--radius);
  padding: 1rem;
  font-size: 1rem;
}

textarea.input {
  resize: vertical;
  min-height: 100px;
}

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

/* [project]/src/styles/components/badges.css [app-client] (css) */
.badge {
  border-radius: 9999px;
  align-items: center;
  gap: .25rem;
  padding: .125rem .625rem;
  font-size: .75rem;
  font-weight: 500;
  display: inline-flex;
}

.badge-default {
  background: var(--bg-tertiary);
  color: var(--text-muted);
}

.badge-primary {
  color: var(--primary-light);
  background: #5865f233;
}

.badge-success {
  color: var(--success);
  background: #22c55e33;
}

.badge-warning {
  color: var(--warning);
  background: #f59e0b33;
}

.badge-error, .badge-danger {
  color: var(--error);
  background: #ef444433;
}

.badge-premium {
  color: #fff;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.badge-close {
  opacity: .7;
  margin-left: .5rem;
  transition: opacity .2s;
}

.badge-close:hover {
  opacity: 1;
}

/* [project]/src/styles/components/avatar.css [app-client] (css) */
.avatar {
  background: var(--bg-tertiary);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.avatar-xs {
  width: 24px;
  height: 24px;
  font-size: .75rem;
}

.avatar-sm {
  width: 32px;
  height: 32px;
}

.avatar-md {
  width: 40px;
  height: 40px;
}

.avatar-lg {
  width: 48px;
  height: 48px;
}

.avatar-xl {
  width: 64px;
  height: 64px;
}

.avatar-2xl {
  width: 96px;
  height: 96px;
}

.avatar-square {
  border-radius: var(--radius);
}

/* [project]/src/styles/components/dropdown.css [app-client] (css) */
.dropdown {
  position: relative;
}

.dropdown-menu {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  z-index: 50;
  min-width: 180px;
  margin-top: .5rem;
  transition: all .2s;
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(-8px);
  box-shadow: 0 10px 40px #0000004d;
}

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

.dropdown-item {
  width: 100%;
  color: var(--text-muted);
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  transition: all .15s;
  display: flex;
}

.dropdown-item:hover {
  background: var(--bg-tertiary);
  color: var(--text);
}

.dropdown-divider {
  background: var(--border);
  height: 1px;
  margin: .5rem 0;
}

.dropdown-section-title {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .5rem 1rem;
  font-size: .75rem;
  font-weight: 600;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-item {
  justify-content: space-between;
}

.dropdown-arrow {
  color: var(--text-muted);
  margin-left: auto;
  font-size: 1.25rem;
}

.dropdown-submenu-content {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  z-index: 51;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #1a1d29;
  min-width: 160px;
  margin-left: .5rem;
  transition: all .2s;
  position: absolute;
  top: 0;
  left: 100%;
  transform: translateX(-8px);
  box-shadow: 0 10px 40px #00000080;
}

.dropdown-submenu:hover .dropdown-submenu-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .dropdown-submenu-content {
    border-left: none;
    border-right: none;
    border-radius: 0;
    margin: 0;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    transform: translateY(-100%);
  }

  .dropdown-submenu:hover .dropdown-submenu-content {
    transform: translateY(0);
  }
}

/* [project]/src/styles/components/spinner.css [app-client] (css) */
.spinner {
  border: 2px solid;
  border-top-color: #0000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: .8s linear infinite spin;
  display: inline-block;
}

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

/* [project]/src/styles/components/error-modal.css [app-client] (css) */
.error-modal {
  text-align: center;
  max-width: 420px;
  padding: 2rem;
}

.error-modal-icon {
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: .5s ease-out errorPulse;
  display: flex;
}

@keyframes errorPulse {
  0% {
    opacity: 0;
    transform: scale(.8);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.error-modal-title {
  color: #fff;
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.error-modal-message {
  color: #9ca3af;
  margin: 0 0 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.error-modal-button {
  color: #fff;
  cursor: pointer;
  background: #ef4444;
  border: none;
  border-radius: 8px;
  width: 100%;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all .2s;
}

.error-modal-button:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

.error-modal-button:active {
  transform: translateY(0);
}

/* [project]/src/styles/components/empty-state.css [app-client] (css) */
.empty-state {
  text-align: center;
  padding: 5rem 1rem;
}

.empty-state-icon {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
}

.empty-state-icon svg {
  width: 40px;
  height: 40px;
  color: var(--text-muted);
}

.empty-state h2 {
  margin-bottom: .5rem;
  font-size: 1.5rem;
}

.empty-state p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* [project]/src/styles/components/pagination.css [app-client] (css) */
.pagination {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
  display: flex;
}

.pagination-pages {
  align-items: center;
  gap: .25rem;
  display: flex;
}

.pagination-page {
  border-radius: var(--radius-sm);
  min-width: 36px;
  height: 36px;
  color: var(--text);
  background: none;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  padding: 0 .5rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.pagination-page:hover:not(.active) {
  background: var(--card-hover);
  border-color: var(--border);
}

.pagination-page.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pagination-dots {
  color: var(--text-muted);
  padding: 0 .25rem;
}

.pagination-info {
  color: var(--text-muted);
  padding: .5rem 1rem;
}

/* [project]/src/styles/components/modal/base.css [app-client] (css) */
.modal-overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1000;
  background: #000000bf;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  animation: .2s ease-out fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal-content {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 2rem;
  animation: .3s ease-out slideUp;
  position: relative;
  box-shadow: 0 20px 60px #00000080;
}

.modal-close {
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: .5rem;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.modal-close:hover {
  background: var(--bg-tertiary);
  color: var(--text);
}

.modal-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
  display: flex;
}

.modal-header h2 {
  color: var(--text);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-body {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.modal-actions {
  justify-content: flex-end;
  gap: .75rem;
  display: flex;
}

.modal-actions button {
  flex: 1;
}

/* [project]/src/styles/components/modal/icons.css [app-client] (css) */
.modal-icon-danger, .modal-icon-success, .modal-icon-warning {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
}

.modal-icon-danger {
  color: var(--error);
  background: #ef44441a;
}

.modal-icon-success {
  color: var(--success);
  background: #22c55e1a;
}

.modal-icon-warning {
  color: var(--warning);
  background: #f59e0b1a;
}

/* [project]/src/styles/components/modal/content.css [app-client] (css) */
.modal-title {
  color: var(--text);
  text-align: center;
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-description {
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 1.5rem;
  font-size: .9375rem;
  line-height: 1.6;
}

.modal-warning {
  color: var(--error);
  border-radius: var(--radius-sm);
  text-align: center;
  background: #ef44441a;
  border: 1px solid #ef444433;
  margin: 0 0 1.5rem;
  padding: .75rem;
  font-size: .875rem;
  font-weight: 500;
}

.delete-server-info {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.delete-server-info strong {
  color: var(--text);
  margin-bottom: .5rem;
  font-size: 1.125rem;
  display: block;
}

.delete-server-meta {
  color: var(--text-muted);
  font-size: .875rem;
}

.ban-server-info {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.ban-server-info strong {
  color: var(--text);
  margin-bottom: .5rem;
  font-size: 1.125rem;
  display: block;
}

.ban-server-meta {
  color: var(--text-muted);
  font-size: .875rem;
}

.ban-reason-display {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.ban-reason-display strong {
  color: var(--text);
  margin-bottom: .5rem;
  font-size: .875rem;
  display: block;
}

.ban-reason-display p {
  color: var(--text-muted);
  margin: 0;
  font-size: .875rem;
  line-height: 1.5;
}

.banner-preview {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  width: 100%;
  max-height: 150px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.banner-preview img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.report-target-preview {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.report-target-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
  font-size: .75rem;
  font-weight: 600;
}

.report-target-content {
  color: var(--text);
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--warning);
  padding: .75rem;
  font-size: .875rem;
  line-height: 1.5;
}

/* [project]/src/styles/components/modal/share.css [app-client] (css) */
.share-url-box {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  display: flex;
}

.share-url-input {
  color: var(--text);
  background: none;
  border: none;
  outline: none;
  flex: 1;
  padding: .25rem;
  font-family: Courier New, monospace;
  font-size: .875rem;
}

.share-url-input:focus {
  outline: none;
}

.share-social {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.share-social-title {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0;
  font-size: .875rem;
  font-weight: 600;
}

.share-social-buttons {
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  display: grid;
}

.share-social-btn {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-tertiary);
  color: var(--text);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.share-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #0000004d;
}

.share-social-btn.twitter:hover {
  color: #fff;
  background: #1da1f2;
  border-color: #1da1f2;
}

.share-social-btn.vk:hover {
  color: #fff;
  background: #07f;
  border-color: #07f;
}

.share-social-btn.telegram:hover {
  color: #fff;
  background: #08c;
  border-color: #08c;
}

.share-social-btn.facebook:hover {
  color: #fff;
  background: #1877f2;
  border-color: #1877f2;
}

.share-social-btn svg {
  flex-shrink: 0;
}

/* [project]/src/styles/components/modal/animations.css [app-client] (css) */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* [project]/src/styles/components/modal/responsive.css [app-client] (css) */
@media (max-width: 640px) {
  .modal-overlay {
    padding: .5rem;
  }

  .modal-content {
    max-width: 100%;
    padding: 1.5rem;
  }

  .modal-header h2, .modal-title {
    font-size: 1.25rem;
  }

  .modal-description {
    font-size: .875rem;
  }

  .modal-icon-danger, .modal-icon-success, .modal-icon-warning {
    width: 64px;
    height: 64px;
  }

  .modal-icon-danger svg, .modal-icon-success svg, .modal-icon-warning svg {
    width: 32px;
    height: 32px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions button {
    width: 100%;
  }

  .banner-preview {
    max-height: 120px;
  }

  .share-url-box {
    flex-direction: column;
    align-items: stretch;
  }

  .share-url-input {
    font-size: .8125rem;
  }

  .share-social-buttons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 1.25rem;
  }

  .modal-title {
    font-size: 1.125rem;
  }
}

/* [project]/src/styles/components/modal/index.css [app-client] (css) */


/* [project]/src/styles/components/notifications/bell.css [app-client] (css) */
.notification-bell {
  position: relative;
}

.notification-bell-button {
  width: 40px;
  height: 40px;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
  position: relative;
}

.notification-bell-button:hover {
  background: var(--bg-secondary);
}

.notification-badge {
  background: var(--error);
  color: #fff;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: .6875rem;
  font-weight: 600;
  line-height: 1;
  display: flex;
  position: absolute;
  top: 6px;
  right: 6px;
}

/* [project]/src/styles/components/notifications/dropdown.css [app-client] (css) */
.notification-dropdown {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #1a1d29;
  flex-direction: column;
  width: 380px;
  max-height: 500px;
  display: flex;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  box-shadow: 0 8px 24px #00000080;
}

.notification-header {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.notification-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.mark-all-read-btn {
  width: 32px;
  height: 32px;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.mark-all-read-btn:hover:not(:disabled) {
  background: var(--bg-secondary);
  color: var(--success);
}

.mark-all-read-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.notification-list {
  max-height: 420px;
  overflow-y: auto;
}

.notification-empty {
  color: var(--text-muted);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  display: flex;
}

.notification-empty svg {
  opacity: .5;
  margin-bottom: 1rem;
}

/* [project]/src/styles/components/notifications/item.css [app-client] (css) */
.notification-item {
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 1rem;
  transition: background .2s;
  display: flex;
  position: relative;
}

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

.notification-item:hover {
  background: #ffffff0d;
}

.notification-item.unread {
  background: #5865f21a;
}

.notification-item.unread:before {
  content: "";
  background: var(--primary);
  width: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.notification-content {
  min-width: 0;
  color: inherit;
  flex: 1;
  text-decoration: none;
}

.notification-text strong {
  color: var(--text);
  margin-bottom: .25rem;
  font-size: .875rem;
  font-weight: 600;
  display: block;
}

.notification-text p {
  color: var(--text-muted);
  margin: 0 0 .25rem;
  font-size: .8125rem;
  line-height: 1.4;
}

.notification-time {
  color: var(--text-muted);
  font-size: .75rem;
}

.notification-delete {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  cursor: pointer;
  opacity: 0;
  background: none;
  border: none;
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.notification-item:hover .notification-delete {
  opacity: 1;
}

.notification-delete:hover {
  color: var(--error);
  background: #ef44441a;
}

/* [project]/src/styles/components/notifications/responsive.css [app-client] (css) */
@media (max-width: 768px) {
  .notification-dropdown {
    border-left: none;
    border-right: none;
    border-radius: 0;
    width: 100%;
    max-height: calc(100vh - 60px);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
  }

  .notification-delete {
    opacity: 1;
  }
}

/* [project]/src/styles/components/notifications/index.css [app-client] (css) */


/* [project]/src/styles/components/filters.css [app-client] (css) */
.server-filters {
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin: 2rem 0;
  overflow: hidden;
}

.filters-header {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  display: flex;
}

.filters-toggle {
  color: var(--text);
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: background .2s;
  display: flex;
  position: relative;
}

.filters-toggle:hover {
  background: var(--bg-secondary);
}

.filters-badge {
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: .75rem;
  font-weight: 600;
  display: flex;
}

.filters-clear {
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: none;
  align-items: center;
  gap: .375rem;
  padding: .5rem .75rem;
  font-size: .875rem;
  transition: all .2s;
  display: flex;
}

.filters-clear:hover {
  background: var(--bg-secondary);
  border-color: var(--error);
  color: var(--error);
}

.filters-content {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
  display: grid;
}

.filter-group {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.filter-label {
  color: var(--text);
  font-size: .875rem;
  font-weight: 500;
}

.filter-select {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  padding: .625rem .875rem;
  font-size: .875rem;
  transition: all .2s;
}

.filter-select:hover {
  border-color: var(--primary);
}

.filter-select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px #5865f21a;
}

.filter-checkbox {
  justify-content: center;
}

.filter-checkbox-label {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.filter-checkbox-label input[type="checkbox"] {
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.filter-checkbox-label span {
  color: var(--text);
  font-size: .875rem;
}

@media (max-width: 768px) {
  .filters-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .filters-header {
    padding: .875rem 1rem;
  }
}

/* [project]/src/styles/components/index.css [app-client] (css) */


/* [project]/src/styles/layout.css [app-client] (css) */
.header {
  z-index: 100;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  background: #16161de6;
  position: sticky;
  top: 0;
}

.header-inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
}

.logo {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.nav-link {
  color: var(--text-muted);
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link-button {
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: .375rem;
  font-family: inherit;
  font-size: .875rem;
  display: flex;
}

.nav-link-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.header-actions {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.mobile-menu-btn {
  color: var(--text);
  padding: .5rem;
  display: none;
}

.mobile-nav {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  display: none;
}

.mobile-nav a, .mobile-nav-button {
  width: 100%;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  display: flex;
}

.mobile-nav a:hover, .mobile-nav-button:hover {
  background: var(--bg-tertiary);
  color: var(--text);
}

.mobile-nav-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn, .mobile-nav.open {
    display: block;
  }

  .hide-mobile {
    display: none;
  }
}

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 1rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  display: grid;
}

.footer-brand {
  grid-column: span 1;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: .5rem;
  font-size: .875rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: .875rem;
  font-weight: 600;
}

.footer-section ul {
  flex-direction: column;
  gap: .5rem;
  list-style: none;
  display: flex;
}

.footer-section a {
  color: var(--text-muted);
  font-size: .875rem;
  transition: color .2s;
}

.footer-section a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  margin-top: 2rem;
  padding-top: 2rem;
  font-size: .875rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

/* [project]/src/styles/pages/sections.css [app-client] (css) */
.section {
  padding: 3rem 1rem;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  display: flex;
}

.section-title {
  align-items: center;
  gap: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
}

.section-title svg {
  width: 24px;
  height: 24px;
}

.section-subtitle {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

/* [project]/src/styles/pages/hero.css [app-client] (css) */
.hero {
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  background: linear-gradient(#5865f21a 0%, #0000 100%);
  position: absolute;
  inset: 0;
}

.hero-glow {
  pointer-events: none;
  background: radial-gradient(#5865f233 0%, #0000 70%);
  width: 800px;
  height: 400px;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.25rem;
}

.hero-search {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.hero-search svg {
  color: var(--text-muted);
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.hero-search input {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  color: var(--text);
  padding: 1rem 1rem 1rem 3rem;
  font-size: 1rem;
}

.hero-search input::placeholder {
  color: var(--text-muted);
}

.hero-search input:focus {
  border-color: var(--primary);
  outline: none;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* [project]/src/styles/pages/server/grid.css [app-client] (css) */
.server-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 1.5rem;
  display: grid;
}

@media (max-width: 1200px) {
  .server-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .server-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .server-grid {
    grid-template-columns: 1fr;
  }
}

/* [project]/src/styles/pages/server/card/base.css [app-client] (css) */
.server-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-direction: column;
  height: 100%;
  max-height: 420px;
  transition: all .2s;
  display: flex;
  overflow: hidden;
}

.server-card:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
  transform: translateY(-2px);
}

/* [project]/src/styles/pages/server/card/banner.css [app-client] (css) */
.server-card-banner {
  background: linear-gradient(135deg, #5865f233 0%, #8b5cf633 100%);
  height: 96px;
  position: relative;
}

.server-card-banner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.server-card-premium {
  position: absolute;
  top: .5rem;
  right: .5rem;
}

/* [project]/src/styles/pages/server/card/content.css [app-client] (css) */
.server-card-content {
  flex-direction: column;
  flex: 1;
  padding: 1rem;
  display: flex;
}

.server-card-header {
  z-index: 5;
  gap: .75rem;
  margin-top: -2.5rem;
  margin-bottom: .75rem;
  display: flex;
  position: relative;
}

.server-card-avatar {
  border-radius: var(--radius);
  background: var(--bg-tertiary);
  border: 4px solid var(--card);
  width: 64px;
  height: 64px;
  color: var(--text-muted);
  z-index: 10;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  position: relative;
  overflow: hidden;
}

.server-card-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.server-card-info {
  min-width: 0;
  padding-top: 2rem;
}

.server-card-name {
  align-items: center;
  gap: .375rem;
  font-weight: 600;
  display: flex;
}

.server-card-name span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.server-card-name svg {
  color: var(--primary);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.server-card-category {
  color: var(--text-muted);
  font-size: .875rem;
}

.server-card-desc {
  color: var(--text-muted);
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 2.5rem;
  max-height: 2.5rem;
  margin-bottom: 1rem;
  font-size: .875rem;
  display: -webkit-box;
  overflow: hidden;
}

.server-card-tags {
  flex-wrap: wrap;
  gap: .375rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  display: flex;
  overflow: hidden;
}

.server-card-stats {
  color: var(--text-muted);
  gap: 1rem;
  font-size: .875rem;
  display: flex;
}

.server-card-stat {
  align-items: center;
  gap: .25rem;
  display: flex;
}

.server-card-stat svg {
  width: 16px;
  height: 16px;
}

.server-card-stat.warning svg {
  color: var(--warning);
}

.server-card-stat.primary, .server-card-stat.primary svg {
  color: var(--primary);
}

/* [project]/src/styles/pages/server/card/badges.css [app-client] (css) */
.toxicity-badge {
  text-transform: uppercase;
  letter-spacing: .025em;
  border-radius: 999px;
  flex-shrink: 0;
  align-items: center;
  gap: .25rem;
  padding: .125rem .5rem;
  font-size: .6875rem;
  font-weight: 600;
  display: inline-flex;
}

.toxicity-semi {
  color: #f59e0b;
  background: linear-gradient(135deg, #fb923c33, #f59e0b26);
  border: 1px solid #f59e0b4d;
}

.toxicity-semi svg {
  color: #f59e0b;
  width: 12px;
  height: 12px;
}

.toxicity-toxic {
  color: #ef4444;
  background: linear-gradient(135deg, #ef444433, #dc262626);
  border: 1px solid #ef44444d;
}

.toxicity-toxic svg {
  color: #ef4444;
  width: 12px;
  height: 12px;
}

/* [project]/src/styles/pages/server/card/responsive.css [app-client] (css) */
@media (max-width: 600px) {
  .server-card {
    max-height: none;
  }

  .server-card-banner {
    height: 80px;
  }

  .server-card-content {
    padding: .875rem;
  }

  .server-card-avatar {
    border-width: 3px;
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }

  .server-card-header {
    margin-top: -2rem;
    margin-bottom: .5rem;
  }

  .server-card-name {
    font-size: .9375rem;
  }

  .server-card-desc {
    min-height: 2.25rem;
    max-height: 2.25rem;
    font-size: .8125rem;
  }

  .server-card-tags {
    gap: .25rem;
    height: 3rem;
  }

  .server-card-stats {
    gap: .75rem;
    font-size: .8125rem;
  }
}

/* [project]/src/styles/pages/server/card/index.css [app-client] (css) */


/* [project]/src/styles/pages/server/list.css [app-client] (css) */
.servers-page-header {
  margin-bottom: 2rem;
}

.servers-page-header h1 {
  margin-bottom: .5rem;
  font-size: 1.875rem;
  font-weight: 700;
}

.servers-count {
  color: var(--text-muted);
}

/* [project]/src/styles/pages/server/detail/layout.css [app-client] (css) */
.server-detail-page {
  min-height: 100vh;
  padding-top: 120px;
  position: relative;
  overflow-x: hidden;
}

.server-content {
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  overflow-x: hidden;
}

.server-detail-grid {
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  padding-bottom: 3rem;
  display: grid;
  overflow-x: hidden;
}

.server-main {
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
  display: flex;
  overflow-x: hidden;
}

.server-sidebar {
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  display: flex;
  overflow-x: hidden;
}

.server-section {
  min-width: 0;
  padding: 1.5rem;
  overflow-x: hidden;
}

/* [project]/src/styles/pages/server/detail/banner.css [app-client] (css) */
.server-banner {
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(135deg, #5865f24d, #8b5cf64d);
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.server-banner img {
  object-fit: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.server-banner-overlay {
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: -1;
  position: absolute;
  inset: 0;
}

/* [project]/src/styles/pages/server/detail/header.css [app-client] (css) */
.server-header {
  gap: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
}

.server-avatar-large {
  background: var(--bg-tertiary);
  border: 4px solid var(--bg);
  width: 120px;
  height: 120px;
  color: var(--text-muted);
  z-index: 100;
  border-radius: 24px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  position: relative;
  overflow: hidden;
}

.server-avatar-large img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.server-header-info {
  flex: 1;
  padding-top: 40px;
}

.server-title-row {
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  display: flex;
}

.server-title {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 1.75rem;
  font-weight: 700;
}

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

.server-meta {
  color: var(--text-muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.server-meta-item {
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  display: flex;
}

.server-meta-item.warning {
  color: var(--warning);
}

.server-meta-text {
  color: var(--text-muted);
  font-size: .875rem;
}

.server-actions {
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
  display: flex;
}

.bump-button-container {
  position: relative;
}

.bump-error {
  color: var(--error);
  white-space: nowrap;
  z-index: 10;
  background: #ef44441a;
  border: 1px solid #ef44444d;
  border-radius: 6px;
  margin-top: .5rem;
  padding: .5rem .75rem;
  font-size: .8125rem;
  position: absolute;
  top: 100%;
  left: 0;
}

/* [project]/src/styles/pages/server/detail/warnings.css [app-client] (css) */
.server-banned-warning {
  border-radius: var(--radius-md);
  color: var(--error);
  background: #ef44441a;
  border: 1px solid #ef44444d;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  display: flex;
}

.server-banned-warning svg {
  flex-shrink: 0;
  margin-top: .125rem;
}

.server-banned-warning strong {
  margin-bottom: .25rem;
  font-size: .9375rem;
  display: block;
}

.server-banned-warning p {
  color: var(--text-muted);
  margin: 0;
  font-size: .875rem;
}

.server-mod-actions {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  padding: 1.25rem;
}

.mod-actions-header {
  margin-bottom: 1rem;
}

.mod-actions-header h3 {
  color: var(--text);
  margin: 0;
  font-size: .9375rem;
  font-weight: 600;
}

.mod-actions-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  display: grid;
}

.mod-actions-grid .btn {
  justify-content: flex-start;
  padding: .5rem .75rem;
  font-size: .8125rem;
}

.mod-actions-grid .text-danger {
  color: var(--error);
}

.mod-actions-grid .text-success {
  color: var(--success);
}

.mod-actions-grid .text-warning {
  color: var(--warning);
}

/* [project]/src/styles/pages/server/detail/content.css [app-client] (css) */
.server-description {
  color: var(--text-muted);
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.7;
}

.social-links {
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
  display: flex;
}

.social-link {
  background: var(--bg-tertiary);
  width: 36px;
  height: 36px;
  color: var(--text);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.social-link:hover {
  background: var(--social-color);
  color: #fff;
  transform: translateY(-2px);
}

/* [project]/src/styles/pages/server/detail/responsive.css [app-client] (css) */
@media (max-width: 900px) {
  .server-detail-grid {
    grid-template-columns: 1fr;
    overflow-x: hidden;
  }

  .server-sidebar {
    order: -1;
  }

  .server-content {
    overflow-x: hidden;
  }
}

@media (max-width: 640px) {
  .server-detail-page {
    max-width: 100vw;
    padding-top: 80px;
    overflow-x: hidden;
  }

  .server-content {
    max-width: 100%;
    padding: 0 .75rem;
    overflow-x: hidden;
  }

  .server-banner {
    height: 150px;
  }

  .server-header {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .server-header-info {
    width: 100%;
    padding-top: 0;
    overflow-x: hidden;
  }

  .server-title-row, .server-meta, .server-actions {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  .server-title {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  .server-avatar-large {
    width: 100px;
    height: 100px;
  }

  .server-banned-warning {
    padding: .875rem 1rem;
    font-size: .875rem;
  }

  .mod-actions-grid {
    grid-template-columns: 1fr;
  }

  .server-mod-actions {
    padding: 1rem;
  }

  .server-section {
    padding: 1rem;
    overflow-x: hidden;
  }

  .server-description {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .server-avatar-large {
    width: 80px;
    height: 80px;
  }

  .server-title-row h1 {
    font-size: 1.5rem;
  }

  .server-actions {
    width: 100%;
  }

  .server-actions button, .server-actions a {
    flex: 1;
  }
}

/* [project]/src/styles/pages/server/detail/index.css [app-client] (css) */


/* [project]/src/styles/pages/server/stats.css [app-client] (css) */
.stats-grid-small {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  display: grid;
}

.stat-item {
  flex-direction: column;
  display: flex;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-text {
  color: var(--text-muted);
  font-size: .75rem;
}

/* [project]/src/styles/pages/server/owner.css [app-client] (css) */
.owner-info {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.owner-avatar {
  background: var(--bg-tertiary);
  width: 40px;
  height: 40px;
  color: var(--text-muted);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  display: flex;
  overflow: hidden;
}

.owner-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.owner-name {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 500;
}

.date-info {
  color: var(--text-muted);
  word-wrap: break-word;
  overflow-wrap: break-word;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  display: flex;
}

.date-info + .date-info {
  margin-top: .75rem;
}

/* [project]/src/styles/pages/server/index.css [app-client] (css) */


/* [project]/src/styles/pages/categories.css [app-client] (css) */
.categories-section {
  padding: 3rem 1rem;
}

.categories-grid {
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
}

.category-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: center;
  gap: .5rem;
  padding: .625rem 1rem;
  font-size: .875rem;
  transition: all .2s;
  display: flex;
}

.category-card:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
}

.category-card-icon {
  font-size: 1.125rem;
}

.category-card-link {
  color: var(--primary);
}

.category-card-link:hover {
  border-color: var(--primary);
}

.categories-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.categories-page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.categories-list {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.category-item {
  cursor: pointer;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.category-item:before {
  content: "";
  background: var(--primary);
  width: 4px;
  height: 100%;
  transition: transform .3s;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleY(0);
}

.category-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #00000026;
}

.category-item:hover:before {
  transform: scaleY(1);
}

.category-item-icon {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  font-size: 3rem;
  transition: all .3s;
  display: flex;
}

.category-item:hover .category-item-icon {
  background: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  transform: scale(1.1)rotate(5deg);
}

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

.category-item-name {
  color: var(--text);
  margin-bottom: .375rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: color .3s;
}

.category-item:hover .category-item-name {
  color: var(--primary);
}

.category-item-count {
  color: var(--text-muted);
  align-items: center;
  gap: .25rem;
  font-size: .875rem;
  display: flex;
}

.category-item-count:before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
}

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

  .category-item-icon {
    width: 64px;
    height: 64px;
    font-size: 2.5rem;
  }
}

/* [project]/src/styles/pages/reviews/layout.css [app-client] (css) */
.reviews-section {
  padding: 1.5rem;
}

.reviews-header {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.reviews-header-actions {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.reviews-sort-dropdown {
  position: relative;
}

.reviews-sort-button {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 8px;
  align-items: center;
  gap: .375rem;
  padding: .5rem;
  transition: all .2s;
  display: flex;
}

.reviews-sort-button:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.reviews-sort-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.reviews-sort-menu {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  z-index: 100;
  border-radius: 8px;
  min-width: 180px;
  animation: .2s slideDown;
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px #0000004d;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reviews-sort-option {
  width: 100%;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  font-size: .875rem;
  transition: all .2s;
  display: flex;
}

.reviews-sort-option:hover {
  background: var(--bg-hover);
}

.reviews-sort-option.active {
  color: var(--primary);
  background: #5865f21a;
}

.reviews-sort-option svg {
  flex-shrink: 0;
}

.reviews-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
}

/* [project]/src/styles/pages/reviews/form.css [app-client] (css) */
.review-form {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.rating-stars {
  gap: .25rem;
  display: flex;
}

.star-btn {
  color: var(--text-muted);
  padding: .25rem;
  transition: color .2s;
}

.star-btn:hover, .star-filled {
  color: var(--warning);
}

.star-empty {
  color: var(--text-muted);
}

.review-form-actions {
  gap: .5rem;
  display: flex;
}

.review-form-hint {
  justify-content: flex-end;
  margin-top: .5rem;
  font-size: .8125rem;
  display: flex;
}

.text-warning {
  color: var(--warning);
}

.text-muted {
  color: var(--text-muted);
}

/* [project]/src/styles/pages/reviews/list.css [app-client] (css) */
.reviews-list {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

/* [project]/src/styles/pages/reviews/item.css [app-client] (css) */
.review-item {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  gap: .75rem;
  padding: 1rem;
  display: flex;
}

.review-avatar {
  background: var(--bg-tertiary);
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: .875rem;
  font-weight: 600;
  display: flex;
  overflow: hidden;
}

.review-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.review-header {
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
  display: flex;
}

.review-actions {
  align-items: center;
  gap: .375rem;
  margin-left: auto;
  display: flex;
}

.review-action-btn {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: 1px solid #0000;
  border-radius: 4px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all .2s;
  display: inline-flex;
}

.review-report-btn:hover {
  color: #f59e0b;
  background: #f59e0b1a;
  border-color: #f59e0b4d;
}

.review-action-btn:hover {
  color: var(--error);
  background: #ef44441a;
  border-color: #ef44444d;
}

.review-delete-confirm {
  align-items: center;
  gap: .5rem;
  margin-left: auto;
  display: flex;
}

.review-delete-text {
  color: var(--text-muted);
  white-space: nowrap;
  font-size: .75rem;
}

.review-delete-btn {
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: .25rem .5rem;
  font-size: .75rem;
  font-weight: 500;
  transition: all .2s;
}

.review-delete-btn-danger {
  color: var(--error);
  background: #ef44441a;
}

.review-delete-btn-danger:hover:not(:disabled) {
  background: #ef444433;
}

.review-delete-btn-cancel {
  background: var(--bg-tertiary);
  color: var(--text);
}

.review-delete-btn-cancel:hover {
  background: var(--bg-secondary);
}

.review-delete-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.review-author {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.review-author:hover {
  color: var(--primary);
}

.review-rating {
  gap: .125rem;
  display: flex;
}

.review-date {
  color: var(--text-muted);
  font-size: .75rem;
}

.review-text {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.5;
}

/* [project]/src/styles/pages/reviews/comments.css [app-client] (css) */
.review-comments-toggle {
  background: var(--bg-tertiary);
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  border-radius: 6px;
  align-items: center;
  gap: .375rem;
  margin-top: .5rem;
  padding: .375rem .75rem;
  font-size: .8125rem;
  transition: all .2s;
  display: inline-flex;
}

.review-comments-toggle:hover {
  background: var(--bg-secondary);
  color: var(--primary);
}

.review-comments {
  border-left: 2px solid var(--border);
  margin-top: .75rem;
  padding-left: 1rem;
}

.review-comment {
  gap: .625rem;
  padding: .75rem 0;
  display: flex;
}

.review-comment:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.review-comment-avatar {
  background: var(--bg-tertiary);
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: .75rem;
  font-weight: 600;
  display: flex;
  overflow: hidden;
}

.review-comment-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.review-comment-header {
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: .375rem;
  display: flex;
}

.review-comment-author {
  color: var(--text);
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
}

.review-comment-author:hover {
  color: var(--primary);
}

.owner-badge {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .025em;
  background: #5865f21a;
  border: 1px solid #5865f24d;
  border-radius: 4px;
  align-items: center;
  gap: .25rem;
  padding: .125rem .375rem;
  font-size: .6875rem;
  font-weight: 600;
  display: inline-flex;
}

.review-comment-date {
  color: var(--text-muted);
  font-size: .75rem;
}

.review-comment-actions {
  align-items: center;
  gap: .375rem;
  margin-left: auto;
  display: flex;
}

.review-comment-report, .review-comment-delete {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: 1px solid #0000;
  border-radius: 4px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all .2s;
  display: inline-flex;
}

.review-comment-report:hover {
  color: #f59e0b;
  background: #f59e0b1a;
  border-color: #f59e0b4d;
}

.review-comment-delete:hover {
  color: var(--error);
  background: #ef44441a;
  border-color: #ef44444d;
}

.review-comment-text {
  color: var(--text-muted);
  font-size: .8125rem;
  line-height: 1.5;
}

.review-reply-btn {
  margin-top: .5rem;
}

.review-reply-form {
  background: var(--bg-tertiary);
  border-radius: 6px;
  margin-top: .75rem;
  padding: .75rem;
}

.review-reply-form .textarea {
  margin-bottom: .5rem;
  font-size: .875rem;
}

.review-reply-actions {
  gap: .5rem;
  display: flex;
}

/* [project]/src/styles/pages/reviews/responsive.css [app-client] (css) */
@media (max-width: 768px) {
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-header-actions {
    justify-content: space-between;
    width: 100%;
  }

  .reviews-sort-menu {
    left: 0;
    right: auto;
  }

  .review-item {
    padding: .75rem;
  }

  .review-avatar {
    width: 32px;
    height: 32px;
  }

  .review-comments {
    padding-left: .5rem;
  }

  .review-comment-avatar {
    width: 24px;
    height: 24px;
    font-size: .6875rem;
  }
}

/* [project]/src/styles/pages/reviews/index.css [app-client] (css) */


/* [project]/src/styles/pages/filters.css [app-client] (css) */
.filters {
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.filter-search {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.filter-search svg {
  color: var(--text-muted);
  position: absolute;
  top: 50%;
  left: .75rem;
  transform: translateY(-50%);
}

.filter-search input {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 100%;
  color: var(--text);
  padding: .625rem 1rem .625rem 2.5rem;
  font-size: .875rem;
}

.filter-search input::placeholder {
  color: var(--text-muted);
}

.filter-search input:focus {
  border-color: var(--primary);
  outline: none;
}

.filters .select {
  min-width: 150px;
}

.active-filters {
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
  display: flex;
}

@media (max-width: 600px) {
  .filters {
    flex-direction: column;
  }

  .filter-search {
    min-width: 100%;
  }

  .filters .select {
    width: 100%;
  }
}

/* [project]/src/styles/pages/forms/layout.css [app-client] (css) */
.add-server-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.add-server-header {
  text-align: center;
  margin-bottom: 2rem;
}

.page-subtitle {
  color: var(--text-muted);
  margin-top: .5rem;
}

.add-server-form {
  padding: 1.5rem;
}

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

/* [project]/src/styles/pages/forms/elements.css [app-client] (css) */
.form-group {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.form-label {
  color: var(--text);
  font-size: .875rem;
  font-weight: 500;
}

.form-hint {
  color: var(--text-muted);
  font-size: .75rem;
}

.form-error {
  border-radius: var(--radius-sm);
  color: var(--error);
  background: #ef44441a;
  border: 1px solid #ef444433;
  padding: 1rem;
  font-size: .875rem;
}

.textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  margin-top: .5rem;
}

.form-actions {
  gap: .75rem;
  margin-top: .5rem;
  display: flex;
}

.form-actions button {
  flex: 1;
}

.form-info {
  border-radius: var(--radius-sm);
  background: #5865f21a;
  border: 1px solid #5865f233;
  margin-bottom: 1rem;
  padding: 1rem;
}

.form-info p {
  color: var(--primary-light);
  margin: 0;
  font-size: .875rem;
  line-height: 1.5;
}

/* [project]/src/styles/pages/forms/tags.css [app-client] (css) */
.tags-list {
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
  display: flex;
}

.tag-badge {
  align-items: center;
  gap: .25rem;
  display: inline-flex;
  padding-right: .25rem !important;
}

.tag-remove {
  color: inherit;
  opacity: .7;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: .125rem;
  transition: opacity .2s, background .2s;
  display: flex;
}

.tag-remove:hover {
  opacity: 1;
  background: #fff3;
}

/* [project]/src/styles/pages/forms/guild-selector.css [app-client] (css) */
.guild-select-wrapper {
  gap: .5rem;
  display: flex;
}

.guild-select-wrapper .guild-select {
  flex: 1;
}

.guild-select-wrapper .refresh-btn {
  flex-shrink: 0;
}

.guilds-loading {
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  font-size: .875rem;
  display: flex;
}

.guilds-error {
  border-radius: var(--radius-sm);
  color: var(--error);
  background: #ef44441a;
  border: 1px solid #ef444433;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  font-size: .875rem;
  display: flex;
}

.selected-guild-preview {
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  align-items: center;
  gap: .75rem;
  margin-top: .75rem;
  padding: .75rem;
  display: flex;
}

.guild-icon {
  border-radius: var(--radius-sm);
  object-fit: cover;
  width: 40px;
  height: 40px;
}

.guild-icon-placeholder {
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-weight: 600;
  display: flex;
}

.spin {
  animation: 1s linear infinite spin;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

/* [project]/src/styles/pages/forms/language-selector.css [app-client] (css) */
.language-selector {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.selected-languages {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.language-tag {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  align-items: center;
  gap: .375rem;
  padding: .375rem .5rem;
  font-size: .875rem;
  display: inline-flex;
}

.language-flag {
  font-size: 1rem;
}

.language-name {
  color: var(--text);
}

.language-remove {
  color: var(--text-muted);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-left: .125rem;
  padding: .125rem;
  transition: all .15s;
  display: flex;
}

.language-remove:hover {
  color: var(--error);
  background: #ef44441a;
}

.language-select {
  width: 100%;
}

/* [project]/src/styles/pages/forms/toxicity-slider.css [app-client] (css) */
.toxicity-slider {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.toxicity-labels {
  color: var(--text-muted);
  justify-content: space-between;
  font-size: .875rem;
  display: flex;
}

.toxicity-labels span {
  transition: color .2s;
}

.toxicity-labels span.active {
  color: var(--primary);
  font-weight: 500;
}

.toxicity-range {
  background: var(--bg-tertiary);
  appearance: none;
  cursor: pointer;
  border-radius: 3px;
  width: 100%;
  height: 6px;
}

.toxicity-range::-webkit-slider-thumb {
  appearance: none;
  background: var(--primary);
  cursor: pointer;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  transition: transform .15s;
}

.toxicity-range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.toxicity-range::-moz-range-thumb {
  background: var(--primary);
  cursor: pointer;
  border: none;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}

/* [project]/src/styles/pages/forms/tag-selector.css [app-client] (css) */
.tag-selector {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.tag-selector-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .5rem;
  display: grid;
}

.tag-selector-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  text-align: center;
  border-radius: 6px;
  padding: .5rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
}

.tag-selector-item:hover:not(:disabled) {
  background: var(--bg-tertiary);
  border-color: var(--border-hover);
  color: var(--text);
  transform: translateY(-1px);
}

.tag-selector-item:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.tag-selector-item-selected {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.tag-selector-item-selected:hover:not(:disabled) {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
}

.tag-selector-selected {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}

.tag-selector-label {
  color: var(--text-muted);
  margin: 0 0 .75rem;
  font-size: .875rem;
}

@media (max-width: 640px) {
  .tag-selector-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }

  .tag-selector-item {
    padding: .4rem .6rem;
    font-size: .8125rem;
  }
}

/* [project]/src/styles/pages/forms/banner-preview.css [app-client] (css) */
.banner-preview-small {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 400px;
  margin-top: .75rem;
  overflow: hidden;
}

.banner-preview-small img {
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 120px;
  display: block;
}

/* [project]/src/styles/pages/forms/sections.css [app-client] (css) */
.form-section-divider {
  border-top: 1px solid var(--border);
  margin: 2rem 0 1.5rem;
  padding-top: 2rem;
}

.form-section-title {
  color: var(--text);
  margin: 0 0 .25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.form-section-subtitle {
  color: var(--text-muted);
  margin: 0;
  font-size: .875rem;
}

/* [project]/src/styles/pages/forms/social-links.css [app-client] (css) */
.social-links-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  display: grid;
}

/* [project]/src/styles/pages/forms/tabs.css [app-client] (css) */
.edit-tabs {
  border-bottom: 1px solid var(--border);
  background: var(--bg-tertiary);
  border-radius: var(--radius) var(--radius) 0 0;
  gap: 0;
  margin: -1.5rem -1.5rem 1.5rem;
  display: flex;
}

.edit-tab {
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 1rem;
  font-size: .9375rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
  position: relative;
}

.edit-tab:hover {
  color: var(--text);
  background: #ffffff08;
}

.edit-tab.active {
  color: var(--primary);
  background: var(--card);
}

.edit-tab.active:after {
  content: "";
  background: var(--primary);
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.edit-tab svg {
  flex-shrink: 0;
}

.tab-content {
  flex-direction: column;
  gap: 1.5rem;
  animation: .2s ease-in fadeIn;
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* [project]/src/styles/pages/forms/responsive.css [app-client] (css) */
@media (max-width: 768px) {
  .form-page {
    padding: 1.5rem 1rem;
  }

  .form-container {
    padding: 1.25rem;
  }

  .form-header h1 {
    font-size: 1.5rem;
  }

  .social-links-grid {
    grid-template-columns: 1fr;
  }

  .edit-tabs {
    margin: -1.25rem -1.25rem 1.25rem;
  }

  .edit-tab {
    padding: .875rem .5rem;
    font-size: .875rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 1rem;
  }

  .form-header h1 {
    font-size: 1.25rem;
  }

  .edit-tab span {
    display: none;
  }

  .edit-tab {
    padding: .75rem;
  }
}

/* [project]/src/styles/pages/forms/index.css [app-client] (css) */


/* [project]/src/styles/pages/admin.css [app-client] (css) */
.admin-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.admin-stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  display: grid;
}

.admin-stat-card {
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  display: flex;
}

.admin-stat-icon {
  border-radius: var(--radius-md);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.admin-stat-icon.primary {
  color: var(--primary);
  background: #5865f226;
}

.admin-stat-icon.success {
  color: var(--success);
  background: #22c55e26;
}

.admin-stat-icon.warning {
  color: var(--warning);
  background: #fbbf2426;
}

.admin-stat-icon.accent {
  color: var(--accent);
  background: #a855f726;
}

.admin-stat-info {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.admin-stat-value {
  color: var(--text);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.admin-stat-label {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1;
}

.admin-cards-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  display: grid;
}

.admin-cards-grid a {
  text-decoration: none;
}

.admin-nav-card {
  text-align: center;
  cursor: pointer;
  padding: 2rem;
  transition: all .2s;
}

.admin-nav-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #0000004d;
}

.admin-nav-icon {
  margin: 0 auto 1rem;
}

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

.admin-nav-icon.success {
  color: var(--success);
}

.admin-nav-icon.accent {
  color: var(--accent);
}

.admin-nav-title {
  color: var(--text);
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.admin-nav-desc {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .admin-page {
    padding: 1.5rem 1rem;
  }

  .admin-stats-grid, .admin-cards-grid {
    grid-template-columns: 1fr;
  }

  .admin-stat-card {
    padding: 1rem;
  }

  .admin-nav-card {
    padding: 1.5rem;
  }
}

/* [project]/src/styles/pages/admin-servers.css [app-client] (css) */
.admin-servers-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.admin-servers-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.admin-servers-header h1 {
  font-size: 1.875rem;
  font-weight: 700;
}

.admin-servers-count {
  color: var(--text-muted);
}

.admin-servers-filters {
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.admin-servers-list {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.admin-server-card {
  padding: 1rem;
}

.admin-server-content {
  align-items: center;
  gap: 1rem;
  display: flex;
}

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

.admin-server-name-row {
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
  display: flex;
}

.admin-server-name {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.admin-server-name:hover {
  color: var(--primary);
}

.admin-server-meta {
  color: var(--text-muted);
  font-size: .875rem;
}

.admin-server-stats {
  color: var(--text-muted);
  align-items: center;
  gap: 1rem;
  font-size: .875rem;
  display: none;
}

.admin-server-stat {
  text-align: center;
}

.admin-server-stat-value {
  color: var(--text);
  font-weight: 600;
}

.admin-server-actions {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.admin-action-icon {
  width: 1rem;
  height: 1rem;
}

.admin-action-featured {
  color: var(--warning);
}

.admin-action-verified {
  color: var(--success);
}

.admin-action-delete {
  color: var(--error);
}

@media (min-width: 640px) {
  .admin-server-stats {
    display: flex;
  }
}

@media (max-width: 640px) {
  .admin-servers-page {
    padding: 1.5rem 1rem;
  }

  .admin-servers-header h1 {
    font-size: 1.5rem;
  }
}

/* [project]/src/styles/pages/admin-users.css [app-client] (css) */
.admin-users-list {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.admin-user-card {
  padding: 1rem;
}

.admin-user-content {
  align-items: center;
  gap: 1rem;
  display: flex;
}

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

.admin-user-name-row {
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
  display: flex;
}

.admin-user-name {
  font-weight: 600;
}

.admin-user-discriminator, .admin-user-meta {
  color: var(--text-muted);
  font-size: .875rem;
}

.admin-user-stats {
  color: var(--text-muted);
  align-items: center;
  gap: 1rem;
  font-size: .875rem;
  display: none;
}

.admin-user-stat {
  text-align: center;
}

.admin-user-stat-value {
  color: var(--text);
  font-weight: 600;
}

.admin-user-actions {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.role-admin {
  color: var(--error);
}

.role-moderator {
  color: var(--primary);
}

.role-user {
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .admin-user-stats {
    display: flex;
  }
}

/* [project]/src/styles/admin/logs/layout.css [app-client] (css) */
.logs-content {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.logs-controls {
  padding: 1.5rem;
}

.logs-controls-header {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.logs-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem;
}

/* [project]/src/styles/admin/logs/stats.css [app-client] (css) */
.logs-stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  display: grid;
}

.logs-stat-card {
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  display: flex;
}

.logs-stat-card-wide {
  grid-column: span 2;
}

.logs-stat-icon {
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.logs-stat-icon-primary {
  color: var(--primary);
  background: #5865f21a;
}

.logs-stat-icon-success {
  color: var(--success);
  background: #22c55e1a;
}

.logs-stat-icon-accent {
  color: var(--accent);
  background: #8b5cf61a;
}

.logs-stat-info {
  flex: 1;
}

.logs-stat-value {
  color: var(--text);
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
}

.logs-stat-label {
  color: var(--text-muted);
  margin: .25rem 0 0;
  font-size: .875rem;
}

.logs-top-actions {
  flex-direction: column;
  gap: .5rem;
  margin-top: .75rem;
  display: flex;
}

.logs-top-action {
  background: var(--bg-tertiary);
  border-radius: 6px;
  align-items: center;
  gap: .75rem;
  padding: .5rem;
  display: flex;
}

.logs-top-action-rank {
  color: var(--primary);
  min-width: 24px;
  font-weight: 700;
}

.logs-top-action-name {
  color: var(--text);
  flex: 1;
  font-size: .875rem;
}

.logs-top-action-count {
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 600;
}

/* [project]/src/styles/admin/logs/filters.css [app-client] (css) */
.logs-filters {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.logs-filters-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
  display: grid;
}

.logs-filters .form-group {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.logs-filters .form-group label {
  color: var(--text);
  margin: 0;
  font-size: .8125rem;
  font-weight: 500;
}

.logs-filters .form-select, .logs-filters .form-input {
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  width: 100%;
  color: var(--text);
  border: 1px solid #ffffff0d;
  outline: none;
  padding: .625rem .875rem;
  font-size: .875rem;
  transition: all .2s;
}

.logs-filters .form-select:hover, .logs-filters .form-input:hover {
  background: var(--bg-hover);
  border-color: #ffffff1a;
}

.logs-filters .form-select:focus, .logs-filters .form-input:focus {
  border-color: var(--primary);
  background: var(--bg-tertiary);
  box-shadow: 0 0 0 3px #5865f21a;
}

.logs-filters .form-input::placeholder {
  color: var(--text-muted);
  opacity: .6;
}

.logs-filters .form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-position: right .75rem center;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

.logs-filters .form-select option {
  background: var(--bg-secondary);
  color: var(--text);
  padding: .5rem;
}

.logs-filters-actions {
  border-top: 1px solid #ffffff0d;
  gap: .75rem;
  padding-top: .5rem;
  display: flex;
}

.logs-filters-actions .btn-primary, .logs-filters-actions .btn-secondary, .btn-primary, .btn-secondary {
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.logs-filters-actions .btn-primary, .btn-primary {
  background: var(--primary);
  color: #fff;
}

.logs-filters-actions .btn-primary:hover, .btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #5865f24d;
}

.logs-filters-actions .btn-secondary, .btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.logs-filters-actions .btn-secondary:hover, .btn-secondary:hover {
  background: var(--bg-hover);
  color: var(--text);
  border-color: var(--border-hover);
}

.btn-filter {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  border-radius: 6px;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.btn-filter:hover {
  background: var(--bg-secondary);
  border-color: var(--border-hover);
}

.btn-export {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.btn-export:hover:not(:disabled) {
  background: var(--primary-hover);
}

.btn-export:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* [project]/src/styles/admin/logs/table.css [app-client] (css) */
.logs-table-container {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.logs-table-card {
  padding: 0;
  overflow: hidden;
}

.logs-table-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg-tertiary);
  padding: 1rem 1.5rem;
}

.logs-table-info {
  color: var(--text-muted);
  font-size: .875rem;
}

.logs-table {
  width: 100%;
  overflow-x: auto;
}

.logs-table table {
  border-collapse: collapse;
  table-layout: auto;
  width: 100%;
}

.logs-table thead {
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
}

.logs-table th {
  text-align: left;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  padding: .75rem 1rem;
  font-size: .8125rem;
  font-weight: 600;
}

.logs-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}

.logs-table tbody tr:hover {
  background: var(--bg-tertiary);
}

.logs-table td {
  vertical-align: top;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 300px;
  padding: 1rem;
  font-size: .875rem;
}

.log-timestamp {
  color: var(--text-muted);
  white-space: nowrap;
  font-family: Courier New, monospace;
  font-size: .8125rem;
}

.log-user-info {
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
  display: flex;
}

.log-user-name {
  color: var(--text);
  font-weight: 500;
}

.log-user-id {
  color: var(--text-muted);
  font-family: Courier New, monospace;
  font-size: .75rem;
  display: block;
}

.log-target-info {
  flex-direction: column;
  gap: .25rem;
  max-width: 100%;
  display: flex;
}

.log-target-type {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: .75rem;
}

.log-target-name {
  color: var(--text);
  word-break: break-word;
  overflow-wrap: break-word;
  font-weight: 500;
}

.log-target-id {
  color: var(--text-muted);
  word-break: break-all;
  font-family: Courier New, monospace;
  font-size: .75rem;
}

.log-details-toggle {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 4px;
  align-items: center;
  gap: .25rem;
  padding: .25rem .5rem;
  font-size: .75rem;
  transition: all .2s;
  display: flex;
}

.log-details-toggle:hover {
  background: var(--bg-secondary);
  color: var(--text);
}

.log-details-expanded {
  flex-direction: column;
  gap: .5rem;
  max-width: 100%;
  display: flex;
}

.log-details-json {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  border-radius: 4px;
  max-width: 100%;
  padding: .75rem;
  font-family: Courier New, monospace;
  font-size: .75rem;
  line-height: 1.5;
}

.log-ip-address {
  color: var(--text-muted);
  word-break: break-all;
  font-family: Courier New, monospace;
  font-size: .8125rem;
}

.log-user-agent {
  color: var(--text-muted);
  word-break: break-word;
  overflow-wrap: break-word;
  margin-top: .5rem;
  font-size: .75rem;
  line-height: 1.4;
  display: block;
}

/* [project]/src/styles/admin/logs/responsive.css [app-client] (css) */
@media (max-width: 1200px) {
  .logs-stat-card-wide {
    grid-column: span 1;
  }
}

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

  .logs-stat-card {
    padding: 1rem;
  }

  .logs-stat-icon {
    width: 40px;
    height: 40px;
  }

  .logs-stat-value {
    font-size: 1.5rem;
  }

  .logs-filters {
    padding: 1rem;
  }

  .logs-filters-grid {
    grid-template-columns: 1fr;
  }

  .logs-filters-actions {
    flex-direction: column;
  }

  .logs-filters-actions button {
    width: 100%;
  }

  .logs-controls {
    padding: 1rem;
  }

  .logs-controls-header {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-filter, .btn-export {
    justify-content: center;
    width: 100%;
  }

  .logs-table {
    font-size: .75rem;
  }

  .logs-table th, .logs-table td {
    padding: .5rem;
  }

  .logs-table td {
    max-width: 200px;
  }

  .log-entry-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .log-entry-details {
    padding: .75rem;
  }
}

@media (max-width: 480px) {
  .logs-stat-card {
    text-align: center;
    flex-direction: column;
  }

  .logs-table {
    display: block;
    overflow-x: auto;
  }

  .log-entry-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
  }
}

/* [project]/src/styles/admin/logs/index.css [app-client] (css) */


/* [project]/src/styles/admin/logs.css [app-client] (css) */


/* [project]/src/styles/pages/info.css [app-client] (css) */
.info-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.info-header {
  text-align: center;
  margin-bottom: 3rem;
}

.info-header h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
}

.info-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.info-content {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}

.info-section {
  padding: 2rem;
}

.info-section-header {
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.info-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  background: #5865f21a;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.info-section-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.info-section p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.info-steps {
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
}

.info-step {
  gap: 1rem;
  display: flex;
}

.step-number {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
}

.step-content h3 {
  margin-bottom: .5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.step-content p {
  color: var(--text-muted);
  margin: 0;
}

.info-features {
  flex-direction: column;
  gap: .75rem;
  margin-top: 1rem;
  display: flex;
}

.info-feature {
  color: var(--text);
  align-items: center;
  gap: .75rem;
  display: flex;
}

.info-feature svg {
  color: var(--success);
  flex-shrink: 0;
}

.info-highlight {
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  background: #5865f21a;
  margin-top: 1rem;
  padding: 1rem;
}

.info-highlight p {
  color: var(--text);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .info-header h1 {
    font-size: 2rem;
  }

  .info-section {
    padding: 1.5rem;
  }

  .info-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* [project]/src/styles/pages/boost/layout.css [app-client] (css) */
.boost-page {
  min-height: calc(100vh - 64px);
}

/* [project]/src/styles/pages/boost/hero.css [app-client] (css) */
.boost-hero {
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 4rem 1rem;
}

.boost-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.boost-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.boost-hero h1 {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}

.boost-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.25rem;
}

/* [project]/src/styles/pages/boost/features.css [app-client] (css) */
.boost-features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.boost-features-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  display: grid;
}

.boost-feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  padding: 2rem;
  transition: all .3s;
}

.boost-feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #0003;
}

.boost-feature-icon {
  background: var(--bg-tertiary);
  width: 64px;
  height: 64px;
  color: var(--primary);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  display: inline-flex;
}

.boost-feature-card h3 {
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.boost-feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* [project]/src/styles/pages/boost/plans.css [app-client] (css) */
.boost-plans {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.boost-plans h2 {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 800;
}

.boost-plans-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
  gap: 2rem;
  display: grid;
}

.boost-plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  padding: 2rem;
  transition: all .3s;
  position: relative;
}

.boost-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #0003;
}

.boost-plan-featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.boost-plan-badge {
  background: var(--primary);
  color: #fff;
  text-transform: uppercase;
  border-radius: 100px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  position: absolute;
  top: -12px;
  right: 20px;
}

.boost-plan-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.boost-plan-price {
  margin-bottom: 2rem;
}

.boost-plan-amount {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 800;
}

.boost-plan-period {
  color: var(--text-muted);
  margin-left: .5rem;
  font-size: 1rem;
}

.boost-plan-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.boost-plan-features li {
  color: var(--text-muted);
  align-items: center;
  gap: .75rem;
  padding: .75rem 0;
  display: flex;
}

.boost-plan-features li svg {
  color: var(--success);
  flex-shrink: 0;
}

/* [project]/src/styles/pages/boost/cta.css [app-client] (css) */
.boost-cta {
  text-align: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 1rem;
}

.boost-cta h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
}

.boost-cta p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* [project]/src/styles/pages/boost/responsive.css [app-client] (css) */
@media (max-width: 768px) {
  .boost-plans-grid {
    grid-template-columns: 1fr;
  }
}

/* [project]/src/styles/pages/boost/index.css [app-client] (css) */


/* [project]/src/styles/pages/stats/global-layout.css [app-client] (css) */
.global-stats-page {
  max-width: 1200px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 100px 1.5rem 4rem;
}

.stats-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.stats-hero-title {
  color: var(--text);
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
}

.stats-error {
  text-align: center;
  color: var(--error);
  padding: 4rem 1rem;
  font-size: 1.125rem;
}

/* [project]/src/styles/pages/stats/global-chart.css [app-client] (css) */
.stats-chart-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.stats-chart-tabs {
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.stats-chart-tab {
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border-radius: 6px;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
}

.stats-chart-tab:hover {
  border-color: var(--primary);
  color: var(--text);
  background: #5865f21a;
}

.stats-chart-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.stats-chart-container {
  width: 100%;
  overflow: auto hidden;
}

.stats-chart {
  width: 100%;
  height: auto;
  min-height: 400px;
}

/* [project]/src/styles/pages/stats/global-grid.css [app-client] (css) */
.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  display: grid;
}

.stat-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  text-align: center;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: all .2s;
}

.stat-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.stat-value {
  color: var(--text);
  margin-bottom: .75rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.stat-label {
  color: var(--text-muted);
  font-size: .9375rem;
  line-height: 1.4;
}

/* [project]/src/styles/pages/stats/server-layout.css [app-client] (css) */
.stats-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.stats-header {
  margin-bottom: 2rem;
}

.stats-server-info {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.stats-server-icon {
  object-fit: cover;
  border-radius: 50%;
  width: 64px;
  height: 64px;
}

.stats-server-icon-placeholder {
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
}

.stats-title {
  color: #fff;
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.stats-subtitle {
  color: #9ca3af;
  margin: .25rem 0 0;
  font-size: 1rem;
}

.stats-loading, .stats-error {
  text-align: center;
  color: #9ca3af;
  padding: 3rem;
  font-size: 1.125rem;
}

.stats-error {
  color: #ef4444;
}

.stats-section {
  margin-bottom: 2.5rem;
}

.stats-section-title {
  color: #fff;
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.stats-card {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 12px;
  gap: 1rem;
  padding: 1.5rem;
  transition: all .2s;
  display: flex;
}

.stats-card:hover {
  border-color: #4b5563;
  transform: translateY(-2px);
}

.stats-card-icon {
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.stats-card-primary .stats-card-icon {
  color: #6366f1;
  background: #6366f11a;
}

.stats-card-success .stats-card-icon {
  color: #22c55e;
  background: #22c55e1a;
}

.stats-card-accent .stats-card-icon {
  color: #8b5cf6;
  background: #8b5cf61a;
}

.stats-card-warning .stats-card-icon {
  color: #fb923c;
  background: #fb923c1a;
}

.stats-card-info .stats-card-icon {
  color: #3b82f6;
  background: #3b82f61a;
}

.stats-card-secondary .stats-card-icon {
  color: #9ca3af;
  background: #9ca3af1a;
}

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

.stats-card-label {
  color: #9ca3af;
  margin: 0 0 .5rem;
  font-size: .875rem;
}

.stats-card-value {
  color: #fff;
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.stats-card-change {
  align-items: center;
  gap: .25rem;
  margin-top: .5rem;
  font-size: .875rem;
  font-weight: 500;
  display: flex;
}

.stats-card-change-positive {
  color: #22c55e;
}

.stats-card-change-negative {
  color: #ef4444;
}

/* [project]/src/styles/pages/stats/server-chart.css [app-client] (css) */
.stats-section-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.stats-period-selector {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.stats-period-button {
  color: #9ca3af;
  cursor: pointer;
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 8px;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
}

.stats-period-button:hover {
  color: #fff;
  background: #374151;
}

.stats-period-button-active {
  color: #fff;
  background: #6366f1;
  border-color: #6366f1;
}

.stats-chart {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 12px;
  padding: 1.5rem;
}

.stats-chart-legend {
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.stats-chart-legend-item {
  color: #9ca3af;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  display: flex;
}

.stats-chart-legend-color {
  border-radius: 4px;
  width: 16px;
  height: 16px;
}

.stats-chart-legend-views {
  background: #6366f1;
}

.stats-chart-legend-clicks {
  background: #8b5cf6;
}

.stats-chart-container {
  overflow-x: auto;
}

.stats-chart-svg {
  width: 100%;
  height: 300px;
}

.stats-chart-bar-views {
  fill: #6366f1;
}

.stats-chart-bar-clicks {
  fill: #8b5cf6;
}

.stats-chart-label {
  fill: #9ca3af;
  font-size: 12px;
}

.stats-chart-empty {
  text-align: center;
  color: #9ca3af;
  padding: 3rem;
}

/* [project]/src/styles/pages/stats/responsive.css [app-client] (css) */
@media (max-width: 768px) {
  .global-stats-page {
    padding: 80px 1rem 2rem;
  }

  .stats-hero {
    margin-bottom: 2rem;
    padding: 1rem 0;
  }

  .stats-hero-title {
    font-size: 1.5rem;
  }

  .stats-chart-section {
    padding: 1rem;
  }

  .stats-chart-tabs {
    gap: .375rem;
  }

  .stats-chart-tab {
    flex: 1;
    min-width: 0;
    padding: .5rem .875rem;
    font-size: .8125rem;
  }

  .stats-chart {
    min-height: 300px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .stat-label {
    font-size: .875rem;
  }

  .stats-page {
    padding: 1rem;
  }

  .stats-title {
    font-size: 1.5rem;
  }

  .stats-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-period-selector {
    width: 100%;
  }

  .stats-period-button {
    flex: 1;
  }
}

/* [project]/src/styles/pages/stats/index.css [app-client] (css) */


/* [project]/src/styles/pages/user-profile/layout.css [app-client] (css) */
.user-profile-page {
  min-height: 100vh;
  padding-top: 80px;
}

.profile-container {
  z-index: 10;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: -4rem auto 0;
  padding: 0 1.5rem 3rem;
  display: grid;
  position: relative;
}

.profile-main {
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
  display: flex;
}

.profile-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.section-title {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

/* [project]/src/styles/pages/user-profile/banner.css [app-client] (css) */
.profile-banner {
  background: linear-gradient(135deg, #5865f24d, #8b5cf64d);
  height: 200px;
  position: relative;
  overflow: hidden;
}

.profile-banner:before {
  content: "";
  z-index: 1;
  background: linear-gradient(#0000 0%, #00000080 100%);
  position: absolute;
  inset: 0;
}

.profile-banner img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* [project]/src/styles/pages/user-profile/sidebar.css [app-client] (css) */
.profile-sidebar {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.profile-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.profile-avatar-section {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.profile-avatar-large {
  background: var(--bg-tertiary);
  border: 6px solid var(--bg-secondary);
  width: 120px;
  height: 120px;
  color: var(--text-muted);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 24px #0006;
}

.profile-avatar-large img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.profile-name {
  color: var(--text);
  word-break: break-word;
  margin: 0 0 .5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.profile-name-row {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
  display: flex;
}

.profile-bio {
  color: var(--text-muted);
  margin: 0;
  font-size: .9375rem;
  line-height: 1.6;
}

.profile-meta {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.profile-meta-item {
  color: var(--text-muted);
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  display: flex;
}

.profile-meta-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* [project]/src/styles/pages/user-profile/stats.css [app-client] (css) */
.profile-stats-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  display: grid;
}

.profile-stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  text-align: center;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem;
  transition: all .2s;
  display: flex;
}

.profile-stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.profile-stat-card svg {
  color: var(--primary);
  flex-shrink: 0;
}

.stat-value {
  color: var(--text);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  color: var(--text-muted);
  font-size: .875rem;
}

/* [project]/src/styles/pages/user-profile/reviews.css [app-client] (css) */
.reviews-list {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.review-card-compact {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  transition: all .2s;
}

.review-card-compact:hover {
  border-color: var(--primary);
}

.review-compact-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
  display: flex;
}

.review-server-link {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.review-server-link:hover {
  color: var(--primary);
}

.review-rating {
  font-size: .875rem;
}

.review-compact-content {
  color: var(--text-muted);
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0 0 .75rem;
  font-size: .9375rem;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
}

.review-compact-date {
  color: var(--text-muted);
  font-size: .8125rem;
}

/* [project]/src/styles/pages/user-profile/responsive.css [app-client] (css) */
@media (max-width: 968px) {
  .profile-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: -3rem;
  }

  .profile-sidebar {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .user-profile-page {
    padding-top: 60px;
  }

  .profile-banner {
    height: 150px;
  }

  .profile-container {
    margin-top: -2.5rem;
    padding: 0 1rem 2rem;
  }

  .profile-avatar-large {
    border-width: 4px;
    width: 100px;
    height: 100px;
    font-size: 2rem;
  }

  .profile-name {
    font-size: 1.25rem;
  }

  .profile-stats-grid {
    grid-template-columns: 1fr;
  }

  .profile-stat-card {
    text-align: left;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.125rem;
  }

  .review-compact-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
}

@media (max-width: 480px) {
  .profile-banner {
    height: 120px;
  }

  .profile-container {
    margin-top: -2rem;
  }

  .profile-avatar-large {
    width: 80px;
    height: 80px;
    font-size: 1.75rem;
  }

  .profile-name {
    font-size: 1.125rem;
  }

  .profile-card, .profile-section {
    padding: 1rem;
  }

  .stat-value {
    font-size: 1.25rem;
  }
}

/* [project]/src/styles/pages/user-profile/index.css [app-client] (css) */


/* [project]/src/styles/pages/not-found/animations.css [app-client] (css) */
@keyframes float {
  0%, 100% {
    transform: translate(0)scale(1);
  }

  25% {
    transform: translate(20px, -20px)scale(1.05);
  }

  50% {
    transform: translate(-10px, 20px)scale(.95);
  }

  75% {
    transform: translate(-20px, -10px)scale(1.02);
  }
}

@keyframes glitch {
  0%, 90%, 100% {
    opacity: 1;
  }

  92% {
    opacity: .8;
  }

  94% {
    opacity: 1;
  }

  96% {
    opacity: .9;
  }
}

@keyframes glitch-1 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-5px);
  }
}

@keyframes glitch-2 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(5px);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes rise {
  0% {
    opacity: 0;
    transform: translateY(0)scale(0);
  }

  10% {
    opacity: .8;
    transform: scale(1);
  }

  90% {
    opacity: .3;
  }

  100% {
    opacity: 0;
    transform: translateY(-100vh)scale(.5);
  }
}

/* [project]/src/styles/pages/not-found/layout.css [app-client] (css) */
.not-found {
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.not-found-content {
  text-align: center;
  z-index: 1;
  position: relative;
}

.not-found h1 {
  color: var(--text);
  margin-bottom: .5rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.not-found p {
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

.not-found-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  display: flex;
}

.not-found-hint {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  display: inline-flex;
}

.not-found-hint span {
  color: var(--text-muted);
}

.not-found-hint code {
  color: var(--error);
  font-family: SF Mono, Monaco, monospace;
}

/* [project]/src/styles/pages/not-found/background.css [app-client] (css) */
.not-found-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.not-found-orb {
  filter: blur(80px);
  opacity: .5;
  border-radius: 50%;
  animation: 8s ease-in-out infinite float;
  position: absolute;
}

.orb-1 {
  background: var(--primary);
  width: 400px;
  height: 400px;
  animation-delay: 0s;
  top: -100px;
  left: -100px;
}

.orb-2 {
  background: var(--accent);
  width: 300px;
  height: 300px;
  animation-delay: -2s;
  bottom: -50px;
  right: -50px;
}

.orb-3 {
  background: var(--error);
  opacity: .3;
  width: 200px;
  height: 200px;
  animation-delay: -4s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* [project]/src/styles/pages/not-found/glitch.css [app-client] (css) */
.not-found-glitch {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--error) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  line-height: 1;
  animation: 3s infinite glitch;
  position: relative;
}

.not-found-glitch:before, .not-found-glitch:after {
  content: attr(data-text);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--error) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.not-found-glitch:before {
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  animation: .3s linear infinite alternate-reverse glitch-1;
}

.not-found-glitch:after {
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  animation: .3s linear infinite alternate-reverse glitch-2;
}

.not-found-icon {
  width: 80px;
  height: 80px;
  color: var(--text-muted);
  margin: 1.5rem auto;
  animation: 2s ease-in-out infinite bounce;
}

.not-found-icon svg {
  width: 100%;
  height: 100%;
}

/* [project]/src/styles/pages/not-found/particles.css [app-client] (css) */
.not-found-particles {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  background: var(--primary);
  width: 4px;
  height: 4px;
  left: var(--x);
  opacity: 0;
  animation: rise var(--duration) var(--delay) infinite;
  border-radius: 50%;
  position: absolute;
  bottom: -10px;
}

.particle:nth-child(odd) {
  background: var(--accent);
}

.particle:nth-child(3n) {
  background: var(--error);
  width: 3px;
  height: 3px;
}

/* [project]/src/styles/pages/not-found/index.css [app-client] (css) */


/* [project]/src/styles/pages/index.css [app-client] (css) */


/* [project]/src/styles/home/animations.css [app-client] (css) */
@keyframes pulse-glow {
  0%, 100% {
    opacity: .5;
    transform: translateX(-50%)scale(1);
  }

  50% {
    opacity: .8;
    transform: translateX(-50%)scale(1.1);
  }
}

@keyframes scroll-wheel {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%)translateY(0);
  }

  50% {
    opacity: .3;
    transform: translateX(-50%)translateY(12px);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* [project]/src/styles/home/hero/layout.css [app-client] (css) */
.hero-v2 {
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 4rem 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-compact {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  display: flex;
  position: relative;
}

.hero-compact .hero-content {
  text-align: center;
  width: 100%;
  max-width: 1280px;
}

.hero-compact h1 {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
  position: relative;
}

.hero-v2 h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  animation: .6s ease-out .1s both fade-in-up;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
  animation: .6s ease-out .2s both fade-in-up;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-featured {
  width: 100%;
  margin-top: 3rem;
}

.hero-featured-header {
  color: var(--warning);
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.hero-featured-header h2 {
  color: var(--text);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-featured-header svg {
  color: var(--warning);
}

/* [project]/src/styles/home/hero/background.css [app-client] (css) */
.hero-bg-grid {
  background-image: linear-gradient(#5865f208 1px, #0000 1px), linear-gradient(90deg, #5865f208 1px, #0000 1px);
  background-size: 60px 60px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(#000 0%, #0000 70%);
  mask-image: radial-gradient(#000 0%, #0000 70%);
}

.hero-glow-primary {
  pointer-events: none;
  background: radial-gradient(#5865f226 0%, #0000 60%);
  width: 800px;
  height: 600px;
  animation: 8s ease-in-out infinite pulse-glow;
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-glow-accent {
  pointer-events: none;
  background: radial-gradient(#8b5cf61a 0%, #0000 60%);
  width: 600px;
  height: 600px;
  animation: 8s ease-in-out infinite reverse pulse-glow;
  position: absolute;
  bottom: -100px;
  right: -200px;
}

/* [project]/src/styles/home/hero/badge.css [app-client] (css) */
.hero-badge {
  color: var(--primary-light);
  background: #5865f21a;
  border: 1px solid #5865f233;
  border-radius: 100px;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  animation: .6s ease-out fade-in-up;
  display: inline-flex;
}

/* [project]/src/styles/home/hero/search.css [app-client] (css) */
.hero-search-wrapper {
  max-width: 700px;
  margin: 0 auto;
  animation: .6s ease-out .3s both fade-in-up;
}

.hero-search-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: center;
  gap: .5rem;
  max-width: 560px;
  margin: 0 auto;
  padding: .5rem;
  transition: all .3s;
  display: flex;
}

.hero-search-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px #5865f21a;
}

.hero-search-form svg {
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: .75rem;
}

.hero-search-form input {
  color: var(--text);
  background: none;
  border: none;
  outline: none;
  flex: 1;
  padding: .75rem;
  font-size: 1rem;
}

.hero-search-form input::placeholder {
  color: var(--text-muted);
}

.hero-search-form .btn {
  flex-shrink: 0;
}

.hero-search-tags {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
  font-size: .875rem;
  display: flex;
}

.hero-search-tags span {
  color: var(--text-muted);
}

.hero-search-tags a {
  color: var(--text);
  background: var(--bg-tertiary);
  border-radius: 100px;
  padding: .25rem .75rem;
  transition: all .2s;
}

.hero-search-tags a:hover {
  background: var(--card-hover);
  color: var(--primary);
}

/* [project]/src/styles/home/hero/stats.css [app-client] (css) */
.hero-stats {
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  animation: .6s ease-out .4s both fade-in-up;
  display: flex;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2rem;
  font-weight: 700;
}

.hero-stat-label {
  color: var(--text-muted);
  margin-top: .25rem;
  font-size: .875rem;
}

.hero-stat-divider {
  background: var(--border);
  width: 1px;
  height: 40px;
}

/* [project]/src/styles/home/hero/scroll.css [app-client] (css) */
.hero-scroll-indicator {
  animation: 1s ease-out 1s both fade-in;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-mouse {
  border: 2px solid var(--border);
  border-radius: 12px;
  width: 24px;
  height: 40px;
  position: relative;
}

.hero-scroll-wheel {
  background: var(--text-muted);
  border-radius: 2px;
  width: 4px;
  height: 8px;
  animation: 2s ease-in-out infinite scroll-wheel;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

/* [project]/src/styles/home/hero/responsive.css [app-client] (css) */
@media (max-width: 600px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-search-form {
    flex-direction: column;
    padding: 1rem;
  }

  .hero-search-form input {
    text-align: center;
    width: 100%;
  }

  .hero-search-form .btn {
    width: 100%;
  }
}

/* [project]/src/styles/home/hero/index.css [app-client] (css) */


/* [project]/src/styles/home/features.css [app-client] (css) */
.features-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 1rem;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  display: grid;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  padding: 2rem;
  transition: all .3s;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px #0003;
}

.feature-icon {
  border-radius: var(--radius);
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
}

.feature-card h3 {
  margin-bottom: .5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.6;
}

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

/* [project]/src/styles/home/categories.css [app-client] (css) */
.categories-section-v2 {
  padding: 5rem 1rem;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header-center h2 {
  margin-bottom: .5rem;
  font-size: 2rem;
  font-weight: 700;
}

.section-header-center p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.categories-grid-v2 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
}

.category-card-v2 {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  transition: all .2s;
  display: flex;
}

.category-card-v2:hover {
  border-color: var(--primary);
  background: var(--card-hover);
  transform: translateX(4px);
}

.category-card-v2:hover .category-arrow {
  opacity: 1;
  transform: translateX(0);
}

.category-icon-v2 {
  font-size: 1.5rem;
}

.category-name-v2 {
  flex: 1;
  font-weight: 500;
}

.category-arrow {
  color: var(--primary);
  opacity: 0;
  transition: all .2s;
  transform: translateX(-8px);
}

.categories-more {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .categories-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .categories-grid-v2 {
    grid-template-columns: 1fr;
  }
}

/* [project]/src/styles/home/sections.css [app-client] (css) */
.section-title-wrapper {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.section-icon {
  border-radius: var(--radius);
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.section-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.section-subtitle {
  color: var(--text-muted);
  margin: 0;
  font-size: .875rem;
}

/* [project]/src/styles/home/cta.css [app-client] (css) */
.cta-section {
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  background: linear-gradient(135deg, #5865f21a 0%, #8b5cf61a 100%);
  position: absolute;
  inset: 0;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.cta-section h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.cta-buttons {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  display: flex;
}

@media (max-width: 600px) {
  .cta-section h2 {
    font-size: 1.75rem;
  }
}

/* [project]/src/styles/home/all-servers.css [app-client] (css) */
.all-servers-section {
  padding: 2rem 1rem 3rem;
}

.filters-tags {
  margin-bottom: 2rem;
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-title {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
  font-size: .875rem;
  font-weight: 600;
}

.filter-buttons {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.filter-tag {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  gap: .375rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  display: inline-flex;
}

.filter-tag:hover {
  background: var(--bg-hover);
  border-color: var(--primary);
}

.filter-tag.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.empty-servers {
  text-align: center;
  color: var(--text-muted);
  padding: 4rem 1rem;
}

.empty-servers p {
  font-size: 1.125rem;
}

.home-pagination {
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  display: flex;
}

.pagination-info {
  color: var(--text-muted);
  text-align: center;
  min-width: 150px;
  font-size: .875rem;
}

@media (max-width: 640px) {
  .home-pagination {
    flex-direction: column;
    gap: .5rem;
  }
}

/* [project]/src/styles/home/index.css [app-client] (css) */


/* [project]/src/styles/dashboard/layout.css [app-client] (css) */
.dashboard-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.dashboard-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  display: flex;
}

.page-title {
  color: var(--foreground);
  font-size: 1.75rem;
  font-weight: 700;
}

.section-title {
  color: var(--foreground);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

/* [project]/src/styles/dashboard/stats.css [app-client] (css) */
.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  display: grid;
}

.stat-card {
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  display: flex;
}

.stat-icon {
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.stat-icon-primary {
  color: var(--primary);
  background: #5865f226;
}

.stat-icon-success {
  color: var(--success);
  background: #57f28726;
}

.stat-icon-accent {
  color: var(--accent);
  background: #8b5cf626;
}

.stat-icon-warning {
  color: var(--warning);
  background: #f59e0b26;
}

.stat-info {
  flex: 1;
}

.stat-value {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.stat-label {
  color: var(--foreground-muted);
  font-size: .875rem;
}

.stat-sublabel {
  color: var(--foreground-muted);
  opacity: .7;
  margin-top: .25rem;
  font-size: .75rem;
}

/* [project]/src/styles/dashboard/servers/list.css [app-client] (css) */
.servers-list {
  flex-direction: column;
  gap: .75rem;
  display: flex;
  overflow: visible;
}

.server-row {
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  display: flex;
  position: relative;
  overflow: visible;
}

/* [project]/src/styles/dashboard/servers/info.css [app-client] (css) */
.server-icon {
  background: var(--background-tertiary);
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  overflow: hidden;
}

.server-icon img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.server-icon span {
  color: var(--foreground-muted);
  font-size: 1.25rem;
  font-weight: 600;
}

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

.server-name-row {
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
  display: flex;
}

.server-name {
  color: var(--foreground);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.server-name:hover {
  color: var(--primary);
}

.server-category {
  color: var(--foreground-muted);
  font-size: .875rem;
}

.server-ban-reason {
  color: var(--error);
  background: #ef44441a;
  border: 1px solid #ef444433;
  border-radius: 4px;
  margin: .5rem 0;
  padding: .5rem;
  font-size: .8125rem;
  line-height: 1.4;
}

.server-ban-reason strong {
  font-weight: 600;
}

.server-stats {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.server-stat {
  text-align: center;
}

.server-stat-value {
  color: var(--foreground);
  font-weight: 600;
  display: block;
}

.server-stat-label {
  color: var(--foreground-muted);
  font-size: .75rem;
  display: block;
}

/* [project]/src/styles/dashboard/servers/actions.css [app-client] (css) */
.server-actions {
  flex-shrink: 0;
  align-items: center;
  gap: .375rem;
  margin-left: auto;
  display: flex;
  position: relative;
}

.server-action-btn {
  border: 1px solid var(--border);
  cursor: pointer;
  white-space: nowrap;
  background: var(--bg-secondary);
  color: var(--text);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: .375rem;
  padding: .375rem .625rem;
  font-size: .8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.server-action-btn:hover:not(:disabled) {
  background: var(--bg-tertiary);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.server-action-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.server-action-btn svg {
  flex-shrink: 0;
}

.server-action-btn-icon {
  min-width: 36px;
  min-height: 36px;
  padding: .5rem;
}

.server-action-btn-secondary {
  background: var(--bg-secondary);
  border-color: var(--border);
  color: var(--text-muted);
}

.server-action-btn-secondary:hover:not(:disabled) {
  background: var(--bg-tertiary);
  color: var(--text);
}

.server-action-btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.server-action-btn-primary:hover:not(:disabled) {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.server-action-btn-success {
  color: #22c55e;
  background: #22c55e1a;
  border-color: #22c55e4d;
}

.server-action-btn-success:hover:not(:disabled) {
  background: #22c55e33;
  border-color: #22c55e80;
}

.server-action-btn-warning {
  color: #fbbf24;
  background: #fbbf241a;
  border-color: #fbbf244d;
}

.server-action-btn-warning:hover:not(:disabled) {
  background: #fbbf2433;
  border-color: #fbbf2480;
}

.server-action-btn-danger {
  color: #ef4444;
  background: #ef44441a;
  border-color: #ef44444d;
}

.server-action-btn-danger:hover:not(:disabled) {
  background: #ef444433;
  border-color: #ef444480;
}

.server-action-btn-muted {
  background: var(--bg-secondary);
  border-color: var(--border);
  color: var(--text-muted);
  cursor: default;
}

.server-action-btn-muted:hover {
  transform: none;
}

.server-action-btn.btn-danger {
  color: var(--error) !important;
}

.server-action-btn.btn-danger:hover {
  background: #ef44441a !important;
}

.server-actions-menu {
  position: relative;
}

.server-actions-dropdown {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  z-index: 1000;
  border-radius: 8px;
  min-width: 200px;
  animation: .15s dropdownFadeIn;
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px #0000004d;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  text-align: left;
  width: 100%;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  transition: background .15s;
  display: flex;
}

.dropdown-item:hover:not(:disabled) {
  background: var(--bg-tertiary);
}

.dropdown-item:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.dropdown-item svg {
  opacity: .7;
  flex-shrink: 0;
}

.dropdown-item-danger {
  color: var(--error);
}

.dropdown-item-danger:hover:not(:disabled) {
  background: #ef44441a;
}

.dropdown-item-danger svg {
  opacity: 1;
}

.dropdown-confirm {
  border-top: 1px solid var(--border);
  padding: 1rem;
}

.dropdown-confirm-text {
  color: var(--text-muted);
  margin-bottom: .75rem;
  font-size: .8125rem;
  line-height: 1.4;
}

.dropdown-confirm-actions {
  gap: .5rem;
  display: flex;
}

.dropdown-confirm-btn {
  border: 1px solid var(--border);
  background: var(--bg-tertiary);
  color: var(--text);
  cursor: pointer;
  border-radius: 6px;
  flex: 1;
  padding: .5rem;
  font-size: .8125rem;
  font-weight: 500;
  transition: all .15s;
}

.dropdown-confirm-btn:hover:not(:disabled) {
  background: var(--bg-secondary);
  border-color: var(--border-hover);
}

.dropdown-confirm-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.dropdown-confirm-btn-danger {
  color: var(--error);
  background: #ef44441a;
  border-color: #ef44444d;
}

.dropdown-confirm-btn-danger:hover:not(:disabled) {
  background: #ef444433;
  border-color: #ef444480;
}

/* [project]/src/styles/dashboard/servers/status.css [app-client] (css) */
.bot-status-indicator {
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  display: flex;
}

.status-icon {
  flex-shrink: 0;
}

.status-success, .status-text.status-success {
  color: var(--success);
}

.status-error, .status-text.status-error {
  color: var(--error);
}

.status-warning, .status-text.status-warning {
  color: var(--warning);
}

.status-muted, .status-text.status-muted {
  color: var(--text-muted);
}

.spin {
  animation: 1s linear infinite spin;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

/* [project]/src/styles/dashboard/servers/delete.css [app-client] (css) */
.delete-server-confirm {
  background: var(--background-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  flex-direction: column;
  gap: 1rem;
  margin-top: .5rem;
  padding: 1rem;
  display: flex;
}

.delete-warning {
  color: var(--error);
  background: #ef44441a;
  border: 1px solid #ef44444d;
  border-radius: 6px;
  align-items: flex-start;
  gap: .75rem;
  padding: .875rem;
  display: flex;
}

.delete-warning svg {
  flex-shrink: 0;
  margin-top: .125rem;
}

.delete-warning strong {
  margin-bottom: .25rem;
  font-weight: 600;
  display: block;
}

.delete-warning p {
  color: var(--foreground-muted);
  margin: 0;
  font-size: .875rem;
  line-height: 1.5;
}

.delete-actions {
  justify-content: flex-end;
  gap: .5rem;
  display: flex;
}

/* [project]/src/styles/dashboard/servers/preview.css [app-client] (css) */
.modal-preview {
  width: 90%;
  max-width: 500px;
}

.preview-hint {
  color: var(--foreground-muted);
  text-align: center;
  margin-bottom: 1rem;
  font-size: .875rem;
}

.preview-card-wrapper {
  justify-content: center;
  display: flex;
}

/* [project]/src/styles/dashboard/servers/responsive.css [app-client] (css) */
@media (max-width: 768px) {
  .server-stats {
    display: none;
  }

  .server-row {
    flex-wrap: wrap;
  }

  .server-info {
    flex: calc(100% - 64px);
  }

  .server-actions {
    flex-wrap: wrap;
    margin-left: auto;
  }

  .server-action-btn {
    padding: .375rem .5rem;
    font-size: .75rem;
  }

  .server-action-btn svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .server-card {
    padding: .875rem;
  }

  .server-avatar {
    width: 48px;
    height: 48px;
  }

  .server-name {
    font-size: .9375rem;
  }

  .server-actions {
    justify-content: flex-start;
    width: 100%;
    margin-top: .75rem;
    margin-left: 0;
  }

  .server-action-btn {
    flex: 1;
    min-width: 0;
  }

  .server-action-btn span {
    display: none;
  }
}

/* [project]/src/styles/dashboard/servers/index.css [app-client] (css) */


/* [project]/src/styles/dashboard/buttons.css [app-client] (css) */
.btn-ghost.btn-danger {
  background: none;
  color: var(--error) !important;
}

.btn-ghost.btn-danger:hover {
  background: #ed42451a !important;
}

.btn-ghost.btn-success {
  background: none;
  color: var(--success) !important;
}

.btn-ghost.btn-success:hover {
  background: #57f2871a !important;
}

/* [project]/src/styles/dashboard/empty.css [app-client] (css) */
.empty-state {
  text-align: center;
  padding: 3rem;
}

.empty-text {
  color: var(--foreground-muted);
  margin-bottom: 1rem;
}

/* [project]/src/styles/dashboard/index.css [app-client] (css) */


/* [project]/src/styles/admin/reports/filters.css [app-client] (css) */
.reports-filters {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.reports-stats {
  border-bottom: 1px solid var(--border);
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.stat-item {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.stat-label {
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 500;
}

.stat-value {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
}

.filters-row {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  display: grid;
}

.filter-group {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.filter-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .75rem;
  font-weight: 600;
}

.filter-group .select {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  cursor: pointer;
  outline: none;
  padding: .625rem .875rem;
  font-size: .9375rem;
  transition: all .2s;
}

.filter-group .select:hover {
  border-color: var(--primary);
}

.filter-group .select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px #6366f11a;
}

/* [project]/src/styles/admin/reports/table.css [app-client] (css) */
.reports-table-container {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.reports-table {
  border-collapse: collapse;
  width: 100%;
}

.reports-table thead {
  background: var(--bg-tertiary);
}

.reports-table th {
  text-align: left;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 1rem;
  font-size: .875rem;
  font-weight: 600;
}

.reports-table tbody tr {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
}

.reports-table tbody tr:hover {
  background: var(--bg-tertiary);
}

.reports-table tbody tr:last-child {
  border-bottom: none;
}

.reports-table td {
  color: var(--text);
  padding: 1rem;
  font-size: .875rem;
}

.status-badge {
  border-radius: var(--radius-full);
  white-space: nowrap;
  align-items: center;
  gap: .375rem;
  padding: .375rem .75rem;
  font-size: .8125rem;
  font-weight: 600;
  display: inline-flex;
}

.status-badge.status-pending {
  color: #f59e0b;
  background: #f59e0b1a;
}

.status-badge.status-resolved {
  color: #22c55e;
  background: #22c55e1a;
}

.status-badge.status-dismissed {
  color: #6b7280;
  background: #6b72801a;
}

.status-icon {
  flex-shrink: 0;
}

.server-cell {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.server-cell strong {
  color: var(--text);
}

.server-id {
  color: var(--text-muted);
  font-family: Courier New, monospace;
  font-size: .75rem;
}

.reason-badge {
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  padding: .25rem .625rem;
  font-size: .8125rem;
  font-weight: 500;
  display: inline-block;
}

.type-badge {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: .25rem .625rem;
  font-size: .8125rem;
  font-weight: 600;
  display: inline-block;
}

.reporter-cell {
  color: var(--text);
}

.date-cell {
  color: var(--text-muted);
  font-size: .8125rem;
}

.reports-table-loading {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  justify-content: center;
  align-items: center;
  padding: 4rem;
  display: flex;
}

/* [project]/src/styles/admin/reports/modal.css [app-client] (css) */
.report-modal {
  max-width: 600px;
}

.report-status-header {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  display: flex;
}

.status-icon-large {
  flex-shrink: 0;
}

.status-icon-large.pending {
  color: #f59e0b;
}

.status-icon-large.resolved {
  color: #22c55e;
}

.status-icon-large.dismissed {
  color: #6b7280;
}

.report-info-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  display: grid;
}

.report-info-item {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.report-info-item.full-width {
  grid-column: 1 / -1;
}

.report-info-item label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .875rem;
  font-weight: 600;
}

.report-info-item span {
  color: var(--text);
  font-size: .9375rem;
}

.server-info {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.server-info strong {
  color: var(--text);
  font-size: 1rem;
}

.server-link {
  color: var(--primary);
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
}

.server-link:hover {
  color: var(--primary-hover);
}

.report-details-box {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
  padding: 1rem;
  font-size: .9375rem;
  line-height: 1.6;
}

.report-target-preview {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--warning);
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.report-target-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 .5rem;
  font-size: .75rem;
  font-weight: 600;
}

.report-target-content {
  color: var(--text);
  font-size: .875rem;
  font-style: italic;
  line-height: 1.5;
}

.report-actions-section {
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.review-rating-display {
  gap: .25rem;
  margin-bottom: .75rem;
  font-size: 1.125rem;
  display: flex;
}

.review-rating-display .star-filled {
  color: #fbbf24;
}

.review-rating-display .star-empty {
  color: var(--text-muted);
  opacity: .3;
}

/* [project]/src/styles/admin/reports/responsive.css [app-client] (css) */
@media (max-width: 1024px) {
  .reports-table-container {
    overflow-x: auto;
  }

  .reports-table {
    min-width: 800px;
  }
}

@media (max-width: 640px) {
  .reports-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .filters-row {
    grid-template-columns: 1fr;
  }

  .report-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .report-modal {
    max-width: 100%;
  }
}

/* [project]/src/styles/admin/reports/index.css [app-client] (css) */


/* [project]/src/styles/admin/reports.css [app-client] (css) */


/* [project]/src/app/globals.css [app-client] (css) */


/*# sourceMappingURL=src_8e916923._.css.map*/