@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Modak&family=Inter:wght@400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.4211;
  letter-spacing: -0.022em;
  color: #1d1d1f;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.brand-name {
  font-family: "Modak", cursive;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 48px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }
}
h1 {
  line-height: 1.1;
  margin-bottom: 32px;
}

h2 {
  font-size: 32px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 45.7142857143px;
  }
}
h2 {
  line-height: 1.2;
  margin-bottom: 28px;
}

h3 {
  font-size: 22px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 30px;
  }
}
h3 {
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 12px;
  font-weight: 600;
}

p {
  font-size: 9px;
  line-height: 1.75;
  color: #6e6e73;
  margin-bottom: 16px;
}

a {
  color: #0066FF;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  opacity: 0.85;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(20px) rotate(240deg);
  }
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

body[data-language=de] .nav-links-desktop .nav-link,
body[data-language=ru] .nav-links-desktop .nav-link {
  font-size: 13px;
}

.nav-apple {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  transition: background 0.5s ease;
}
@media (min-width: 835px) {
  .nav-apple {
    background: rgba(251, 251, 253, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
  }
  .nav-apple.scrolled {
    background: rgba(251, 251, 253, 0.85);
  }
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  gap: 24px;
  position: relative;
}
@media (min-width: 1024px) {
  .nav-content {
    gap: 32px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.nav-logo .logo-text {
  font-family: "Modak", cursive;
  font-size: 28px;
  color: #000000;
  letter-spacing: -0.5px;
  transition: color 0.2s ease;
}
.nav-logo .logo-dot {
  width: 8px;
  height: 8px;
  background: #0066FF;
  border-radius: 50%;
  margin-left: 4px;
  animation: bounceDot 2s infinite;
  transition: all 0.3s ease;
}
.nav-logo:hover .logo-text {
  color: #0066FF;
}
.nav-logo:hover .logo-dot {
  background: #0066FF;
  transform: scale(1.3);
  animation: none;
}

@keyframes bounceDot {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
.nav-links-desktop {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 2px;
  z-index: 1;
}
@media (min-width: 835px) {
  .nav-links-desktop {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .nav-links-desktop {
    gap: 8px;
  }
}
.nav-links-desktop .nav-link {
  padding: 8px 12px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  text-align: center;
}
.nav-links-desktop .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.nav-links-desktop .nav-link:hover {
  color: #0066FF;
}
.nav-links-desktop .nav-link:hover::before {
  opacity: 1;
}
.nav-links-desktop .nav-link:active {
  transform: scale(0.98);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .nav-actions {
    gap: 12px;
  }
}

.nav-signin-btn {
  display: none;
  align-items: center;
  padding: 6px 18px;
  background: transparent;
  color: #1d1d1f;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 835px) {
  .nav-signin-btn {
    display: flex;
  }
}
.nav-signin-btn:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.nav-signin-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.nav-cta-btn {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: #0066FF;
  color: #ffffff;
  border: none;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-cta-btn span {
  display: inline-block;
}
@media (min-width: 835px) {
  .nav-cta-btn {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .nav-cta-btn {
    padding: 6px 16px;
  }
}
@media (max-width: 1024px) {
  .nav-cta-btn span {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.nav-cta-btn .cta-arrow {
  transition: transform 0.2s ease;
}
.nav-cta-btn:hover {
  background: rgb(0, 85.68, 214.2);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.2);
}
.nav-cta-btn:hover .cta-arrow {
  transform: translateX(2px);
}
.nav-cta-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.user-dropdown {
  position: relative;
  margin-left: 8px;
}

.user-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 980px;
  padding: 4px 14px 4px 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
}
.user-dropdown-btn .user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  margin: 0;
}
.user-dropdown-btn .user-avatar .user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.user-dropdown-btn .user-avatar .user-avatar-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0066FF, rgb(76.5, 147.9, 255));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
}
.user-dropdown-btn .user-name {
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .user-dropdown-btn .user-name {
    display: none;
  }
}
.user-dropdown-btn .user-chevron {
  transition: transform 0.2s ease;
  stroke: #86868b;
}
.user-dropdown-btn:hover {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.16);
}
.user-dropdown-btn:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
.user-dropdown-btn[aria-expanded=true] {
  background: rgba(0, 102, 255, 0.04);
  border-color: #0066FF;
}
.user-dropdown-btn[aria-expanded=true] .user-chevron {
  transform: rotate(180deg);
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top right;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow: hidden;
}
.user-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.user-dropdown-header {
  padding: 16px;
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.user-dropdown-header .user-dropdown-name {
  font-size: 15px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 2px;
}
.user-dropdown-header .user-dropdown-email {
  font-size: 13px;
  color: #86868b;
  margin-bottom: 6px;
}
.user-dropdown-header .user-role-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.user-dropdown-header .user-role-badge.admin {
  background: rgba(255, 59, 48, 0.1);
  color: rgb(255, 59, 48);
}
.user-dropdown-header .user-role-badge.moderator {
  background: rgba(255, 149, 0, 0.1);
  color: rgb(255, 149, 0);
}

.user-dropdown-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 400;
  color: #1d1d1f;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
}
.user-dropdown-item svg {
  stroke: #86868b;
  flex-shrink: 0;
}
.user-dropdown-item span {
  flex: 1;
}
.user-dropdown-item:hover {
  background: rgba(0, 102, 255, 0.06);
}
.user-dropdown-item:hover svg {
  stroke: #0066FF;
}
.user-dropdown-item:active {
  background: rgba(0, 102, 255, 0.1);
}
.user-dropdown-item.logout-btn {
  color: rgb(255, 59, 48);
}
.user-dropdown-item.logout-btn svg {
  stroke: rgb(255, 59, 48);
}
.user-dropdown-item.logout-btn:hover {
  background: rgba(255, 59, 48, 0.06);
}
.user-dropdown-item.logout-btn:active {
  background: rgba(255, 59, 48, 0.1);
}

.nav-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}
@media (min-width: 835px) {
  .nav-menu-toggle {
    display: none;
  }
}
.nav-menu-toggle .menu-line {
  width: 18px;
  height: 1.5px;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  position: absolute;
}
.nav-menu-toggle .menu-line:first-child {
  transform: translateY(-4px);
}
.nav-menu-toggle .menu-line:last-child {
  transform: translateY(4px);
}
.nav-menu-toggle.active .menu-line:first-child {
  transform: rotate(45deg);
}
.nav-menu-toggle.active .menu-line:last-child {
  transform: rotate(-45deg);
}

.nav-mobile-menu {
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-mobile-menu.active {
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile-menu::-webkit-scrollbar {
  width: 6px;
}
.nav-mobile-menu::-webkit-scrollbar-track {
  background: transparent;
}
.nav-mobile-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.nav-mobile-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
@media (min-width: 835px) {
  .nav-mobile-menu {
    display: none;
  }
}

.mobile-menu-content {
  padding: 8px 0 24px;
  min-height: 100%;
}

.mobile-links {
  padding: 0 22px;
}
.mobile-links .mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  margin: 2px 0;
  color: rgba(0, 0, 0, 0.88);
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.mobile-links .mobile-link svg {
  opacity: 0.3;
  transition: all 0.2s ease;
}
.mobile-links .mobile-link:active {
  background: rgba(0, 0, 0, 0.06);
  transform: scale(0.98);
}
.mobile-links .mobile-link:active svg {
  opacity: 0.6;
  transform: translateX(2px);
}

.mobile-user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 8px;
}
.mobile-user-profile .mobile-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.mobile-user-profile .mobile-user-avatar .mobile-user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.mobile-user-profile .mobile-user-avatar .mobile-user-avatar-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0066FF, rgb(76.5, 147.9, 255));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}
.mobile-user-profile .mobile-user-info {
  flex: 1;
  min-width: 0;
}
.mobile-user-profile .mobile-user-info .mobile-user-name {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobile-user-profile .mobile-user-info .mobile-user-email {
  font-size: 13px;
  color: #86868b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobile-user-profile .mobile-user-info .mobile-user-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 4px;
}
.mobile-user-profile .mobile-user-info .mobile-user-badge.admin {
  background: rgba(255, 59, 48, 0.1);
  color: rgb(255, 59, 48);
}
.mobile-user-profile .mobile-user-info .mobile-user-badge.moderator {
  background: rgba(255, 149, 0, 0.1);
  color: rgb(255, 149, 0);
}

.mobile-cta {
  padding: 16px 22px 0;
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
  margin-top: 8px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.mobile-cta .mobile-signin-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  color: #1d1d1f;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mobile-cta .mobile-signin-btn:active {
  background: rgba(0, 0, 0, 0.04);
  transform: scale(0.98);
}
.mobile-cta .mobile-cta-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: #0066FF;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: normal;
  line-height: 1.3;
}
.mobile-cta .mobile-cta-btn.logout {
  background: rgb(255, 59, 48);
}
.mobile-cta .mobile-cta-btn:active {
  background: rgb(0, 85.68, 214.2);
  transform: scale(0.98);
}
.mobile-cta .mobile-cta-btn:active.logout {
  background: rgb(255, 20.368115942, 7.2);
}

.language-switcher {
  position: relative;
  margin-left: 16px;
}
@media (max-width: 768px) {
  .language-switcher {
    margin-left: 8px;
  }
}

.language-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s ease cubic-bezier(0.32, 0, 0.67, 0);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .language-dropdown-btn {
    padding: 5px 8px;
    font-size: 13px;
    gap: 4px;
  }
}
.language-dropdown-btn .lang-flag {
  display: inline-block;
}
.language-dropdown-btn .lang-chevron {
  transition: transform 0.15s cubic-bezier(0.32, 0, 0.67, 0);
  stroke: currentColor;
}
.language-dropdown-btn:hover {
  border-color: rgba(0, 0, 0, 0.16);
  background-color: rgba(0, 0, 0, 0.02);
}
.language-dropdown-btn:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
.language-dropdown-btn[aria-expanded=true] {
  border-color: #0066FF;
  background-color: rgba(0, 102, 255, 0.04);
}
.language-dropdown-btn[aria-expanded=true] .lang-chevron {
  transform: rotate(180deg);
}

.language-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top right;
  transition: all 0.15s cubic-bezier(0.32, 0, 0.67, 0);
  z-index: 1000;
  overflow: hidden;
}
.language-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.language-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 400;
  color: #1d1d1f;
  text-align: left;
  cursor: pointer;
  transition: none;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
}
.language-dropdown-item .lang-name {
  flex: 1;
}
.language-dropdown-item .lang-check {
  stroke: #0066FF;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.15s cubic-bezier(0.32, 0, 0.67, 0);
}
.language-dropdown-item.active {
  color: #0066FF;
  font-weight: 500;
}
.language-dropdown-item.active .lang-check {
  opacity: 1;
  transform: scale(1);
}
.language-dropdown-item:hover {
  background: rgba(0, 102, 255, 0.06);
}
.language-dropdown-item:active {
  background: rgba(0, 102, 255, 0.12);
  transform: scale(0.98);
}
.language-dropdown-item:not(:last-child) {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}

.mobile-language-switcher {
  padding: 16px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-language-label {
  font-size: 12px;
  color: #86868b;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-language-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s ease cubic-bezier(0.32, 0, 0.67, 0);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  position: relative;
}
.mobile-language-dropdown-btn .mobile-lang-flag {
  flex: 1;
  text-align: left;
}
.mobile-language-dropdown-btn .mobile-lang-chevron {
  transition: transform 0.15s cubic-bezier(0.32, 0, 0.67, 0);
  stroke: currentColor;
  flex-shrink: 0;
}
.mobile-language-dropdown-btn:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
.mobile-language-dropdown-btn[aria-expanded=true] {
  border-color: #0066FF;
}
.mobile-language-dropdown-btn[aria-expanded=true] .mobile-lang-chevron {
  transform: rotate(180deg);
}

.mobile-language-dropdown-menu {
  margin-top: 8px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: scaleY(0.9);
  transform-origin: top;
  transition: all 0.15s cubic-bezier(0.32, 0, 0.67, 0);
}
.mobile-language-dropdown-menu.active {
  max-height: 400px;
  opacity: 1;
  transform: scaleY(1);
}

.mobile-language-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: #1d1d1f;
  text-align: left;
  cursor: pointer;
  transition: none;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
}
.mobile-language-dropdown-item .lang-name {
  flex: 1;
}
.mobile-language-dropdown-item .lang-check {
  stroke: #0066FF;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.15s cubic-bezier(0.32, 0, 0.67, 0);
}
.mobile-language-dropdown-item.active {
  color: #0066FF;
  font-weight: 600;
}
.mobile-language-dropdown-item.active .lang-check {
  opacity: 1;
  transform: scale(1);
}
.mobile-language-dropdown-item:active {
  background: rgba(0, 102, 255, 0.08);
  transform: scale(0.98);
}
.mobile-language-dropdown-item:not(:last-child) {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}

footer {
  background: #000000;
  color: #ffffff;
  padding: 4rem 0 2rem;
}
footer .footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  footer .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
  }
}
footer h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}
footer h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
footer ul {
  list-style: none;
}
footer ul li {
  margin-bottom: 0.75rem;
}
footer ul a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
footer ul a:hover {
  color: #ffffff;
  text-decoration: underline;
}
footer p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
footer .newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
footer .newsletter-form input {
  flex: 1;
  padding: 0.625rem 1rem;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
footer .newsletter-form input:focus {
  outline: none;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}
footer .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
footer .newsletter-form button {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
footer .newsletter-form button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}
footer .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
footer .footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.5;
}
.btn.btn-primary {
  background: #0066FF;
  color: #ffffff;
}
.btn.btn-primary:hover {
  background: rgb(0, 85.68, 214.2);
  transition: all 0.3s ease;
}
.btn.btn-primary:hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn.btn-primary:active {
  transform: translateY(0);
}

.form-group {
  margin-bottom: 28px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #1d1d1f;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 17px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  background: #ffffff;
  transition: all 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #86868b;
}
.form-group input,
.form-group select,
.form-group textarea {
  border-width: 2px;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.2s ease;
}
.newsletter-form input:focus {
  outline: none;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.newsletter-form button {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.newsletter-form button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/**
 * Image Upload Component Styles
 *
 * Apple-inspired minimalist design for file upload with drag-and-drop
 */
.image-upload-container {
  width: 100%;
}

.image-upload-dropzone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 180px;
  padding: 32px;
  border: 2px dashed rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fbfbfd;
  cursor: pointer;
  transition: all 0.3s ease;
}
.image-upload-dropzone:hover {
  border-color: #0066FF;
  background: rgba(0, 102, 255, 0.02);
}
.image-upload-dropzone.dragover {
  border-color: #0066FF;
  background: rgba(0, 102, 255, 0.05);
  transform: scale(1.01);
}

.image-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}

.image-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  pointer-events: none;
}

.image-upload-icon {
  width: 48px;
  height: 48px;
  color: #86868b;
  transition: color 0.2s ease;
}
.image-upload-dropzone:hover .image-upload-icon {
  color: #0066FF;
}
.image-upload-dropzone.dragover .image-upload-icon {
  color: #0066FF;
  transform: scale(1.1);
}

.image-upload-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.image-upload-text-primary {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
}
.image-upload-dropzone:hover .image-upload-text-primary {
  color: #0066FF;
}

.image-upload-text-secondary {
  font-size: 14px;
  color: #86868b;
}

.image-preview-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
@media (min-width: 640px) {
  .image-preview-container {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}
@media (min-width: 768px) {
  .image-preview-container {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.image-preview-item {
  position: relative;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #d2d2d7;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s ease;
}
.image-preview-item.show {
  opacity: 1;
  transform: scale(1);
}
.image-preview-item.removing {
  opacity: 0;
  transform: scale(0.9);
}
.image-preview-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  transform: scale(1.02);
}
.image-preview-item:hover .image-preview-remove {
  opacity: 1;
}

.image-preview-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
@media (min-width: 640px) {
  .image-preview-img {
    height: 160px;
  }
}
@media (min-width: 768px) {
  .image-preview-img {
    height: 180px;
  }
}

.image-preview-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s ease;
}
.image-preview-remove:hover {
  background: rgba(255, 59, 48, 0.9);
  transform: scale(1.1);
}
.image-preview-remove:active {
  transform: scale(0.95);
}
.image-preview-remove svg {
  width: 16px;
  height: 16px;
}
@media (hover: none) {
  .image-preview-remove {
    opacity: 1;
  }
}

.image-preview-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 16px;
  background: #ffffff;
  border-top: 1px solid #d2d2d7;
}

.image-preview-name {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.image-preview-size {
  font-size: 13px;
  color: #86868b;
}

.image-upload-container:has(.image-upload-dropzone[style*="display: none"]) .image-preview-container {
  margin-top: 0;
}

.image-preview-item.uploading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-preview-item.uploading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 3px solid #d2d2d7;
  border-top-color: #0066FF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 1;
}

.image-preview-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #d2d2d7;
  overflow: hidden;
}
.image-preview-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #0066FF;
  width: var(--progress, 0%);
  transition: width 0.2s ease;
}

.image-preview-item.error {
  border-color: #ff3b30;
}
.image-preview-item.error .image-preview-img {
  opacity: 0.5;
}
.image-preview-item.error::after {
  content: "Upload failed";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .image-upload-dropzone {
    min-height: 160px;
    padding: 24px;
  }
  .image-upload-icon {
    width: 40px;
    height: 40px;
  }
  .image-upload-text-primary {
    font-size: 15px;
  }
  .image-upload-text-secondary {
    font-size: 13px;
  }
}
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.hero-minimal {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .hero-minimal {
    padding: 120px 0;
  }
}
.hero-minimal {
  background: #ffffff;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.hero-minimal h1 {
  font-size: 48px;
}
@media (min-width: 768px) {
  .hero-minimal h1 {
    font-size: 72px;
  }
}
.hero-minimal h1 {
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .hero-minimal h1 {
    font-size: 96px;
  }
}
.hero-minimal h1 .brand-name {
  font-size: 72px;
}
@media (min-width: 768px) {
  .hero-minimal h1 .brand-name {
    font-size: 96px;
  }
}
.hero-minimal h1 .brand-name {
  display: inline-block;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .hero-minimal h1 .brand-name {
    font-size: 120px;
  }
}
.hero-minimal h1 .hero-line {
  color: #1d1d1f;
}
.hero-minimal .hero-description {
  font-size: 21px;
  line-height: 1.4;
  color: #6e6e73;
  margin-bottom: 48px;
  max-width: 600px;
}
.hero-minimal .hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
.hero-minimal .hero-actions .btn-primary {
  padding: 14px 32px;
  background: #0066FF;
  color: #ffffff;
  border-radius: 100px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.hero-minimal .hero-actions .btn-primary:hover {
  background: rgb(0, 85.68, 214.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}
.hero-minimal .hero-actions .btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}
.hero-minimal .hero-actions .btn-text {
  font-size: 17px;
  color: #0066FF;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.hero-minimal .hero-actions .btn-text:hover {
  opacity: 0.7;
}

.intro-minimal {
  padding: 80px 0;
  background: #fbfbfd;
}
@media (min-width: 768px) {
  .intro-minimal {
    padding: 120px 0;
  }
}
.intro-minimal h2 {
  font-size: 48px;
}
@media (min-width: 768px) {
  .intro-minimal h2 {
    font-size: 64px;
  }
}
.intro-minimal h2 {
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 48px;
  color: #000000;
}
.intro-minimal .lead {
  font-size: 24px;
  line-height: 1.4;
  color: #1d1d1f;
  max-width: 700px;
}

.platforms-minimal {
  padding: 80px 0;
  background: #ffffff;
}
@media (min-width: 768px) {
  .platforms-minimal {
    padding: 120px 0;
  }
}
.platforms-minimal h2 {
  font-size: 48px;
}
@media (min-width: 768px) {
  .platforms-minimal h2 {
    font-size: 64px;
  }
}
.platforms-minimal h2 {
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 48px;
  color: #000000;
}

.platforms-header {
  margin-bottom: 48px;
}
.platforms-header h2 {
  font-size: 48px;
}
@media (min-width: 768px) {
  .platforms-header h2 {
    font-size: 64px;
  }
}
.platforms-header h2 {
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 48px;
  color: #000000;
}

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

.platform-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.platform-item:last-child {
  border-bottom: none;
}
.platform-item .platform-name {
  font-size: 21px;
}
@media (min-width: 768px) {
  .platform-item .platform-name {
    font-size: 24px;
  }
}
.platform-item .platform-name {
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.platform-item .platform-meta {
  font-size: 17px;
  color: #6e6e73;
  margin-left: auto;
  margin-right: 16px;
}
.platform-item .platform-arrow {
  font-size: 20px;
  color: #0066FF;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.platform-item.available {
  cursor: pointer;
}
.platform-item.available .platform-name {
  color: #000000;
}
.platform-item.available:hover {
  padding-left: 12px;
}
.platform-item.available:hover .platform-name {
  color: #0066FF;
}
.platform-item.available:hover .platform-arrow {
  opacity: 1;
  transform: translateX(0);
}
.platform-item.coming {
  cursor: default;
}
.platform-item.coming .platform-name {
  color: rgba(0, 0, 0, 0.3);
}
.platform-item.coming .platform-meta {
  color: rgba(0, 0, 0, 0.2);
  margin-right: 0;
}

.principles-minimal {
  padding: 80px 0;
  background: #fbfbfd;
}
@media (min-width: 768px) {
  .principles-minimal {
    padding: 120px 0;
  }
}
.principles-minimal h2 {
  font-size: 48px;
}
@media (min-width: 768px) {
  .principles-minimal h2 {
    font-size: 64px;
  }
}
.principles-minimal h2 {
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 48px;
  color: #000000;
  margin-bottom: 64px;
}

.principles-list {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .principles-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.principle h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #000000;
}
.principle p {
  font-size: 17px;
  line-height: 1.5;
  color: #6e6e73;
}

.how-minimal {
  padding: 80px 0;
  background: #ffffff;
}
@media (min-width: 768px) {
  .how-minimal {
    padding: 120px 0;
  }
}
.how-minimal h2 {
  font-size: 48px;
}
@media (min-width: 768px) {
  .how-minimal h2 {
    font-size: 64px;
  }
}
.how-minimal h2 {
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 48px;
  color: #000000;
  margin-bottom: 64px;
}

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: steps;
}
.steps-list li {
  counter-increment: steps;
  position: relative;
  padding: 24px 0 24px 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 24px;
  width: 40px;
  height: 40px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}
.steps-list li:last-child {
  border-bottom: none;
}
.steps-list li strong {
  display: block;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000000;
}
.steps-list li span {
  font-size: 17px;
  color: #6e6e73;
}

.stats-minimal {
  padding: 80px 0;
  background: #fbfbfd;
}
@media (min-width: 768px) {
  .stats-minimal {
    padding: 120px 0;
  }
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (min-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
.stats-row .stat {
  text-align: center;
}
.stats-row .stat .stat-number {
  display: block;
  font-size: 48px;
}
@media (min-width: 768px) {
  .stats-row .stat .stat-number {
    font-size: 56px;
  }
}
.stats-row .stat .stat-number {
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #000000;
  margin-bottom: 8px;
}
.stats-row .stat .stat-label {
  font-size: 17px;
  color: #6e6e73;
}

.cta-minimal {
  padding: 120px 0;
}
@media (min-width: 768px) {
  .cta-minimal {
    padding: 160px 0;
  }
}
.cta-minimal {
  background: #ffffff;
  text-align: center;
}
.cta-minimal h2 {
  font-size: 48px;
}
@media (min-width: 768px) {
  .cta-minimal h2 {
    font-size: 64px;
  }
}
.cta-minimal h2 {
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 48px;
  color: #000000;
  margin-bottom: 16px;
}
.cta-minimal p {
  font-size: 24px;
  color: #6e6e73;
  margin-bottom: 48px;
}
.cta-minimal .btn-primary {
  display: inline-block;
  padding: 16px 56px;
  background: #0066FF;
  color: #ffffff;
  border-radius: 100px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 500;
  transition: transform 0.2s ease;
}
.cta-minimal .btn-primary:hover {
  transition: transform 0.2s ease;
}
.cta-minimal .btn-primary:hover:hover {
  transform: scale(1.05);
}

.auth-body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
  background: #ffffff;
}

.auth-fullpage {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .auth-fullpage {
    flex-direction: column;
  }
}

.auth-brand-side {
  flex: 1;
  background: #0066FF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 64px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .auth-brand-side {
    padding: 48px;
  }
}
@media (max-width: 768px) {
  .auth-brand-side {
    display: none;
  }
}

.brand-content {
  max-width: 500px;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.brand-logo-large {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 48px;
}
.brand-logo-large .brand-text {
  font-family: "Modak", cursive;
  font-size: 48px;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.brand-headline {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  color: #ffffff;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
@media (max-width: 1200px) {
  .brand-headline {
    font-size: 48px;
  }
}

.brand-description {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 420px;
  margin: 0 auto;
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}
@media (max-width: 1200px) {
  .brand-description {
    font-size: 17px;
  }
}

.auth-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: #ffffff;
}
.floating-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}
.floating-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
  animation: float 25s infinite ease-in-out reverse;
}
.floating-shape.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  animation: float 30s infinite ease-in-out;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}
.auth-form-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #ffffff;
  padding: 48px;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .auth-form-side {
    width: 100%;
    padding: 20px;
  }
}

.auth-form-container {
  width: 100%;
  max-width: 420px;
  padding-top: 20px;
}
.auth-form-container.signup-container {
  max-width: 460px;
}

.auth-form-header {
  display: none;
  text-align: center;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@media (max-width: 768px) {
  .auth-form-header {
    display: block;
  }
}
.auth-form-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.auth-form-header p {
  font-size: 16px;
  color: #6e6e73;
  margin: 0;
}

.auth-form-fullpage {
  animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.auth-form-fullpage .form-group-fullpage {
  margin-bottom: 20px;
}
.auth-form-fullpage .form-group-fullpage label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.auth-form-fullpage .form-group-fullpage label .label-link {
  color: #0066FF;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  transition: opacity 0.2s ease;
}
.auth-form-fullpage .form-group-fullpage label .label-link:hover {
  opacity: 0.7;
}
.auth-form-fullpage .form-group-fullpage input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  transition: all 0.2s ease;
  background: #ffffff;
}
.auth-form-fullpage .form-group-fullpage input:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
.auth-form-fullpage .form-group-fullpage input::placeholder {
  color: #86868b;
}
.auth-form-fullpage .form-group-fullpage .input-hint {
  display: block;
  font-size: 13px;
  color: #6e6e73;
  margin-top: 6px;
  line-height: 1.4;
}
.auth-form-fullpage .form-row-fullpage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .auth-form-fullpage .form-row-fullpage {
    grid-template-columns: 1fr;
  }
}
.auth-form-fullpage .form-remember,
.auth-form-fullpage .form-agreements {
  margin-bottom: 24px;
}
.auth-form-fullpage .checkbox-fullpage {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  color: #1d1d1f;
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.auth-form-fullpage .checkbox-fullpage:last-child {
  margin-bottom: 0;
}
.auth-form-fullpage .checkbox-fullpage input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.auth-form-fullpage .checkbox-fullpage .checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 18px;
  width: 18px;
  background-color: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.auth-form-fullpage .checkbox-fullpage .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.auth-form-fullpage .checkbox-fullpage input:checked ~ .checkmark {
  background-color: #0066FF;
  border-color: #0066FF;
}
.auth-form-fullpage .checkbox-fullpage input:checked ~ .checkmark::after {
  display: block;
}
.auth-form-fullpage .checkbox-fullpage a {
  color: #0066FF;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.auth-form-fullpage .checkbox-fullpage a:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.auth-form-fullpage .btn-auth-primary {
  width: 100%;
  padding: 14px 32px;
  background: #0066FF;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.auth-form-fullpage .btn-auth-primary:hover {
  background: rgb(0, 85.68, 214.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}
.auth-form-fullpage .btn-auth-primary:active {
  transform: translateY(0);
}

.password-strength {
  margin-top: 8px;
}
.password-strength .strength-bar {
  width: 100%;
  height: 4px;
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}
.password-strength .strength-bar .strength-fill {
  height: 100%;
  width: 0;
  background: #cb68e9;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.password-strength .strength-text {
  font-size: 12px;
  color: #6e6e73;
}

.oauth-mobile-message {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 102, 255, 0.04) 100%);
  border: 1px solid rgba(0, 102, 255, 0.15);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  text-align: center;
  animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.oauth-mobile-message .oauth-mobile-logo {
  font-family: "Modak", cursive;
  font-size: 24px;
  color: #0066FF;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.oauth-mobile-message p {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.5;
  margin: 0;
}
.oauth-mobile-message p strong {
  color: #1d1d1f;
  font-weight: 600;
}
@media (min-width: 769px) {
  .oauth-mobile-message {
    display: none;
  }
}

.auth-message {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.auth-message.success {
  background: rgba(52, 199, 89, 0.1);
  color: #1e7e34;
  border: 1px solid rgba(52, 199, 89, 0.3);
}
.auth-message.error {
  background: rgba(255, 107, 107, 0.1);
  color: #c92a2a;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.validation-errors {
  padding: 12px 16px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 10px;
  margin-bottom: 24px;
  animation: fadeInDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.validation-errors ul {
  margin: 0;
  padding-left: 24px;
  color: #c92a2a;
  font-size: 14px;
}
.validation-errors ul li {
  margin-bottom: 4px;
}
.validation-errors ul li:last-child {
  margin-bottom: 0;
}

.auth-divider {
  text-align: center;
  margin: 24px 0;
  position: relative;
}
.auth-divider span {
  background: #ffffff;
  padding: 0 16px;
  color: #86868b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}
.auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #d2d2d7;
}

.social-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 640px) {
  .social-auth-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .social-auth-grid:has(.oauth-provider-btn:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .social-auth-grid:has(.oauth-provider-btn:nth-child(4)) {
    grid-template-columns: repeat(4, 1fr);
  }
}
.social-auth-grid .social-btn-fullpage {
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
}
.social-auth-grid .social-btn-fullpage svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.social-auth-grid .social-btn-fullpage img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
}
.social-auth-grid .social-btn-fullpage:hover {
  background: #f5f5f7;
  border-color: #86868b;
  transform: translateY(-1px);
}
.social-auth-grid .social-btn-fullpage.google:hover {
  border-color: #4285F4;
  background: rgba(66, 133, 244, 0.05);
}
.social-auth-grid .social-btn-fullpage.apple:hover {
  border-color: #000000;
  background: rgba(0, 0, 0, 0.05);
}
.social-auth-grid .oauth-provider-btn {
  position: relative;
  overflow: hidden;
}
.social-auth-grid .oauth-provider-btn .provider-icon-fontawesome {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: #1d1d1f;
  transition: color 0.2s ease;
}
.social-auth-grid .oauth-provider-btn .provider-icon-fallback {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--provider-color, #86868b);
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.social-auth-grid .oauth-provider-btn:hover {
  border-color: var(--provider-color, #86868b);
  background: color-mix(in srgb, var(--provider-color, #86868b) 5%, transparent);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--provider-color, #86868b) 15%, transparent);
}
.social-auth-grid .oauth-provider-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px color-mix(in srgb, var(--provider-color, #86868b) 10%, transparent);
}
.social-auth-grid .oauth-provider-btn.loading {
  pointer-events: none;
  opacity: 0.6;
}
.social-auth-grid .oauth-provider-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid var(--provider-color, #86868b);
  border-top-color: transparent;
  border-radius: 50%;
  animation: oauth-spinner 0.6s linear infinite;
}
.social-auth-grid .oauth-provider-btn.loading span,
.social-auth-grid .oauth-provider-btn.loading img,
.social-auth-grid .oauth-provider-btn.loading .provider-icon-fallback {
  opacity: 0;
}

@keyframes oauth-spinner {
  to {
    transform: rotate(360deg);
  }
}
.auth-form-footer {
  text-align: center;
  margin-top: 32px;
}
.auth-form-footer p {
  font-size: 14px;
  color: #6e6e73;
}
.auth-form-footer p a {
  color: #0066FF;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.auth-form-footer p a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.oauth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbfbfd;
  padding: 24px;
}
@media (max-width: 640px) {
  .oauth-container {
    padding: 16px;
  }
}

.oauth-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 440px;
  width: 100%;
  padding: 24px;
  animation: fadeInUp 0.4s cubic-bezier(0.32, 0, 0.67, 0) both;
}
@media (max-width: 640px) {
  .oauth-card {
    padding: 24px;
    border-radius: 12px;
  }
}

.oauth-branding {
  font-family: "Modak", cursive;
  font-size: 26px;
  color: #000000;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-decoration: none;
  display: block;
  transition: opacity 0.2s ease;
}
.oauth-branding:hover {
  opacity: 0.7;
}

.oauth-header {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.oauth-title {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
  letter-spacing: -0.01em;
}

.oauth-subtitle {
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.user-info-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}

.user-avatar-compact {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.user-avatar-fallback-compact {
  background: #0066FF;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
}

.user-name {
  color: #86868b;
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}
.user-name strong {
  color: #1d1d1f;
  font-weight: 600;
}

.app-info {
  text-align: center;
  padding: 16px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid #d2d2d7;
}

.app-name {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.app-description {
  color: #86868b;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.permissions-section {
  margin-bottom: 24px;
}

.permissions-title {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.permissions-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.permission-item {
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #d2d2d7;
}
.permission-item:first-child {
  padding-top: 0;
}
.permission-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.permission-icon {
  width: 16px;
  height: 16px;
  margin-right: 16px;
  margin-top: 2px;
  color: #6bcf7f;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.permission-text {
  color: #1d1d1f;
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
}

.oauth-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 640px) {
  .oauth-actions {
    flex-direction: column-reverse;
    gap: 8px;
  }
}

.oauth-button {
  flex: 1;
  padding: 10px 24px;
  border-radius: 100px;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1.4;
}
.oauth-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}
.oauth-button:active {
  transform: translateY(0);
}
@media (max-width: 640px) {
  .oauth-button {
    width: 100%;
  }
}

.oauth-button-allow {
  background: #0066FF;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.2);
}
.oauth-button-allow:hover {
  background: rgb(0, 85.68, 214.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.oauth-button-deny {
  background: #ffffff;
  color: #6e6e73;
  border: 1px solid #d2d2d7;
}
.oauth-button-deny:hover {
  background: #f5f5f7;
  border-color: #d4d4d4;
  color: #1d1d1f;
}
.oauth-button-deny:focus {
  box-shadow: 0 0 0 4px rgba(212, 212, 212, 0.2);
}

.security-note {
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #d2d2d7;
  font-size: 13px;
  color: #86868b;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .security-note {
    font-size: 11px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.oauth-card.loading {
  pointer-events: none;
  opacity: 0.6;
}
.oauth-card.loading .oauth-button {
  pointer-events: none;
}

.oauth-error {
  background: rgba(203, 104, 233, 0.1);
  border: 1px solid rgba(203, 104, 233, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 48px;
  font-size: 14px;
  color: rgb(164.3641618497, 29.8843930636, 205.1156069364);
  line-height: 1.5;
  animation: fadeInDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.oauth-error strong {
  font-weight: 600;
  color: rgb(146.5289017341, 26.6416184971, 182.8583815029);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 640px) {
  .oauth-container {
    align-items: flex-start;
    padding-top: 24px;
  }
  .oauth-title {
    font-size: 17px;
  }
  .app-name {
    font-size: 14px;
  }
}
@media (prefers-color-scheme: dark) {
  .oauth-container {
    background: rgb(16.675, 16.675, 17.825);
  }
  .oauth-card {
    background: #1d1d1f;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  }
  .oauth-branding {
    color: #ffffff;
  }
  .oauth-branding:hover {
    opacity: 0.7;
  }
  .oauth-title,
  .app-name,
  .permissions-title,
  .permission-text,
  .user-name strong {
    color: #ffffff;
  }
  .oauth-subtitle,
  .app-description,
  .user-name,
  .security-note {
    color: #d4d4d4;
  }
  .app-info {
    background: rgba(45, 45, 45, 0.5);
    border-color: rgba(110, 110, 115, 0.5);
  }
  .permission-item {
    border-bottom-color: rgba(110, 110, 115, 0.5);
  }
  .user-info {
    border-bottom-color: rgba(110, 110, 115, 0.5);
  }
  .oauth-button-deny {
    background: #2d2d2d;
    color: #d4d4d4;
    border-color: #6e6e73;
  }
  .oauth-button-deny:hover {
    background: #6e6e73;
    color: #ffffff;
  }
  .security-note {
    background: rgba(255, 217, 61, 0.15);
    border-color: rgba(255, 217, 61, 0.4);
  }
  .security-note strong {
    color: #ffffff;
  }
}
.account-page {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}
@media (max-width: 768px) {
  .account-page {
    padding-top: 80px;
    padding-bottom: 64px;
  }
}

.account-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .account-container {
    padding: 0 24px;
  }
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  padding: 48px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  animation: slideInFromTop 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }
}

.profile-avatar {
  position: relative;
  flex-shrink: 0;
}
.profile-avatar .avatar-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border: 3px solid #ffffff;
}
.profile-avatar .avatar-placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 102, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.profile-avatar .avatar-placeholder::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}
.profile-avatar .avatar-upload-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: 2px solid #0066FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}
.profile-avatar .avatar-upload-btn svg {
  stroke: #0066FF;
  width: 16px;
  height: 16px;
}
.profile-avatar .avatar-upload-btn:hover {
  transform: scale(1.1);
  background: #0066FF;
}
.profile-avatar .avatar-upload-btn:hover svg {
  stroke: #ffffff;
}

.profile-info {
  flex: 1;
}
.profile-info .profile-name {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 8px 0;
  letter-spacing: -0.03em;
}
.profile-info .profile-email {
  font-size: 17px;
  color: #86868b;
  margin: 0 0 24px 0;
}
.profile-info .profile-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .profile-info .profile-badges {
    justify-content: center;
  }
}

.account-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.account-badge svg {
  width: 14px;
  height: 14px;
}
.account-badge-admin {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.15) 100%);
  color: #c92a2a;
  border: 1px solid rgba(255, 107, 107, 0.2);
}
.account-badge-admin svg {
  stroke: #c92a2a;
}
.account-badge-moderator {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.15) 100%);
  color: #0066FF;
  border: 1px solid rgba(0, 102, 255, 0.2);
}
.account-badge-moderator svg {
  stroke: #0066FF;
}
.account-badge-regular {
  background: #f5f5f7;
  color: #6e6e73;
  border: 1px solid #d2d2d7;
}
.account-badge-verified {
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.1) 0%, rgba(52, 199, 89, 0.15) 100%);
  color: #1e7e34;
  border: 1px solid rgba(52, 199, 89, 0.2);
}
.account-badge-verified svg {
  stroke: #1e7e34;
}

.account-alert {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-radius: 12px;
  margin-bottom: 32px;
  animation: slideInFromTop 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.account-alert svg {
  flex-shrink: 0;
}
.account-alert-success {
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.1) 0%, rgba(52, 199, 89, 0.05) 100%);
  border: 1px solid rgba(52, 199, 89, 0.2);
  color: #1e7e34;
}
.account-alert-success svg {
  stroke: #1e7e34;
}
.account-alert-error {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
  border: 1px solid rgba(255, 107, 107, 0.2);
  color: #c92a2a;
}
.account-alert-error svg {
  stroke: #c92a2a;
}

.account-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  padding: 6px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  overflow-x: auto;
}
@media (max-width: 768px) {
  .account-tabs {
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #86868b;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.tab-button svg {
  stroke: #86868b;
  transition: stroke 0.2s ease;
}
.tab-button:hover {
  color: #1d1d1f;
  background: #fbfbfd;
}
.tab-button:hover svg {
  stroke: #1d1d1f;
}
.tab-button.active {
  background: #0066FF;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}
.tab-button.active svg {
  stroke: #ffffff;
}

.tab-content {
  animation: fadeIn 0.3s ease-in-out;
}

.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.account-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.account-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .account-card {
    padding: 32px;
  }
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d2d2d7;
}
.card-header h2 {
  font-size: 21px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
}
.card-header .card-action {
  font-size: 14px;
  color: #0066FF;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.card-header .card-action:hover {
  color: rgb(0, 81.6, 204);
  text-decoration: underline;
}

.account-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .account-details-grid {
    grid-template-columns: 1fr;
  }
}

.detail-item label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.detail-item .detail-value {
  font-size: 17px;
  color: #1d1d1f;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.detail-item .detail-value code.user-id {
  font-family: "SF Mono", "Monaco", "Courier New", monospace;
  font-size: 14px;
  background: #fbfbfd;
  padding: 4px 8px;
  border-radius: 6px;
  color: #6e6e73;
  word-break: break-all;
}
.detail-item .detail-value .copy-btn {
  padding: 4px;
  background: transparent;
  border: 1px solid #d2d2d7;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-item .detail-value .copy-btn svg {
  stroke: #86868b;
  width: 14px;
  height: 14px;
}
.detail-item .detail-value .copy-btn:hover {
  background: #fbfbfd;
  border-color: #86868b;
}
.detail-item .detail-value .copy-btn:hover svg {
  stroke: #1d1d1f;
}
.detail-item .detail-value .verify-email-btn {
  padding: 4px 12px;
  background: #0066FF;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.detail-item .detail-value .verify-email-btn:hover {
  background: rgb(0, 81.6, 204);
  transform: translateY(-1px);
}
.detail-item .detail-value .verify-email-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ecosystem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .ecosystem-stats {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: #fbfbfd;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon-platforms {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.2) 100%);
}
.stat-icon-platforms svg {
  stroke: #0066FF;
}
.stat-icon-community {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.2) 100%);
}
.stat-icon-community svg {
  stroke: #cb68e9;
}
.stat-icon-content {
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.1) 0%, rgba(52, 199, 89, 0.2) 100%);
}
.stat-icon-content svg {
  stroke: #1e7e34;
}

.stat-content .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 4px 0;
}
.stat-content .stat-label {
  font-size: 14px;
  color: #86868b;
  margin: 0;
}

.security-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.security-item {
  padding: 32px;
  background: #fbfbfd;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.security-item:hover {
  background: rgb(244.2, 244.2, 249.6);
}
.security-item .security-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.security-item .security-item-header h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
}
.security-item .security-description {
  font-size: 14px;
  color: #86868b;
  margin: 0;
}
.security-item .security-action {
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.security-item .security-action:hover {
  background: #fbfbfd;
  border-color: #86868b;
}
.security-item .security-action-primary {
  background: #0066FF;
  color: #ffffff;
  border: none;
}
.security-item .security-action-primary:hover {
  background: rgb(0, 81.6, 204);
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: #fbfbfd;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.activity-item:hover {
  background: rgb(244.2, 244.2, 249.6);
}

.activity-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.activity-icon-success {
  background: rgba(52, 199, 89, 0.1);
}
.activity-icon-success svg {
  stroke: #1e7e34;
}
.activity-icon-warning {
  background: rgba(255, 193, 7, 0.1);
}
.activity-icon-warning svg {
  stroke: #f39c12;
}

.activity-content {
  flex: 1;
}
.activity-content .activity-title {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px 0;
}
.activity-content .activity-meta {
  font-size: 13px;
  color: #86868b;
  margin: 0;
}

.activity-timeline {
  position: relative;
  padding-left: 32px;
}
.activity-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #d2d2d7;
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item .timeline-marker {
  position: absolute;
  left: -22px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border: 2px solid #0066FF;
  border-radius: 50%;
}
.timeline-item .timeline-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px 0;
}
.timeline-item .timeline-content p {
  font-size: 14px;
  color: #6e6e73;
  margin: 0 0 8px 0;
}
.timeline-item .timeline-content .timeline-date {
  font-size: 13px;
  color: #86868b;
}

.banner-upload-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.banner-upload-section .banner-preview {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
  background-color: #fbfbfd;
  border: 1px solid #d2d2d7;
}
@media (min-width: 768px) {
  .banner-upload-section .banner-preview {
    height: 240px;
  }
}
.banner-upload-section .banner-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(203, 104, 233, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #d2d2d7;
}
@media (min-width: 768px) {
  .banner-upload-section .banner-placeholder {
    height: 240px;
  }
}
.banner-upload-section .banner-placeholder p {
  font-size: 14px;
  color: #86868b;
  margin: 0;
}
.banner-upload-section .btn-secondary {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.banner-upload-section .btn-secondary svg {
  stroke: currentColor;
}
.banner-upload-section .form-help {
  font-size: 13px;
  color: #86868b;
  margin: 0;
}

.settings-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: #fbfbfd;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.setting-item:hover {
  background: rgb(244.2, 244.2, 249.6);
}
.setting-item .setting-info {
  flex: 1;
}
.setting-item .setting-info h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px 0;
}
.setting-item .setting-info p {
  font-size: 14px;
  color: #86868b;
  margin: 0;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch input:checked + .toggle-slider {
  background-color: #0066FF;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}
.toggle-switch input:focus + .toggle-slider {
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
}
.toggle-switch .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d4d4d4;
  transition: all 0.2s ease;
  border-radius: 100px;
}
.toggle-switch .toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  transition: all 0.2s ease;
  border-radius: 50%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.danger-zone {
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 107, 107, 0.02) 100%);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 12px;
}

.danger-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.danger-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 107, 107, 0.1);
}
.danger-item .danger-info h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px 0;
}
.danger-item .danger-info p {
  font-size: 14px;
  color: #86868b;
  margin: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #0066FF;
  border: none;
  border-radius: 100px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background: rgb(0, 81.6, 204);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-secondary:hover {
  background: #fbfbfd;
  border-color: #86868b;
  transform: translateY(-1px);
}

.btn-danger {
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #c92a2a;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-danger:hover {
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.5);
  transform: translateY(-1px);
}

.password-form {
  max-width: 480px;
}
.password-form .form-group {
  margin-bottom: 32px;
}
.password-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
}
.password-form .form-group input[type=password] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 17px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  transition: all 0.2s ease;
  background: #ffffff;
}
.password-form .form-group input[type=password]:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}
.password-form .form-group .form-help {
  font-size: 13px;
  color: #86868b;
  margin-top: 6px;
}
.password-form .form-error {
  color: #c92a2a;
  font-size: 14px;
  margin-bottom: 24px;
  padding: 12px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 10px;
  display: none;
}
.password-form .form-error:not(:empty) {
  display: block;
}
.password-form .form-success {
  color: #1e7e34;
  font-size: 14px;
  margin-bottom: 24px;
  padding: 12px;
  background: rgba(52, 199, 89, 0.1);
  border-radius: 10px;
  display: none;
}
.password-form .form-success:not(:empty) {
  display: block;
}

.verification-notice {
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.02) 100%);
  border-radius: 12px;
  text-align: center;
}
.verification-notice p {
  font-size: 17px;
  color: #6e6e73;
  margin-bottom: 0;
}
.verification-notice .btn-primary svg {
  vertical-align: middle;
}

.signout-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .signout-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

.signout-info {
  flex: 1;
}
.signout-info h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px 0;
}
.signout-info p {
  font-size: 14px;
  color: #6e6e73;
  margin: 0;
}

.btn-signout {
  padding: 12px 32px;
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-signout:hover {
  background: #fbfbfd;
  border-color: #86868b;
  transform: translateY(-1px);
}
.btn-signout:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .btn-signout {
    width: 100%;
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}
.profile-page {
  padding-top: 48px;
  min-height: 100vh;
  background-color: #fbfbfd;
}

.profile-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 32px;
  margin-bottom: 48px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .profile-container {
    margin: 0;
    border-radius: 0;
  }
}

.profile-banner {
  width: 100%;
  height: 300px;
  position: relative;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(203, 104, 233, 0.1));
}
@media (max-width: 640px) {
  .profile-banner {
    height: 200px;
  }
}
.profile-banner .banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-banner .banner-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(203, 104, 233, 0.05));
}

.profile-header-section {
  padding: 0 48px 48px;
  margin-top: -80px;
  position: relative;
}
@media (max-width: 640px) {
  .profile-header-section {
    padding: 0 24px 32px;
    margin-top: -60px;
  }
}

.profile-avatar-large {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 5px solid #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  background-color: #ffffff;
}
@media (max-width: 640px) {
  .profile-avatar-large {
    width: 120px;
    height: 120px;
    border-width: 4px;
  }
}
.profile-avatar-large .avatar-image-large {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.profile-avatar-large .avatar-placeholder-large {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066FF, #cb68e9);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .profile-avatar-large .avatar-placeholder-large {
    font-size: 36px;
  }
}

.profile-identity .profile-display-name {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 8px 0;
  letter-spacing: -0.03em;
}
@media (max-width: 640px) {
  .profile-identity .profile-display-name {
    font-size: 28px;
  }
}
.profile-identity .profile-username {
  font-size: 18px;
  color: #6e6e73;
  margin: 0 0 24px 0;
}
.profile-identity .profile-bio {
  font-size: 16px;
  color: #1d1d1f;
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 600px;
}

.profile-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.profile-metadata .metadata-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6e6e73;
  font-size: 14px;
}
.profile-metadata .metadata-item svg {
  width: 16px;
  height: 16px;
  stroke: #86868b;
}
.profile-metadata .metadata-item a {
  color: #0066FF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.profile-metadata .metadata-item a:hover {
  color: rgb(0, 81.6, 204);
  text-decoration: underline;
}

.profile-badges-section {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.profile-badges-section .profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}
.profile-badges-section .profile-badge svg {
  width: 14px;
  height: 14px;
}
.profile-badges-section .profile-badge.badge-admin {
  background-color: rgba(203, 104, 233, 0.1);
  color: #cb68e9;
}
.profile-badges-section .profile-badge.badge-admin svg {
  stroke: #cb68e9;
}
.profile-badges-section .profile-badge.badge-moderator {
  background-color: rgba(0, 102, 255, 0.1);
  color: #0066FF;
}
.profile-badges-section .profile-badge.badge-moderator svg {
  stroke: #0066FF;
}
.profile-badges-section .profile-badge.badge-verified {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.profile-badges-section .profile-badge.badge-verified svg {
  stroke: #10b981;
}

.profile-section {
  padding: 48px;
  border-top: 1px solid #d2d2d7;
}
@media (max-width: 640px) {
  .profile-section {
    padding: 32px 24px;
  }
}
.profile-section .section-title {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 32px 0;
  letter-spacing: -0.03em;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}
@media (max-width: 640px) {
  .social-links-grid {
    grid-template-columns: 1fr;
  }
}
.social-links-grid .social-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background-color: #fbfbfd;
  border-radius: 10px;
  text-decoration: none;
  color: #1d1d1f;
  transition: all 0.2s ease;
  font-weight: 500;
}
.social-links-grid .social-link svg {
  width: 20px;
  height: 20px;
  stroke: #6e6e73;
  transition: stroke 0.2s ease;
}
.social-links-grid .social-link:hover {
  background-color: #f5f5f7;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.social-links-grid .social-link:hover svg {
  stroke: #0066FF;
}

.custom-links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.custom-links-list .custom-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  text-decoration: none;
  color: #1d1d1f;
  transition: all 0.2s ease;
  font-weight: 500;
  position: relative;
}
.custom-links-list .custom-link-item svg {
  width: 18px;
  height: 18px;
  stroke: #6e6e73;
  flex-shrink: 0;
}
.custom-links-list .custom-link-item .external-icon {
  width: 16px;
  height: 16px;
  margin-left: auto;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.custom-links-list .custom-link-item:hover {
  background-color: #fbfbfd;
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateX(4px);
}
.custom-links-list .custom-link-item:hover .external-icon {
  opacity: 1;
}

/**
 * Feedback System Styles
 *
 * Styles for user feedback submission and admin management pages
 */
.feedback-page,
.admin-feedback-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}
@media (min-width: 768px) {
  .feedback-page,
  .admin-feedback-page {
    padding: 120px 48px;
  }
}

.feedback-header,
.admin-feedback-header {
  margin-bottom: 48px;
  text-align: center;
}
.feedback-header h1,
.admin-feedback-header h1 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .feedback-header h1,
  .admin-feedback-header h1 {
    font-size: 64px;
  }
}
.feedback-header p,
.admin-feedback-header p {
  font-size: 17px;
  color: #6e6e73;
  line-height: 1.5;
}

.feedback-form-container {
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
}
.feedback-form-container h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 24px;
}

.feedback-form .form-group {
  margin-bottom: 24px;
}
.feedback-form .form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
}
.feedback-form .form-select,
.feedback-form .form-textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 17px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feedback-form .form-select:focus,
.feedback-form .form-textarea:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}
.feedback-form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236e6e73' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}
.feedback-form .form-textarea {
  resize: vertical;
  min-height: 120px;
}
.feedback-form .form-hint {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 14px;
  color: #86868b;
}

.feedback-message {
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 15px;
}
.feedback-message.success {
  background: rgba(52, 199, 89, 0.1);
  color: #34c759;
  border: 1px solid rgba(52, 199, 89, 0.2);
}
.feedback-message.error {
  background: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
  border: 1px solid rgba(255, 59, 48, 0.2);
}
.feedback-message.warning {
  background: rgba(255, 159, 10, 0.1);
  color: #ff9f0a;
  border: 1px solid rgba(255, 159, 10, 0.2);
}

.btn-primary,
.btn-secondary,
.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover,
.btn-secondary:hover,
.btn-danger:hover {
  transform: translateY(-2px);
}
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-danger:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: #0066FF;
  color: #ffffff;
}
.btn-primary:hover:not(:disabled) {
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn-secondary {
  background: #f5f5f7;
  color: #1d1d1f;
}
.btn-secondary:hover:not(:disabled) {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-danger {
  background: #ff3b30;
  color: #ffffff;
}
.btn-danger:hover:not(:disabled) {
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
}

.btn-loader,
.feedback-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.feedback-list-container h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 24px;
}

.feedback-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feedback-loading,
.feedback-empty,
.feedback-error {
  text-align: center;
  padding: 48px 24px;
  color: #6e6e73;
  font-size: 15px;
}

.feedback-loading {
  flex-direction: column;
  gap: 16px;
}
.feedback-loading .spinner {
  width: 32px;
  height: 32px;
  margin: 0 auto;
}

.feedback-item {
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.feedback-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feedback-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.feedback-tag,
.feedback-state {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.feedback-tag.tag-bug {
  background: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
}
.feedback-tag.tag-feature_idea {
  background: rgba(0, 122, 255, 0.1);
  color: #007aff;
}
.feedback-tag.tag-localization_error {
  background: rgba(255, 149, 0, 0.1);
  color: #ff9500;
}

.feedback-state.state-not_seen {
  background: rgba(142, 142, 147, 0.1);
  color: #8e8e93;
}
.feedback-state.state-todo {
  background: rgba(255, 204, 0, 0.1);
  color: #ffcc00;
}
.feedback-state.state-doing {
  background: rgba(0, 122, 255, 0.1);
  color: #007aff;
}
.feedback-state.state-planned {
  background: rgba(88, 86, 214, 0.1);
  color: #5856d6;
}
.feedback-state.state-done {
  background: rgba(52, 199, 89, 0.1);
  color: #34c759;
}
.feedback-state.state-rejected {
  background: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
}

.feedback-item-description {
  font-size: 15px;
  color: #1d1d1f;
  line-height: 1.5;
  margin-bottom: 16px;
  white-space: pre-wrap;
}

.feedback-item-footer {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #86868b;
  flex-wrap: wrap;
}

.feedback-admin-notes {
  margin-top: 16px;
  padding: 16px;
  background: #fbfbfd;
  border-radius: 8px;
  font-size: 14px;
  color: #6e6e73;
}
.feedback-admin-notes strong {
  color: #1d1d1f;
}

.feedback-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.stat-card .stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #0066FF;
  margin-bottom: 8px;
}
.stat-card .stat-label {
  font-size: 14px;
  color: #6e6e73;
  font-weight: 600;
}

.feedback-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.feedback-filters select {
  flex: 1;
  min-width: 200px;
}
.feedback-filters button {
  white-space: nowrap;
}

.admin-feedback-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-feedback-item {
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  padding: 24px;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.admin-feedback-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

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

.feedback-user strong {
  display: block;
  font-size: 16px;
  color: #1d1d1f;
  margin-bottom: 4px;
}

.feedback-email {
  font-size: 14px;
  color: #86868b;
}

.feedback-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-feedback-description {
  font-size: 15px;
  color: #1d1d1f;
  line-height: 1.5;
  margin-bottom: 16px;
  white-space: pre-wrap;
}

.admin-feedback-footer {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #86868b;
  flex-wrap: wrap;
}

.admin-notes {
  margin-top: 16px;
  padding: 16px;
  background: #fbfbfd;
  border-radius: 8px;
  font-size: 14px;
  color: #6e6e73;
}
.admin-notes strong {
  color: #1d1d1f;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #d2d2d7;
}
.modal-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #86868b;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
  background: #f5f5f7;
  color: #1d1d1f;
}

.modal-body {
  padding: 24px;
}

.modal-info {
  padding: 12px;
  background: #fbfbfd;
  border-radius: 8px;
  font-size: 15px;
  color: #1d1d1f;
}

.modal-footer {
  display: flex;
  gap: 12px;
  padding: 24px;
  border-top: 1px solid #d2d2d7;
  flex-wrap: wrap;
}
.modal-footer button {
  flex: 1;
  min-width: 150px;
}

.admin-container {
  display: flex;
  min-height: calc(100vh - 48px);
  background: #fbfbfd;
}

.admin-sidebar {
  position: fixed;
  top: 48px;
  left: 0;
  width: 240px;
  height: calc(100vh - 48px);
  background: #fbfbfd;
  border-right: 1px solid #d2d2d7;
  padding: 24px;
  overflow-y: auto;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}
.admin-sidebar::-webkit-scrollbar {
  width: 6px;
}
.admin-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.admin-sidebar::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 100px;
}
.admin-sidebar::-webkit-scrollbar-thumb:hover {
  background: #ababab;
}
@media (min-width: 1024px) {
  .admin-sidebar {
    transform: translateX(0);
  }
}
.admin-sidebar.admin-sidebar--open {
  transform: translateX(0);
}

.admin-sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 24px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.admin-sidebar-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #0066FF;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

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

.admin-sidebar-user-name {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-sidebar-user-role {
  font-size: 11px;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.admin-sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #6e6e73;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}
.admin-sidebar-item:hover {
  background: #ffffff;
  color: #1d1d1f;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.admin-sidebar-item:focus-visible {
  outline: 2px solid #0066FF;
  outline-offset: -2px;
  background: #ffffff;
}
.admin-sidebar-item.admin-sidebar-item--active {
  background: #0066FF;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.admin-sidebar-item.admin-sidebar-item--active .admin-sidebar-icon svg {
  color: #ffffff;
}
.admin-sidebar-item.admin-sidebar-item--active:hover {
  background: rgb(0, 91.8, 229.5);
}

.admin-sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.admin-sidebar-icon svg {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.admin-sidebar-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-sidebar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 700;
  background: #cb68e9;
  color: #ffffff;
  border-radius: 100px;
  flex-shrink: 0;
}

.admin-sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-sidebar-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #6e6e73;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
}
.admin-sidebar-section-header:hover {
  background: #ffffff;
  color: #1d1d1f;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.admin-sidebar-section-header:focus-visible {
  outline: 2px solid #0066FF;
  outline-offset: -2px;
}
.admin-sidebar-section-header[aria-expanded=true] .admin-sidebar-arrow svg {
  transform: rotate(90deg);
}

.admin-sidebar-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
}
.admin-sidebar-arrow svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.admin-sidebar-section-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 28px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
.admin-sidebar-section[aria-expanded=true] .admin-sidebar-section-items, .admin-sidebar-section-header[aria-expanded=true] + .admin-sidebar-section-items {
  max-height: 500px;
  opacity: 1;
  margin-top: 2px;
}

.admin-sidebar-subitem {
  display: block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #86868b;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}
.admin-sidebar-subitem::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #d4d4d4;
  border-radius: 50%;
}
.admin-sidebar-subitem:hover {
  background: #ffffff;
  color: #1d1d1f;
  padding-left: 20px;
}
.admin-sidebar-subitem:focus-visible {
  outline: 2px solid #0066FF;
  outline-offset: -2px;
}
.admin-sidebar-subitem.admin-sidebar-subitem--active {
  color: #0066FF;
  font-weight: 600;
  background: rgba(0, 102, 255, 0.08);
}
.admin-sidebar-subitem.admin-sidebar-subitem--active::before {
  background: #0066FF;
}
.admin-sidebar-subitem.admin-sidebar-subitem--active:hover {
  background: rgba(0, 102, 255, 0.12);
}

.admin-sidebar-divider {
  height: 1px;
  background: #d2d2d7;
  margin: 10px 0;
}

.admin-sidebar-section-label {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 8px;
}

.admin-sidebar-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #d2d2d7;
  font-size: 13px;
  color: #86868b;
}

.admin-sidebar-hint-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #6e6e73;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.admin-sidebar-hint-text {
  font-weight: 500;
}

.admin-menu-toggle {
  position: fixed;
  top: calc(48px + 16px);
  left: 24px;
  z-index: 999;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}
.admin-menu-toggle:hover {
  background: #fbfbfd;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}
@media (min-width: 1024px) {
  .admin-menu-toggle {
    display: none;
  }
}
.admin-menu-toggle svg {
  width: 24px;
  height: 24px;
  color: #1d1d1f;
}

.admin-sidebar-overlay {
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin-sidebar-overlay.admin-sidebar-overlay--active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  .admin-sidebar-overlay {
    display: none;
  }
}

.admin-content {
  flex: 1;
  padding: 48px 24px;
  max-width: 100%;
  width: 100%;
  min-height: 100vh;
}
@media (min-width: 640px) {
  .admin-content {
    padding: 48px;
  }
}
@media (min-width: 768px) {
  .admin-content {
    padding: 64px 48px;
  }
}
@media (min-width: 1024px) {
  .admin-content {
    margin-left: 240px;
    max-width: calc(100% - 240px);
  }
}

.admin-header {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .admin-header {
    margin-bottom: 64px;
  }
}

.admin-header__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .admin-header__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.admin-header__title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  .admin-header__title {
    font-size: 48px;
  }
}

.admin-header__subtitle {
  font-size: 17px;
  color: #6e6e73;
  margin-top: 8px;
  line-height: 1.5;
}

.admin-grid {
  display: grid;
  gap: 48px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .admin-grid {
    gap: 64px;
    margin-top: 64px;
  }
}

@media (min-width: 768px) {
  .admin-grid--two-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .admin-grid--three-column {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .admin-grid--three-column {
    grid-template-columns: repeat(3, 1fr);
  }
}

.admin-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
}

.admin-breadcrumb__link {
  color: #0066FF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.admin-breadcrumb__link:hover {
  color: rgb(0, 81.6, 204);
}

.admin-breadcrumb__separator {
  color: #86868b;
}

.admin-breadcrumb__current {
  color: #1d1d1f;
  font-weight: 500;
}

.admin-filters {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #d2d2d7;
}
@media (min-width: 768px) {
  .admin-filters {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}

.admin-filters__search {
  flex: 1;
}

.admin-filters__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
}

.admin-filters__row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
  width: 100%;
}

.admin-filters--extended {
  gap: 32px;
}

.admin-filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
@media (min-width: 640px) {
  .admin-filter-group {
    min-width: 180px;
  }
}

.admin-filter-group--full {
  flex: 1 1 100%;
  min-width: 100%;
}

.admin-filter-label {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
}

.admin-search-input {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 17px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  background: #ffffff;
  transition: all 0.2s ease;
}
.admin-search-input:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}
.admin-search-input::placeholder {
  color: #86868b;
}
.admin-search-input {
  padding: 20px 24px;
  font-size: 17px;
}

.admin-select {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 17px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  background: #ffffff;
  transition: all 0.2s ease;
}
.admin-select:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}
.admin-select::placeholder {
  color: #86868b;
}
.admin-select {
  padding: 20px 24px;
  font-size: 17px;
  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='%236e6e73' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 32px;
}

.admin-input, .admin-select, .admin-textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 17px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  background: #ffffff;
  transition: all 0.2s ease;
}
.admin-input:focus, .admin-select:focus, .admin-textarea:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}
.admin-input::placeholder, .admin-select::placeholder, .admin-textarea::placeholder {
  color: #86868b;
}
.admin-input, .admin-select, .admin-textarea {
  padding: 20px 24px;
  font-size: 17px;
}

.admin-input--number {
  max-width: 120px;
}

.admin-textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 17px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  background: #ffffff;
  transition: all 0.2s ease;
}
.admin-textarea:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}
.admin-textarea::placeholder {
  color: #86868b;
}
.admin-textarea {
  padding: 20px 24px;
  font-size: 17px;
  min-height: 100px;
  resize: vertical;
}

.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-form-label {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
}

.admin-divider {
  height: 1px;
  background: #d2d2d7;
  margin: 48px 0;
}

.admin-detail-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #d2d2d7;
}
.admin-detail-item:last-child {
  border-bottom: none;
}

.admin-detail-item__label {
  font-size: 14px;
  font-weight: 600;
  color: #6e6e73;
}

.admin-detail-item__value {
  font-size: 17px;
  color: #1d1d1f;
  text-align: right;
}

.admin-badge {
  display: inline-block;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-badge.admin-badge--role {
  background: #f5f5f7;
  color: #1d1d1f;
}
.admin-badge.admin-badge--admin {
  background: rgba(147, 51, 234, 0.1);
  color: #7c3aed;
}
.admin-badge.admin-badge--moderator {
  background: rgba(0, 102, 255, 0.1);
  color: rgb(0, 81.6, 204);
}
.admin-badge.admin-badge--regular {
  background: #f5f5f7;
  color: #1d1d1f;
}
.admin-badge.admin-badge--banned {
  background: rgba(203, 104, 233, 0.1);
  color: rgb(187.6705202312, 59.4855491329, 226.5144508671);
}
.admin-badge.admin-badge--verified {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}
.admin-badge.admin-badge--unverified {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.admin-tabs {
  display: flex;
  gap: 16px;
  border-bottom: 2px solid #d2d2d7;
  margin-bottom: 48px;
}

.admin-tab {
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 500;
  color: #6e6e73;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.admin-tab:hover {
  color: #1d1d1f;
}
.admin-tab.admin-tab--active {
  color: #0066FF;
  border-bottom-color: #0066FF;
  font-weight: 600;
}

.admin-tab-content {
  display: none;
}
.admin-tab-content.admin-tab-content--active {
  display: block;
}

.admin-action-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-time-range {
  display: flex;
  gap: 8px;
  background: #f5f5f7;
  padding: 4px;
  border-radius: 8px;
}

.admin-time-btn {
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #6e6e73;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.admin-time-btn:hover {
  background: #ffffff;
  color: #1d1d1f;
}
.admin-time-btn.admin-time-btn--active {
  background: #ffffff;
  color: #0066FF;
  font-weight: 600;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-list__loading {
  padding: 48px;
  text-align: center;
  color: #86868b;
  font-size: 14px;
}

.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.5;
  background: #f5f5f7;
  color: #1d1d1f;
}
.btn-secondary:hover {
  background: #d2d2d7;
  transform: translateY(-2px);
}

.btn-danger {
  display: inline-block;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.5;
  background: #cb68e9;
  color: #ffffff;
}
.btn-danger:hover {
  background: rgb(190.736416185, 68.3884393064, 227.8115606936);
  transform: translateY(-2px);
}

.admin-settings-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .admin-settings-grid {
    gap: 64px;
  }
}

.admin-setting-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #d2d2d7;
}
@media (min-width: 768px) {
  .admin-setting-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.admin-setting-item:last-child {
  border-bottom: none;
}

.admin-setting-item__info {
  flex: 1;
}

.admin-setting-item__label {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 4px;
}

.admin-setting-item__description {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.5;
}

.admin-setting-item__control {
  flex-shrink: 0;
}

.admin-toggle {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}
.admin-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.admin-toggle input:checked + .admin-toggle__slider {
  background: #0066FF;
}
.admin-toggle input:checked + .admin-toggle__slider::before {
  transform: translateX(24px);
}
.admin-toggle input:focus + .admin-toggle__slider {
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}

.admin-toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d4d4d4;
  border-radius: 100px;
  transition: all 0.2s ease;
}
.admin-toggle__slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.admin-card--danger {
  border: 2px solid #cb68e9;
  background: rgba(203, 104, 233, 0.02);
}

.admin-danger-actions {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.admin-danger-action {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .admin-danger-action {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.admin-danger-action__info {
  flex: 1;
}

.admin-danger-action__label {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 4px;
}

.admin-danger-action__description {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.5;
}

.keyboard-shortcuts-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.keyboard-shortcuts-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.keyboard-shortcuts-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 600px;
  width: calc(100% - 64px);
  max-height: calc(100vh - 64px);
  overflow: auto;
}

.keyboard-shortcuts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
  border-bottom: 1px solid #d2d2d7;
}
.keyboard-shortcuts-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
}

.keyboard-shortcuts-close {
  background: transparent;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #86868b;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.keyboard-shortcuts-close:hover {
  background: #f5f5f7;
  color: #1d1d1f;
}
.keyboard-shortcuts-close:focus-visible {
  outline: 2px solid #0066FF;
  outline-offset: 2px;
}

.keyboard-shortcuts-body {
  padding: 48px;
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .keyboard-shortcuts-body {
    grid-template-columns: repeat(2, 1fr);
  }
}

.keyboard-shortcuts-section h4 {
  font-size: 14px;
  font-weight: 700;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 24px 0;
}

.keyboard-shortcut {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.keyboard-shortcut kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  background: #f5f5f7;
  border: 1px solid #d2d2d7;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  color: #1d1d1f;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-right: 4px;
}
.keyboard-shortcut span {
  flex: 1;
  text-align: right;
  font-size: 14px;
  color: #6e6e73;
  margin-left: 24px;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .admin-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
  }
}
@media (min-width: 1024px) {
  .admin-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.admin-stat-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.2s ease;
}
.admin-stat-card:hover {
  border-color: #0066FF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.admin-stat-card__icon {
  font-size: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbfbfd;
  border-radius: 8px;
  flex-shrink: 0;
}

.admin-stat-card__content {
  flex: 1;
  min-width: 0;
}

.admin-stat-card__label {
  font-size: 14px;
  font-weight: 500;
  color: #6e6e73;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-stat-card__value {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.1;
  margin: 0;
}

.admin-stat-card__change {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 6px;
  background: #f5f5f7;
  color: #6e6e73;
}
.admin-stat-card__change.admin-stat-card__change--positive {
  background: rgba(107, 207, 127, 0.1);
  color: rgb(58.1632653061, 179.3367346939, 82.3979591837);
}
.admin-stat-card__change.admin-stat-card__change--positive::before {
  content: "↑ ";
}
.admin-stat-card__change.admin-stat-card__change--negative {
  background: rgba(203, 104, 233, 0.1);
  color: rgb(180.0057803468, 37.2283236994, 223.2716763006);
}
.admin-stat-card__change.admin-stat-card__change--negative::before {
  content: "↓ ";
}

.admin-chart-container {
  position: relative;
  width: 100%;
  height: 300px;
  padding: 24px 0;
}
@media (min-width: 768px) {
  .admin-chart-container {
    height: 350px;
  }
}
.admin-chart-container canvas {
  max-width: 100%;
  max-height: 100%;
}

.admin-chart-container--doughnut {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .admin-chart-container--doughnut {
    height: 320px;
  }
}

.admin-table-info {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #d2d2d7;
}

.admin-table-info__text {
  font-size: 14px;
  color: #6e6e73;
  text-align: center;
  margin: 0;
}

.admin-table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  border: 1px solid #d2d2d7;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #ffffff;
}
@media (min-width: 768px) {
  .admin-table {
    font-size: 17px;
  }
}
.admin-table thead {
  background: #fbfbfd;
  border-bottom: 2px solid #d2d2d7;
}
.admin-table th {
  padding: 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  white-space: nowrap;
  user-select: none;
}
@media (min-width: 768px) {
  .admin-table th {
    padding: 28px 32px;
    font-size: 17px;
  }
}
.admin-table th[data-sortable=true] {
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
}
.admin-table th[data-sortable=true]:hover {
  background: #f5f5f7;
}
.admin-table tbody tr {
  border-bottom: 1px solid #d2d2d7;
  transition: background 0.2s ease;
}
.admin-table tbody tr:last-child {
  border-bottom: none;
}
.admin-table tbody tr:hover {
  background: #fbfbfd;
}
.admin-table td {
  padding: 24px;
  color: #1d1d1f;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .admin-table td {
    padding: 28px 32px;
  }
}

.admin-table__loading {
  text-align: center;
  padding: 64px !important;
  color: #86868b;
  font-style: italic;
}

.admin-table__sort-icon {
  display: inline-block;
  margin-left: 4px;
  width: 12px;
  height: 12px;
  position: relative;
}
.admin-table__sort-icon::before, .admin-table__sort-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.admin-table__sort-icon::before {
  top: -2px;
  border-bottom: 5px solid #ababab;
}
.admin-table__sort-icon::after {
  bottom: -2px;
  border-top: 5px solid #ababab;
}
[data-sort-direction=asc] .admin-table__sort-icon::before {
  border-bottom-color: #0066FF;
}
[data-sort-direction=desc] .admin-table__sort-icon::after {
  border-top-color: #0066FF;
}

.admin-table__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-table__action-btn {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #d2d2d7;
  background: #ffffff;
  color: #1d1d1f;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.admin-table__action-btn:hover {
  border-color: #0066FF;
  color: #0066FF;
  background: rgba(0, 102, 255, 0.05);
}
.admin-table__action-btn.admin-table__action-btn--danger {
  border-color: #cb68e9;
  color: #cb68e9;
}
.admin-table__action-btn.admin-table__action-btn--danger:hover {
  background: #cb68e9;
  color: #ffffff;
}
.admin-table__action-btn.admin-table__action-btn--primary {
  background: #0066FF;
  border-color: #0066FF;
  color: #ffffff;
}
.admin-table__action-btn.admin-table__action-btn--primary:hover {
  background: rgb(0, 85.68, 214.2);
}

.admin-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .admin-pagination {
    margin-top: 48px;
  }
}

.admin-pagination__btn {
  min-width: 40px;
  height: 40px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #d2d2d7;
  background: #ffffff;
  color: #1d1d1f;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-pagination__btn:hover:not(:disabled) {
  border-color: #0066FF;
  color: #0066FF;
  background: rgba(0, 102, 255, 0.05);
}
.admin-pagination__btn.admin-pagination__btn--active {
  background: #0066FF;
  border-color: #0066FF;
  color: #ffffff;
  font-weight: 600;
}
.admin-pagination__btn.admin-pagination__btn--active:hover {
  background: rgb(0, 85.68, 214.2);
}
.admin-pagination__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.admin-pagination__info {
  padding: 8px 16px;
  font-size: 14px;
  color: #6e6e73;
}

.admin-table-badge {
  display: inline-block;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.admin-table-badge.admin-table-badge--admin {
  background: rgba(167, 139, 250, 0.1);
  color: rgb(92.8181818182, 41.2148760331, 245.7851239669);
}
.admin-table-badge.admin-table-badge--moderator {
  background: rgba(0, 102, 255, 0.1);
  color: rgb(0, 81.6, 204);
}
.admin-table-badge.admin-table-badge--regular {
  background: #f5f5f7;
  color: #1d1d1f;
}
.admin-table-badge.admin-table-badge--banned {
  background: rgba(203, 104, 233, 0.1);
  color: rgb(187.6705202312, 59.4855491329, 226.5144508671);
}
.admin-table-badge.admin-table-badge--verified {
  background: rgba(107, 207, 127, 0.1);
  color: rgb(51.9183673469, 160.0816326531, 73.5510204082);
}
.admin-table-badge.admin-table-badge--unverified {
  background: rgba(251, 146, 60, 0.1);
  color: rgb(204.7989949749, 94.5226130653, 4.2010050251);
}
.admin-table-badge.admin-table-badge--success {
  background: rgba(107, 207, 127, 0.1);
  color: rgb(51.9183673469, 160.0816326531, 73.5510204082);
}
.admin-table-badge.admin-table-badge--failed {
  background: rgba(203, 104, 233, 0.1);
  color: rgb(187.6705202312, 59.4855491329, 226.5144508671);
}
.admin-table-badge.admin-table-badge--warning {
  background: rgba(251, 146, 60, 0.1);
  color: rgb(204.7989949749, 94.5226130653, 4.2010050251);
}

@media (max-width: 768px) {
  .admin-table--logs th:nth-child(5), .admin-table--logs th:nth-child(6),
  .admin-table--logs td:nth-child(5),
  .admin-table--logs td:nth-child(6) {
    display: none;
  }
}
.admin-table__empty {
  text-align: center;
  padding: 64px;
  color: #86868b;
}
.admin-table__empty p {
  margin: 24px 0;
  font-size: 17px;
}

.admin-table__empty-icon {
  font-size: 56px;
  opacity: 0.3;
}

.admin-table-info {
  margin-top: 24px;
  text-align: center;
}

.admin-table-info__text {
  font-size: 14px;
  color: #6e6e73;
  margin: 0;
}

.admin-pagination__ellipsis {
  padding: 8px 16px;
  color: #86868b;
  user-select: none;
}

.admin-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
  padding: 32px;
  transition: all 0.2s ease;
}
@media (min-width: 768px) {
  .admin-card {
    padding: 48px;
  }
}
.admin-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

.admin-card__title {
  font-size: 21px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .admin-card__title {
    font-size: 24px;
  }
}

.admin-card__subtitle {
  font-size: 14px;
  color: #6e6e73;
  margin: 0 0 32px 0;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .admin-card__subtitle {
    font-size: 17px;
    margin-bottom: 48px;
  }
}

.admin-card--highlight {
  border-color: #0066FF;
  background: rgba(0, 102, 255, 0.02);
}

.admin-card--warning {
  border-color: #fb923c;
  background: rgba(251, 146, 60, 0.02);
}

.admin-card--success {
  border-color: #6bcf7f;
  background: rgba(107, 207, 127, 0.02);
}

.admin-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  gap: 24px;
}
@media (min-width: 768px) {
  .admin-card__header {
    align-items: center;
    margin-bottom: 48px;
  }
}

.admin-card__header-title {
  flex: 1;
  margin: 0;
}

.admin-card__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.admin-card__footer {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #d2d2d7;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
@media (min-width: 768px) {
  .admin-card__footer {
    margin-top: 48px;
    padding-top: 48px;
  }
}

.admin-card--compact {
  padding: 24px;
}
@media (min-width: 768px) {
  .admin-card--compact {
    padding: 32px;
  }
}
.admin-card--compact .admin-card__title {
  font-size: 17px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .admin-card--compact .admin-card__title {
    font-size: 21px;
  }
}

.admin-card__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .admin-card__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.admin-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-card__list-item {
  padding: 16px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.admin-card__list-item:hover {
  background: #fbfbfd;
}

.admin-spreadsheet {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  overflow: hidden;
  height: calc(100vh - 380px);
  min-height: 500px;
}
.admin-spreadsheet.admin-spreadsheet--fullpage {
  height: calc(100vh - 48px);
  border: none;
  border-radius: 0;
  min-height: unset;
  width: 100%;
}
@media (min-width: 1024px) {
  .admin-spreadsheet.admin-spreadsheet--fullpage {
    margin-left: 250px;
    width: calc(100% - 250px);
  }
}

.admin-spreadsheet__notifications-banner {
  background: #fbfbfd;
  border-bottom: 1px solid #d2d2d7;
  padding: 16px 32px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-spreadsheet__notification {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: #ffffff;
  border-radius: 8px;
  border-left: 3px solid #d4d4d4;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.admin-spreadsheet__notification.admin-spreadsheet__notification--info {
  border-left-color: #0066FF;
  background: rgba(0, 102, 255, 0.03);
}
.admin-spreadsheet__notification.admin-spreadsheet__notification--warning {
  border-left-color: #ffd93d;
  background: rgba(255, 217, 61, 0.03);
}
.admin-spreadsheet__notification.admin-spreadsheet__notification--error {
  border-left-color: #cb68e9;
  background: rgba(203, 104, 233, 0.03);
}
.admin-spreadsheet__notification.admin-spreadsheet__notification--success {
  border-left-color: #10b981;
  background: rgba(16, 185, 129, 0.03);
}

.admin-spreadsheet__notification-icon {
  font-size: 21px;
  flex-shrink: 0;
}

.admin-spreadsheet__notification-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}
.admin-spreadsheet__notification-content strong {
  font-weight: 600;
  color: #1d1d1f;
}
.admin-spreadsheet__notification-content span {
  color: #6e6e73;
}

.admin-spreadsheet__notification-time {
  font-size: 13px;
  color: #86868b;
  white-space: nowrap;
}

.admin-spreadsheet__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #fbfbfd;
  border-bottom: 1px solid #d2d2d7;
  flex-shrink: 0;
}
.admin-spreadsheet__toolbar.admin-spreadsheet__toolbar--extended {
  padding: 24px 32px;
  background: #ffffff;
  border-bottom: 2px solid #d2d2d7;
  flex-wrap: wrap;
  gap: 24px;
}

.admin-spreadsheet__toolbar-left,
.admin-spreadsheet__toolbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-spreadsheet__toolbar-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-spreadsheet__title {
  font-size: 21px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0;
  white-space: nowrap;
}

.admin-spreadsheet__count {
  font-size: 14px;
  color: #6e6e73;
  padding: 4px 16px;
  background: #f5f5f7;
  border-radius: 8px;
  font-weight: 500;
}

.admin-spreadsheet__stat {
  font-size: 14px;
  color: #6e6e73;
  padding: 4px 16px;
  background: #fbfbfd;
  border-radius: 6px;
  font-weight: 500;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.admin-spreadsheet__toolbar-divider {
  width: 1px;
  height: 24px;
  background: #d2d2d7;
  margin: 0 8px;
}

.admin-spreadsheet__search {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 17px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  background: #ffffff;
  transition: all 0.2s ease;
}
.admin-spreadsheet__search:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}
.admin-spreadsheet__search::placeholder {
  color: #86868b;
}
.admin-spreadsheet__search {
  padding: 8px 24px;
  font-size: 14px;
  min-width: 200px;
  max-width: 300px;
}

.admin-spreadsheet__filter-select {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 17px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  background: #ffffff;
  transition: all 0.2s ease;
}
.admin-spreadsheet__filter-select:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}
.admin-spreadsheet__filter-select::placeholder {
  color: #86868b;
}
.admin-spreadsheet__filter-select {
  padding: 8px 24px;
  padding-right: 32px;
  font-size: 14px;
  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='%236e6e73' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  min-width: 120px;
}

.admin-spreadsheet__toolbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-spreadsheet__toolbar-text {
  font-size: 14px;
  color: #6e6e73;
  font-weight: 500;
}

.admin-spreadsheet__quick-filter {
  display: flex;
  gap: 4px;
}

.admin-spreadsheet__filter-btn {
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #d2d2d7;
  background: #ffffff;
  color: #6e6e73;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.admin-spreadsheet__filter-btn:hover {
  border-color: #0066FF;
  color: #0066FF;
}
.admin-spreadsheet__filter-btn.active {
  background: #0066FF;
  border-color: #0066FF;
  color: #ffffff;
}
.admin-spreadsheet__filter-btn.admin-spreadsheet__filter-btn--primary {
  background: #0066FF;
  border-color: #0066FF;
  color: #ffffff;
}
.admin-spreadsheet__filter-btn.admin-spreadsheet__filter-btn--primary:hover {
  background: rgb(0, 85.68, 214.2);
  border-color: rgb(0, 85.68, 214.2);
}

.admin-spreadsheet__table-wrapper {
  flex: 1;
  overflow: auto;
  position: relative;
}
.admin-spreadsheet__table-wrapper:focus {
  outline: none;
}

.admin-spreadsheet__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.admin-spreadsheet__table thead {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #f5f5f7;
}
.admin-spreadsheet__table thead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #d4d4d4;
}
.admin-spreadsheet__table th {
  padding: 16px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  user-select: none;
  background: #f5f5f7;
  border-right: 1px solid #d2d2d7;
  border-bottom: 1px solid #d4d4d4;
  position: relative;
}
.admin-spreadsheet__table th:last-child {
  border-right: none;
}
.admin-spreadsheet__table th.admin-spreadsheet__row-num {
  width: 50px;
  text-align: center;
  background: #fbfbfd;
  color: #86868b;
  font-size: 13px;
}
.admin-spreadsheet__table th[data-sortable=true] {
  cursor: pointer;
  padding-right: 32px;
}
.admin-spreadsheet__table th[data-sortable=true]:hover {
  background: #d2d2d7;
}
.admin-spreadsheet__table th[data-sortable=true]::after {
  content: "⇅";
  position: absolute;
  right: 16px;
  opacity: 0.3;
  font-size: 13px;
}
.admin-spreadsheet__table th[data-sortable=true][data-sort-direction=asc]::after {
  content: "▲";
  opacity: 1;
  color: #0066FF;
}
.admin-spreadsheet__table th[data-sortable=true][data-sort-direction=desc]::after {
  content: "▼";
  opacity: 1;
  color: #0066FF;
}
.admin-spreadsheet__table tbody tr {
  border-bottom: 1px solid #d2d2d7;
  transition: background 0.2s ease;
  cursor: pointer;
}
.admin-spreadsheet__table tbody tr:nth-child(even) {
  background: #fbfbfd;
}
.admin-spreadsheet__table tbody tr:hover {
  background: rgba(0, 102, 255, 0.05);
}
.admin-spreadsheet__table tbody tr.selected {
  background: rgba(0, 102, 255, 0.12);
}
.admin-spreadsheet__table tbody tr.selected:hover {
  background: rgba(0, 102, 255, 0.15);
}
.admin-spreadsheet__table tbody tr.focused {
  outline: 2px solid #0066FF;
  outline-offset: -2px;
  position: relative;
  z-index: 1;
}
.admin-spreadsheet__table td {
  padding: 16px 24px;
  color: #1d1d1f;
  vertical-align: middle;
  border-right: 1px solid #d2d2d7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}
.admin-spreadsheet__table td:last-child {
  border-right: none;
}
.admin-spreadsheet__table td.admin-spreadsheet__row-num {
  text-align: center;
  background: #fbfbfd;
  color: #86868b;
  font-size: 13px;
  font-weight: 500;
  width: 50px;
  position: sticky;
  left: 0;
  z-index: 2;
  border-right: 1px solid #d4d4d4;
}
.admin-spreadsheet__table td.focused {
  outline: 2px solid #0066FF;
  outline-offset: -2px;
  position: relative;
  z-index: 3;
  background: #ffffff;
}

.admin-spreadsheet__empty {
  text-align: center;
  padding: 80px;
  color: #86868b;
}
.admin-spreadsheet__empty svg {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  opacity: 0.3;
}
.admin-spreadsheet__empty p {
  font-size: 17px;
  margin: 0;
}

.admin-spreadsheet__loading {
  text-align: center;
  padding: 64px;
  color: #86868b;
  font-style: italic;
}

.admin-spreadsheet__status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  background: #fbfbfd;
  border-top: 1px solid #d2d2d7;
  font-size: 13px;
  color: #6e6e73;
  flex-shrink: 0;
}

.admin-spreadsheet__status-left,
.admin-spreadsheet__status-center,
.admin-spreadsheet__status-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.admin-spreadsheet__status-center {
  flex: 1;
  justify-content: center;
}

.admin-spreadsheet__status-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.admin-spreadsheet__status-item strong {
  color: #1d1d1f;
  font-weight: 600;
}

.admin-spreadsheet__keyboard-hint {
  display: none;
}
@media (min-width: 1024px) {
  .admin-spreadsheet__keyboard-hint {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.admin-spreadsheet__pagination {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-spreadsheet__page-btn {
  min-width: 32px;
  height: 32px;
  padding: 4px 16px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #d2d2d7;
  background: #ffffff;
  color: #1d1d1f;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.admin-spreadsheet__page-btn:hover:not(:disabled) {
  border-color: #0066FF;
  color: #0066FF;
  background: rgba(0, 102, 255, 0.05);
}
.admin-spreadsheet__page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.admin-spreadsheet__page-info {
  font-size: 14px;
  color: #6e6e73;
  padding: 0 16px;
  white-space: nowrap;
}
.admin-spreadsheet__page-info strong {
  color: #1d1d1f;
  font-weight: 600;
}

.admin-spreadsheet__key {
  display: inline-block;
  padding: 2px 6px;
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: monospace;
  color: #1d1d1f;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.admin-spreadsheet__badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.admin-spreadsheet__badge.admin-spreadsheet__badge--admin {
  background: rgba(147, 51, 234, 0.1);
  color: #7c3aed;
}
.admin-spreadsheet__badge.admin-spreadsheet__badge--moderator {
  background: rgba(0, 102, 255, 0.1);
  color: rgb(0, 81.6, 204);
}
.admin-spreadsheet__badge.admin-spreadsheet__badge--regular {
  background: #f5f5f7;
  color: #1d1d1f;
}
.admin-spreadsheet__badge.admin-spreadsheet__badge--banned {
  background: rgba(203, 104, 233, 0.1);
  color: rgb(187.6705202312, 59.4855491329, 226.5144508671);
}
.admin-spreadsheet__badge.admin-spreadsheet__badge--verified {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}
.admin-spreadsheet__badge.admin-spreadsheet__badge--unverified {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.admin-spreadsheet__badge.admin-spreadsheet__badge--bug {
  background: rgba(203, 104, 233, 0.1);
  color: rgb(187.6705202312, 59.4855491329, 226.5144508671);
}
.admin-spreadsheet__badge.admin-spreadsheet__badge--feature_idea {
  background: rgba(255, 217, 61, 0.1);
  color: rgb(163, 131.0721649485, 0);
}
.admin-spreadsheet__badge.admin-spreadsheet__badge--localization_error {
  background: rgba(0, 102, 255, 0.1);
  color: rgb(0, 81.6, 204);
}

.admin-spreadsheet__link {
  color: #0066FF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.admin-spreadsheet__link:hover {
  color: rgb(0, 81.6, 204);
  text-decoration: underline;
}

.admin-spreadsheet__action {
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #d2d2d7;
  background: #ffffff;
  color: #1d1d1f;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.admin-spreadsheet__action:hover {
  border-color: #0066FF;
  color: #0066FF;
  background: rgba(0, 102, 255, 0.05);
}
.admin-spreadsheet__action.admin-spreadsheet__action--primary {
  background: #0066FF;
  border-color: #0066FF;
  color: #ffffff;
}
.admin-spreadsheet__action.admin-spreadsheet__action--primary:hover {
  background: rgb(0, 85.68, 214.2);
}

.admin-spreadsheet__shortcuts-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 1000;
  padding: 48px;
  display: none;
}
.admin-spreadsheet__shortcuts-modal.active {
  display: block;
}

.admin-spreadsheet__shortcuts-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
.admin-spreadsheet__shortcuts-overlay.active {
  display: block;
}

.admin-spreadsheet__shortcuts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.admin-spreadsheet__shortcuts-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0;
}

.admin-spreadsheet__shortcuts-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #86868b;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.admin-spreadsheet__shortcuts-close:hover {
  background: #f5f5f7;
  color: #1d1d1f;
}

.admin-spreadsheet__shortcuts-group {
  margin-bottom: 32px;
}
.admin-spreadsheet__shortcuts-group:last-child {
  margin-bottom: 0;
}

.admin-spreadsheet__shortcuts-group-title {
  font-size: 14px;
  font-weight: 600;
  color: #6e6e73;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.admin-spreadsheet__shortcut-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #d2d2d7;
}
.admin-spreadsheet__shortcut-item:last-child {
  border-bottom: none;
}

.admin-spreadsheet__shortcut-desc {
  font-size: 14px;
  color: #1d1d1f;
}

.admin-spreadsheet__shortcut-keys {
  display: flex;
  gap: 4px;
}

@media (max-width: 1024px) {
  .admin-spreadsheet {
    height: calc(100vh - 320px);
  }
  .admin-spreadsheet__table th, .admin-spreadsheet__table td {
    padding: 8px 16px;
    font-size: 13px;
  }
  .admin-spreadsheet__status-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media print {
  .admin-spreadsheet {
    height: auto;
    border: none;
  }
  .admin-spreadsheet__toolbar,
  .admin-spreadsheet__status-bar {
    display: none;
  }
  .admin-spreadsheet__table-wrapper {
    overflow: visible;
  }
  .admin-spreadsheet__table thead {
    position: static;
  }
  .admin-spreadsheet__table tbody tr {
    page-break-inside: avoid;
  }
}
.feedback-detail-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .feedback-detail-layout {
    grid-template-columns: 1fr 320px;
    gap: 32px;
  }
}
.feedback-detail-layout .admin-card {
  padding: 24px;
}
@media (min-width: 768px) {
  .feedback-detail-layout .admin-card {
    padding: 32px;
  }
}
.feedback-detail-layout .admin-card__title {
  margin-bottom: 16px;
  font-size: 17px;
}
@media (min-width: 768px) {
  .feedback-detail-layout .admin-card__title {
    font-size: 21px;
  }
}

.feedback-detail-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feedback-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .feedback-detail-sidebar {
    position: sticky;
    top: calc(48px + 24px);
    align-self: flex-start;
    max-height: calc(100vh - 48px - 48px);
    overflow-y: auto;
  }
}

.feedback-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  background: #f5f5f7;
  color: #1d1d1f;
  white-space: nowrap;
}
.feedback-category-badge.feedback-category-badge--bug {
  background: rgba(203, 104, 233, 0.1);
  color: rgb(187.6705202312, 59.4855491329, 226.5144508671);
}
.feedback-category-badge.feedback-category-badge--feature_idea {
  background: rgba(0, 102, 255, 0.1);
  color: rgb(0, 81.6, 204);
}
.feedback-category-badge.feedback-category-badge--localization_error {
  background: rgba(167, 139, 250, 0.1);
  color: rgb(111.3636363636, 65.6611570248, 246.8388429752);
}

.feedback-uid-display {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: "SF Mono", "Monaco", "Courier New", monospace;
  font-size: 14px;
  word-break: break-all;
}

.feedback-copy-btn {
  padding: 4px 8px;
  background: #f5f5f7;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 17px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.feedback-copy-btn:hover {
  background: #d2d2d7;
  transform: scale(1.1);
}
.feedback-copy-btn:active {
  transform: scale(0.95);
}

.feedback-language-badge {
  display: inline-block;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #f5f5f7;
  color: #1d1d1f;
  border-radius: 6px;
}

.feedback-user-link {
  color: #0066FF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.feedback-user-link:hover {
  color: rgb(0, 81.6, 204);
  text-decoration: underline;
}

.feedback-content-section {
  margin-bottom: 16px;
}
.feedback-content-section:last-child {
  margin-bottom: 0;
}

.feedback-content-label {
  font-size: 13px;
  font-weight: 600;
  color: #6e6e73;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.feedback-content-box {
  padding: 24px;
  background: #fbfbfd;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #1d1d1f;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.feedback-content-box.feedback-content-box--original {
  background: rgba(0, 102, 255, 0.02);
  border-color: rgba(0, 102, 255, 0.2);
}
.feedback-content-box.feedback-content-box--translation {
  background: #fbfbfd;
  border-color: #d2d2d7;
}

.feedback-image-count {
  display: inline-block;
  margin-left: 16px;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 600;
  background: #f5f5f7;
  color: #6e6e73;
  border-radius: 6px;
}

.feedback-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .feedback-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .feedback-image-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feedback-image-card {
  display: flex;
  flex-direction: column;
  background: #fbfbfd;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.feedback-image-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
  border-color: #d4d4d4;
}

.feedback-image-link {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  background: #f5f5f7;
  overflow: hidden;
}

.feedback-image-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback-image-thumbnail img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.feedback-image-link:hover .feedback-image-thumbnail img {
  transform: scale(1.05);
}

.feedback-image-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #ffffff;
}

.feedback-image-name {
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feedback-image-meta {
  font-size: 13px;
  color: #6e6e73;
}

.feedback-state-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feedback-state-indicator {
  padding: 24px;
  background: #fbfbfd;
  border-radius: 8px;
  text-align: center;
}

.feedback-state-preview {
  display: flex;
  justify-content: center;
}

.feedback-state-badge {
  display: inline-block;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}
.feedback-state-badge.feedback-state-badge--unverified {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.feedback-state-badge.feedback-state-badge--regular {
  background: rgba(0, 102, 255, 0.1);
  color: rgb(0, 81.6, 204);
}
.feedback-state-badge.feedback-state-badge--moderator {
  background: rgba(251, 146, 60, 0.1);
  color: rgb(229.7864321608, 106.0552763819, 4.7135678392);
}
.feedback-state-badge.feedback-state-badge--admin {
  background: rgba(167, 139, 250, 0.1);
  color: rgb(111.3636363636, 65.6611570248, 246.8388429752);
}
.feedback-state-badge.feedback-state-badge--verified {
  background: rgba(107, 207, 127, 0.1);
  color: rgb(58.1632653061, 179.3367346939, 82.3979591837);
}
.feedback-state-badge.feedback-state-badge--banned {
  background: rgba(203, 104, 233, 0.1);
  color: rgb(187.6705202312, 59.4855491329, 226.5144508671);
}

.feedback-notes-hint {
  font-size: 13px;
  color: #6e6e73;
  margin-top: -4px;
  margin-bottom: 8px;
  font-style: italic;
}

.feedback-notes-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feedback-char-counter {
  font-size: 13px;
  color: #6e6e73;
  text-align: right;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}
.feedback-char-counter #charCount {
  font-weight: 600;
  transition: color 0.2s ease;
}

.btn-block {
  width: 100%;
  text-align: center;
}

.feedback-no-images {
  padding: 64px;
  text-align: center;
  color: #6e6e73;
  background: #fbfbfd;
  border-radius: 10px;
}
.feedback-no-images svg {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  color: #ababab;
}
.feedback-no-images p {
  font-size: 17px;
  margin: 0;
}

@media (max-width: 767px) {
  .feedback-detail-layout {
    gap: 16px;
  }
  .feedback-detail-main {
    gap: 16px;
  }
  .feedback-content-box {
    padding: 16px;
  }
  .feedback-image-grid {
    gap: 16px;
  }
  .admin-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.feedback-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  color: #6e6e73;
}
.feedback-loading::after {
  content: "";
  width: 24px;
  height: 24px;
  margin-left: 24px;
  border: 3px solid #d2d2d7;
  border-top-color: #0066FF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.feedback-message {
  padding: 24px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 24px;
}
.feedback-message.feedback-message--success {
  background: rgba(107, 207, 127, 0.1);
  color: rgb(58.1632653061, 179.3367346939, 82.3979591837);
  border: 1px solid rgba(107, 207, 127, 0.3);
}
.feedback-message.feedback-message--error {
  background: rgba(203, 104, 233, 0.1);
  color: rgb(187.6705202312, 59.4855491329, 226.5144508671);
  border: 1px solid rgba(203, 104, 233, 0.3);
}

.admin-card--compact {
  padding: 24px;
}
.admin-card--compact .admin-card__title {
  font-size: 17px;
  margin-bottom: 16px;
}

.admin-card--danger {
  border: 2px solid #cb68e9;
  background: rgba(203, 104, 233, 0.02);
}
.admin-card--danger .admin-card__title {
  color: #cb68e9;
}

.admin-breadcrumb--enhanced {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-breadcrumb__left {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  font-size: 14px;
}

.admin-breadcrumb__position {
  font-size: 13px;
  color: #6e6e73;
  margin-left: 4px;
}

.admin-breadcrumb__nav {
  display: flex;
  gap: 4px;
}

.admin-breadcrumb__nav-btn {
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #d2d2d7;
  background: #ffffff;
  color: #1d1d1f;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.admin-breadcrumb__nav-btn:hover:not(:disabled) {
  border-color: #0066FF;
  color: #0066FF;
  background: rgba(0, 102, 255, 0.05);
}
.admin-breadcrumb__nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.feedback-detail-shortcuts {
  display: none;
}
@media (min-width: 1024px) {
  .feedback-detail-shortcuts {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 6px 16px;
    background: #fbfbfd;
    border: 1px solid #d2d2d7;
    border-radius: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
}

.feedback-detail-shortcuts__group {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #6e6e73;
}
.feedback-detail-shortcuts__group kbd {
  display: inline-block;
  padding: 1px 4px;
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  font-family: monospace;
  color: #1d1d1f;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.feedback-toast {
  position: fixed;
  top: 48px;
  right: 48px;
  display: none;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  animation: slideIn 0.3s ease;
}
.feedback-toast.feedback-toast--success {
  border-left: 4px solid #6bcf7f;
}
.feedback-toast.feedback-toast--error {
  border-left: 4px solid #cb68e9;
}
.feedback-toast.feedback-toast--info {
  border-left: 4px solid #0066FF;
}
.feedback-toast.feedback-toast--warning {
  border-left: 4px solid #ffd93d;
}

.feedback-toast__icon {
  font-size: 21px;
}

.feedback-toast__message {
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.feedback-state-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.feedback-state-quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  background: #ffffff;
  border: 2px solid #d2d2d7;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  color: #1d1d1f;
  min-height: 48px;
}
.feedback-state-quick-btn:hover {
  border-color: #0066FF;
  background: rgba(0, 102, 255, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.feedback-state-quick-btn.active {
  border-color: #0066FF;
  background: rgba(0, 102, 255, 0.1);
  color: #0066FF;
  font-weight: 600;
}

.feedback-state-quick-btn__key {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #f5f5f7;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
}
.feedback-state-quick-btn.active .feedback-state-quick-btn__key {
  background: #0066FF;
  color: #ffffff;
}

.feedback-state-quick-btn__label {
  font-size: 11px;
  text-align: center;
  line-height: 1.3;
}

.feedback-state-current {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fbfbfd;
  border-radius: 6px;
  font-size: 13px;
  color: #6e6e73;
}

.feedback-detail-kbd-hint {
  display: inline-block;
  padding: 1px 4px;
  background: #f5f5f7;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  font-family: monospace;
  color: #6e6e73;
  margin-left: 4px;
}

.feedback-notes-container {
  position: relative;
}

.feedback-save-indicator {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
}
.feedback-save-indicator.feedback-save-indicator--saving {
  background: rgba(0, 102, 255, 0.1);
  color: #0066FF;
}
.feedback-save-indicator.feedback-save-indicator--saved {
  background: rgba(107, 207, 127, 0.1);
  color: rgb(58.1632653061, 179.3367346939, 82.3979591837);
}
.feedback-save-indicator.feedback-save-indicator--error {
  background: rgba(203, 104, 233, 0.1);
  color: #cb68e9;
}
.feedback-save-indicator.feedback-save-indicator--unsaved {
  background: rgba(255, 217, 61, 0.1);
  color: rgb(163, 131.0721649485, 0);
}

.feedback-save-indicator__icon {
  font-size: 17px;
}

.feedback-save-indicator__text {
  font-weight: 500;
}

.feedback-note-templates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-top: 16px;
}

.feedback-template-btn {
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 500;
  background: #fbfbfd;
  border: 1px solid #d2d2d7;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #1d1d1f;
  text-align: left;
}
.feedback-template-btn:hover {
  background: #f5f5f7;
  border-color: #d4d4d4;
}
.feedback-template-btn:active {
  transform: scale(0.98);
}

.feedback-detail-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feedback-detail-timeline__item {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-left: 2px solid #d2d2d7;
  padding-left: 24px;
}
.feedback-detail-timeline__item:first-child {
  padding-top: 0;
}
.feedback-detail-timeline__item:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.feedback-detail-timeline__marker {
  position: absolute;
  left: -5px;
  top: 16px;
  width: 8px;
  height: 8px;
  background: #0066FF;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #d2d2d7;
}
.feedback-detail-timeline__item:first-child .feedback-detail-timeline__marker {
  top: 2px;
}

.feedback-detail-timeline__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feedback-detail-timeline__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.feedback-detail-timeline__header strong {
  color: #1d1d1f;
}

.feedback-detail-timeline__action {
  padding: 1px 4px;
  background: #f5f5f7;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #6e6e73;
  text-transform: capitalize;
}

.feedback-detail-timeline__time {
  font-size: 11px;
  color: #86868b;
}

.feedback-detail-timeline__details {
  font-size: 13px;
  color: #6e6e73;
  padding: 4px 8px;
  background: #fbfbfd;
  border-radius: 6px;
  margin-top: 2px;
}

.feedback-detail-history {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #d2d2d7;
}

.feedback-detail-history__title {
  font-size: 13px;
  font-weight: 600;
  color: #6e6e73;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.feedback-detail-history__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feedback-detail-history__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #fbfbfd;
  border: 1px solid #d2d2d7;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.feedback-detail-history__item:hover {
  background: #f5f5f7;
  border-color: #d4d4d4;
  transform: translateX(2px);
}

.feedback-detail-history__icon {
  font-size: 17px;
  flex-shrink: 0;
}

.feedback-detail-history__text {
  flex: 1;
  font-size: 13px;
  color: #1d1d1f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feedback-detail-history__badge {
  padding: 1px 4px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.feedback-detail-history__badge.feedback-state-badge--unverified {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.feedback-detail-history__badge.feedback-state-badge--regular {
  background: rgba(0, 102, 255, 0.1);
  color: rgb(0, 81.6, 204);
}
.feedback-detail-history__badge.feedback-state-badge--moderator {
  background: rgba(251, 146, 60, 0.1);
  color: rgb(229.7864321608, 106.0552763819, 4.7135678392);
}
.feedback-detail-history__badge.feedback-state-badge--admin {
  background: rgba(167, 139, 250, 0.1);
  color: rgb(111.3636363636, 65.6611570248, 246.8388429752);
}
.feedback-detail-history__badge.feedback-state-badge--verified {
  background: rgba(107, 207, 127, 0.1);
  color: rgb(58.1632653061, 179.3367346939, 82.3979591837);
}
.feedback-detail-history__badge.feedback-state-badge--banned {
  background: rgba(203, 104, 233, 0.1);
  color: rgb(187.6705202312, 59.4855491329, 226.5144508671);
}

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

.feedback-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.feedback-modal__content {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 48px;
  max-width: 480px;
  width: 90%;
  z-index: 1;
  animation: modalSlideIn 0.3s ease;
}
.feedback-modal__content.feedback-modal__content--large {
  max-width: 640px;
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.feedback-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.feedback-modal__title {
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0;
}

.feedback-modal__text {
  font-size: 17px;
  color: #6e6e73;
  margin-bottom: 32px;
}

.feedback-modal__close {
  background: none;
  border: none;
  font-size: 32px;
  color: #86868b;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.feedback-modal__close:hover {
  background: #f5f5f7;
  color: #1d1d1f;
}

.feedback-modal__actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.feedback-shortcuts-help {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 640px) {
  .feedback-shortcuts-help {
    grid-template-columns: 1fr;
  }
}

.feedback-shortcuts-help__section h4 {
  font-size: 14px;
  font-weight: 600;
  color: #6e6e73;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.feedback-shortcuts-help__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #d2d2d7;
  font-size: 14px;
}
.feedback-shortcuts-help__item:last-child {
  border-bottom: none;
}
.feedback-shortcuts-help__item kbd {
  display: inline-block;
  padding: 2px 6px;
  background: #f5f5f7;
  border: 1px solid #d2d2d7;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: monospace;
  color: #1d1d1f;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.feedback-shortcuts-help__item span {
  color: #6e6e73;
}

@media (max-width: 1023px) {
  .feedback-detail-shortcuts {
    display: none;
  }
  .feedback-state-quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feedback-note-templates {
    grid-template-columns: 1fr;
  }
  .feedback-breadcrumb__nav {
    width: 100%;
    justify-content: flex-start;
  }
}
.feedback-section {
  margin-bottom: 16px;
}
.feedback-section__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6e6e73;
  margin-bottom: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.feedback-section__grid {
  display: grid;
  gap: 4px;
}

.feedback-info-row {
  display: flex;
  gap: 8px;
  font-size: 13px;
  line-height: 1.3;
  align-items: flex-start;
}
.feedback-info-row .label {
  color: #6e6e73;
  font-size: 12px;
  min-width: 80px;
  font-weight: 500;
  flex-shrink: 0;
}
.feedback-info-row .value {
  color: #1d1d1f;
  flex: 1;
  word-break: break-word;
}

.feedback-divider {
  border: none;
  border-top: 1px solid #d2d2d7;
  margin: 16px 0;
}

.feedback-sidebar-section__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6e6e73;
  margin-bottom: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feedback-sidebar-section--danger .feedback-sidebar-section__title {
  color: #cb68e9;
}

.feedback-sidebar-divider {
  border: none;
  border-top: 1px solid #d2d2d7;
  margin: 8px 0;
}

@media (min-width: 1024px) {
  .feedback-detail-sidebar {
    max-width: 280px;
  }
}
.feedback-detail-sidebar .feedback-state-quick-grid {
  gap: 6px;
  margin-bottom: 8px;
}
.feedback-detail-sidebar .feedback-state-quick-btn {
  padding: 6px;
  min-height: 42px;
}
.feedback-detail-sidebar .feedback-state-current {
  padding: 6px 8px;
}
.feedback-detail-sidebar .feedback-notes-container textarea {
  font-size: 13px;
}
.feedback-detail-sidebar .feedback-note-templates {
  gap: 4px;
  margin-top: 8px;
}
.feedback-detail-sidebar .feedback-template-btn {
  padding: 4px 6px;
  font-size: 10px;
}

.feedback-detail-main {
  gap: 16px;
}

.feedback-section__title .feedback-category-badge {
  margin-left: 8px;
}

.feedback-content-section {
  margin-bottom: 8px;
}
.feedback-content-section:last-child {
  margin-bottom: 0;
}

.feedback-content-label {
  font-size: 11px;
  margin-bottom: 4px;
}

.feedback-content-box {
  padding: 16px;
  font-size: 13px;
  line-height: 1.4;
}

.feedback-image-count {
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
}

.feedback-image-grid {
  gap: 16px;
}

.feedback-detail-timeline__item {
  padding: 8px 0;
  padding-left: 16px;
}

.feedback-detail-timeline__marker {
  width: 6px;
  height: 6px;
  left: -4px;
  top: 8px;
}

.feedback-detail-timeline__header {
  font-size: 12px;
}

.feedback-detail-timeline__action {
  font-size: 10px;
  padding: 1px 4px;
}

.feedback-detail-timeline__time {
  font-size: 10px;
}

.feedback-detail-timeline__details {
  font-size: 11px;
  padding: 4px 6px;
  margin-top: 2px;
}

.feedback-detail-history {
  margin-top: 16px;
  padding-top: 16px;
}

.feedback-detail-history__title {
  font-size: 10px;
  margin-bottom: 6px;
}

.feedback-detail-history__list {
  gap: 4px;
}

.feedback-detail-history__item {
  padding: 6px;
  gap: 6px;
}

.feedback-detail-history__text {
  font-size: 11px;
}

.feedback-detail-history__badge {
  font-size: 9px;
  padding: 1px 4px;
}

.feedback-language-badge {
  padding: 2px 6px;
  font-size: 10px;
}

.feedback-uid-display {
  font-size: 11px;
}

.feedback-copy-btn {
  padding: 2px 4px;
  font-size: 13px;
}

.feedback-notes-hint {
  font-size: 10px;
  margin-top: -2px;
  margin-bottom: 6px;
}

.feedback-char-counter {
  font-size: 10px;
  margin-top: 2px;
}

.feedback-save-indicator {
  margin-top: 6px;
  padding: 4px 6px;
  font-size: 10px;
}

.feedback-save-indicator__icon {
  font-size: 13px;
}

@media (max-width: 767px) {
  .feedback-section {
    margin-bottom: 8px;
  }
  .feedback-divider,
  .feedback-sidebar-divider {
    margin: 8px 0;
  }
  .feedback-info-row {
    font-size: 12px;
  }
  .feedback-info-row .label {
    font-size: 11px;
    min-width: 70px;
  }
  .feedback-content-box {
    padding: 8px;
    font-size: 12px;
  }
  .feedback-image-grid {
    gap: 8px;
  }
}
.oauth-scope-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
  min-height: 40px;
}

.oauth-scope-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 16px;
  background: #f5f5f7;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  font-size: 14px;
  color: #1d1d1f;
  transition: all 0.2s ease;
}
.oauth-scope-tag:hover {
  background: #d2d2d7;
  border-color: #d4d4d4;
}

.oauth-scope-tag__name {
  font-family: monospace;
  font-size: 14px;
  color: #1d1d1f;
  font-weight: 500;
}

.oauth-scope-tag__remove {
  background: none;
  border: none;
  color: #86868b;
  font-size: 21px;
  line-height: 1;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.oauth-scope-tag__remove:hover {
  background: #cb68e9;
  color: #ffffff;
}

.admin-input-action-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: #f5f5f7;
  border: 1px solid #d2d2d7;
  border-radius: 6px;
  padding: 4px 16px;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.admin-input-action-btn:hover {
  background: #d2d2d7;
  border-color: #d4d4d4;
}
.admin-input-action-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.admin-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.admin-toggle input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.admin-toggle input[type=checkbox]:checked + .admin-toggle__slider {
  background: #0066FF;
}
.admin-toggle input[type=checkbox]:checked + .admin-toggle__slider::before {
  transform: translateX(24px);
}
.admin-toggle input[type=checkbox]:focus + .admin-toggle__slider {
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}
.admin-toggle input[type=checkbox]:disabled + .admin-toggle__slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.admin-toggle__slider {
  position: relative;
  width: 48px;
  height: 24px;
  background: #d4d4d4;
  border-radius: 100px;
  transition: background 0.2s ease;
}
.admin-toggle__slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.admin-toggle__label {
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
}

.admin-form-group {
  margin-bottom: 32px;
}
.admin-form-group:last-child {
  margin-bottom: 0;
}

.admin-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-form-hint {
  font-size: 13px;
  color: #86868b;
  margin-top: 4px;
  line-height: 1.5;
}

.admin-input, .admin-select, .admin-textarea {
  width: 100%;
  padding: 16px 24px;
  font-size: 14px;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  background: #ffffff;
  color: #1d1d1f;
  transition: all 0.2s ease;
}
.admin-input:focus, .admin-select:focus, .admin-textarea:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}
.admin-input:disabled, .admin-select:disabled, .admin-textarea:disabled {
  background: #fbfbfd;
  color: #86868b;
  cursor: not-allowed;
}
.admin-input[readonly], [readonly].admin-select, [readonly].admin-textarea {
  background: #fbfbfd;
  color: #86868b;
  cursor: not-allowed;
}
.admin-input::placeholder, .admin-select::placeholder, .admin-textarea::placeholder {
  color: #ababab;
}

.admin-textarea {
  min-height: 100px;
  resize: vertical;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
}

.admin-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='%236e6e73' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.admin-input.error,
.admin-textarea.error,
.admin-select.error {
  border-color: #cb68e9;
}
.admin-input.error:focus,
.admin-textarea.error:focus,
.admin-select.error:focus {
  box-shadow: 0 0 0 4px rgba(203, 104, 233, 0.1);
}

.admin-input.success,
.admin-textarea.success,
.admin-select.success {
  border-color: #6bcf7f;
}
.admin-input.success:focus,
.admin-textarea.success:focus,
.admin-select.success:focus {
  box-shadow: 0 0 0 4px rgba(107, 207, 127, 0.1);
}

@media (max-width: 768px) {
  .oauth-scope-tags {
    gap: 4px;
  }
  .oauth-scope-tag {
    font-size: 13px;
    padding: 4px 8px;
  }
  .admin-input-action-btn {
    font-size: 14px;
  }
}
.post-thumbnail {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbfbfd;
  border-radius: 8px;
  font-size: 24px;
  border: 1px solid #d2d2d7;
}
.post-thumbnail--text {
  background: #f5f5f7;
}

.post-content-cell {
  max-width: 400px;
}
.post-content-cell .post-title {
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 4px;
  font-size: 17px;
}
.post-content-cell .post-preview {
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 16px;
  background: var(--platform-color, #0066FF);
  color: #ffffff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.platform-badge--large {
  padding: 8px 24px;
  font-size: 14px;
}

.user-link {
  color: #0066FF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.user-link:hover {
  color: rgb(0, 81.6, 204);
  text-decoration: underline;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-badge--warning {
  background: rgb(255, 251.9639175258, 239.5);
  color: rgb(163, 131.0721649485, 0);
}
.status-badge--success {
  background: white;
  color: rgb(51.9183673469, 160.0816326531, 73.5510204082);
}
.status-badge--danger {
  background: white;
  color: rgb(180.0057803468, 37.2283236994, 223.2716763006);
}
.status-badge--dark {
  background: #1d1d1f;
  color: #ffffff;
}
.status-badge--small {
  padding: 2px 8px;
  font-size: 11px;
}

.report-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding: 2px 8px;
  background: white;
  color: rgb(187.6705202312, 59.4855491329, 226.5144508671);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.tags-cell .tag-pill {
  display: inline-block;
  padding: 4px 8px;
  margin: 2px;
  background: #f5f5f7;
  color: #1d1d1f;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.tags-cell .tag-pill--more {
  background: #d4d4d4;
  color: #ffffff;
}
.tags-cell .text-muted {
  color: #86868b;
  font-style: italic;
  font-size: 14px;
}

.interactions-cell .interaction-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: #6e6e73;
}
.interactions-cell .interaction-stats span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.action-buttons {
  display: flex;
  gap: 4px;
  align-items: center;
}
.action-buttons .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: #fbfbfd;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.action-buttons .btn-icon:hover {
  background: #f5f5f7;
  border-color: #d4d4d4;
  transform: translateY(-1px);
}
.action-buttons .btn-icon--success {
  background: white;
  border-color: rgb(222.5306122449, 244.4693877551, 226.9183673469);
  color: rgb(51.9183673469, 160.0816326531, 73.5510204082);
}
.action-buttons .btn-icon--success:hover {
  background: white;
  border-color: rgb(184.0204081633, 231.9795918367, 193.612244898);
}
.action-buttons .btn-icon--danger {
  background: white;
  border-color: rgb(248.9884393064, 237.5433526012, 252.4566473988);
  color: rgb(187.6705202312, 59.4855491329, 226.5144508671);
}
.action-buttons .btn-icon--danger:hover {
  background: white;
  border-color: rgb(233.6589595376, 193.0289017341, 245.9710982659);
}

.admin-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .admin-detail-layout {
    grid-template-columns: 1fr 380px;
  }
}
.admin-detail-layout__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.admin-detail-layout__sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.post-detail-content {
  padding: 32px;
}
.post-detail-content__title {
  font-size: 32px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 24px;
}
.post-detail-content__text {
  font-size: 17px;
  line-height: 1.5;
  color: #1d1d1f;
  margin-bottom: 32px;
  white-space: pre-wrap;
}
.post-detail-content__media {
  margin-top: 32px;
}
.post-detail-content__media h4 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1d1d1f;
}
.post-detail-content__tags {
  margin-top: 32px;
}
.post-detail-content__tags h4 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1d1d1f;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.media-gallery__item {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d2d2d7;
}
.media-gallery__item img,
.media-gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  padding: 32px;
}

.stat-box {
  text-align: center;
  padding: 24px;
  background: #fbfbfd;
  border-radius: 10px;
  border: 1px solid #d2d2d7;
}
.stat-box__icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.stat-box__value {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 4px;
}
.stat-box__label {
  font-size: 14px;
  color: #6e6e73;
}

.user-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}
.user-cell .user-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.user-cell a {
  color: #0066FF;
  text-decoration: none;
  font-weight: 500;
}
.user-cell a:hover {
  text-decoration: underline;
}

.interaction-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}
.interaction-badge--like {
  background: white;
  color: rgb(51.9183673469, 160.0816326531, 73.5510204082);
}
.interaction-badge--dislike {
  background: white;
  color: rgb(187.6705202312, 59.4855491329, 226.5144508671);
}
.interaction-badge--view {
  background: white;
  color: rgb(0, 81.6, 204);
}
.interaction-badge--skip, .interaction-badge--share {
  background: #f5f5f7;
  color: #6e6e73;
}

.timeline {
  padding: 32px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #d2d2d7;
}

.timeline-item {
  position: relative;
  padding-left: 48px;
  padding-bottom: 32px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item__marker {
  position: absolute;
  left: 32px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0066FF;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #d2d2d7;
}
.timeline-item__content {
  background: #fbfbfd;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #d2d2d7;
}
.timeline-item__header {
  font-size: 14px;
  margin-bottom: 8px;
  color: #1d1d1f;
}
.timeline-item__notes {
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
  margin: 16px 0;
  font-size: 14px;
  color: #6e6e73;
  border-left: 3px solid #0066FF;
}
.timeline-item__time {
  font-size: 13px;
  color: #86868b;
  margin-top: 8px;
}

.reports-list {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.report-item {
  padding: 24px;
  background: white;
  border-radius: 10px;
  border: 1px solid white;
}
.report-item.reviewed {
  background: #fbfbfd;
  border-color: #d2d2d7;
}
.report-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.report-item__reporter {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 8px;
}
.report-item__reporter a {
  color: #0066FF;
  text-decoration: none;
}
.report-item__reporter a:hover {
  text-decoration: underline;
}
.report-item__description {
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 16px;
}
.report-item__time {
  font-size: 13px;
  color: #86868b;
  margin-top: 16px;
}

.report-reason {
  display: inline-flex;
  padding: 4px 16px;
  background: rgb(195.3352601156, 81.7427745665, 229.7572254335);
  color: #ffffff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.report-status {
  font-size: 13px;
  color: #86868b;
  font-weight: 600;
  text-transform: uppercase;
}

.author-info {
  padding: 32px;
  text-align: center;
}
.author-info__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 3px solid #d2d2d7;
}
.author-info__username {
  display: block;
  font-size: 21px;
  font-weight: 600;
  color: #0066FF;
  text-decoration: none;
  margin-bottom: 4px;
}
.author-info__username:hover {
  text-decoration: underline;
}
.author-info__email {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 24px;
}
.author-info .btn {
  margin-top: 24px;
}

.meta-list {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #d2d2d7;
}
.meta-item:last-child {
  border-bottom: none;
}

.meta-label {
  font-weight: 600;
  color: #6e6e73;
  font-size: 14px;
}

.meta-value {
  text-align: right;
  color: #1d1d1f;
  font-size: 14px;
}
.meta-value code {
  font-size: 13px;
  background: #fbfbfd;
  padding: 2px 6px;
  border-radius: 6px;
  font-family: "Courier New", monospace;
}

.moderation-shortcuts {
  padding: 24px;
  background: #fbfbfd;
  border-radius: 10px;
  margin-top: 24px;
}
.moderation-shortcuts h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 16px;
}

.shortcut-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shortcut-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}
.shortcut-item kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 0 #d2d2d7;
}
.shortcut-item span {
  color: #6e6e73;
}

.moderation-queue {
  min-height: 100vh;
  background: #fbfbfd;
  display: flex;
  flex-direction: column;
}

.moderation-header {
  background: #ffffff;
  border-bottom: 1px solid #d2d2d7;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.moderation-header__content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .moderation-header__content {
    padding: 32px 48px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.moderation-header__title {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.moderation-header__title h1 {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0;
}
@media (min-width: 768px) {
  .moderation-header__title h1 {
    font-size: 48px;
  }
}
.moderation-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.queue-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: #0066FF;
  color: #ffffff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}
.queue-badge__count {
  font-size: 21px;
  font-weight: 700;
}
.queue-badge__label {
  font-size: 14px;
}

.moderation-filters {
  display: flex;
  gap: 16px;
  align-items: center;
}

.filter-select {
  padding: 16px 24px;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  background: #ffffff;
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-select:hover {
  border-color: #d4d4d4;
}
.filter-select:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.keyboard-shortcuts {
  background: white;
  border-top: 1px solid rgb(229.5, 239.7, 255);
  padding: 24px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .keyboard-shortcuts {
    padding: 24px 48px;
    gap: 32px;
  }
}
.keyboard-shortcuts__label {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
}
.keyboard-shortcuts__list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.shortcut-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6e6e73;
}
.shortcut-hint kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  color: #1d1d1f;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.moderation-content {
  flex: 1;
  padding: 48px 24px;
}
@media (min-width: 768px) {
  .moderation-content {
    padding: 120px 48px;
  }
}

.empty-state {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 24px;
}
.empty-state__icon {
  font-size: 80px;
  margin-bottom: 32px;
  line-height: 1;
}
.empty-state__title {
  font-size: 48px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 24px 0;
}
@media (min-width: 768px) {
  .empty-state__title {
    font-size: 56px;
  }
}
.empty-state__message {
  font-size: 21px;
  line-height: 1.5;
  color: #6e6e73;
  margin: 0 0 48px 0;
}
.empty-state__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.post-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.post-card__header {
  padding: 32px;
  border-bottom: 1px solid #d2d2d7;
  background: #fbfbfd;
}
@media (min-width: 768px) {
  .post-card__header {
    padding: 48px;
  }
}
.post-card__platform-badge {
  margin-bottom: 24px;
}
.post-card__metadata {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.post-card__content {
  padding: 32px;
}
@media (min-width: 768px) {
  .post-card__content {
    padding: 64px;
  }
}
.post-card__title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.3;
  margin: 0 0 24px 0;
}
@media (min-width: 768px) {
  .post-card__title {
    font-size: 48px;
  }
}
.post-card__text {
  font-size: 17px;
  line-height: 1.5;
  color: #1d1d1f;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0 0 32px 0;
}
@media (min-width: 768px) {
  .post-card__text {
    font-size: 21px;
  }
}
.post-card__media {
  margin: 48px 0;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .post-card__media {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.post-card__media .media-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d2d2d7;
  background: #fbfbfd;
}
.post-card__media .media-item img,
.post-card__media .media-item video {
  width: 100%;
  height: auto;
  display: block;
}
.post-card__media .media-item video {
  max-height: 400px;
  object-fit: contain;
  background: #000000;
}
.post-card__media .media-item .media-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  color: #0066FF;
  text-decoration: none;
  font-weight: 600;
}
.post-card__media .media-item .media-link:hover {
  text-decoration: underline;
}
.post-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.post-card__stats {
  padding: 32px;
  background: #fbfbfd;
  border-top: 1px solid #d2d2d7;
  border-bottom: 1px solid #d2d2d7;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 24px;
}
@media (min-width: 768px) {
  .post-card__stats {
    padding: 48px;
    gap: 32px;
  }
}
.post-card__actions {
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 640px) {
  .post-card__actions {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 768px) {
  .post-card__actions {
    padding: 48px;
    gap: 24px;
  }
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background: #0066FF;
  color: #ffffff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

.language-badge {
  padding: 4px 16px;
  background: #d2d2d7;
  color: #1d1d1f;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 24px;
}
.post-author__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d2d2d7;
}
.post-author__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0066FF;
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
}
.post-author__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.post-author__name {
  font-size: 17px;
  font-weight: 600;
  color: #0066FF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.post-author__name:hover {
  color: rgb(0, 81.6, 204);
  text-decoration: underline;
}
.post-author__date {
  font-size: 14px;
  color: #86868b;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 16px;
  background: #f5f5f7;
  color: #1d1d1f;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.stat-item__icon {
  font-size: 24px;
  line-height: 1;
}
.stat-item__value {
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1;
}
.stat-item__label {
  font-size: 13px;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.action-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 16px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #f5f5f7;
  color: #1d1d1f;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.action-btn__icon {
  font-size: 28px;
  line-height: 1;
}
.action-btn__label {
  font-size: 14px;
  line-height: 1;
}
.action-btn__kbd {
  position: absolute;
  top: 8px;
  right: 8px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  color: #1d1d1f;
}
.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}
.action-btn:active {
  transform: translateY(0);
}
.action-btn--validate {
  background: white;
  color: rgb(51.9183673469, 160.0816326531, 73.5510204082);
}
.action-btn--validate:hover {
  background: white;
  border-color: #6bcf7f;
}
.action-btn--reject {
  background: rgb(254.5879396985, 243.7713567839, 234.9120603015);
  color: rgb(204.7989949749, 94.5226130653, 4.2010050251);
}
.action-btn--reject:hover {
  background: rgb(254.0753768844, 229.8040201005, 209.9246231156);
  border-color: #fb923c;
}
.action-btn--ban {
  background: white;
  color: rgb(180.0057803468, 37.2283236994, 223.2716763006);
}
.action-btn--ban:hover {
  background: white;
  border-color: #cb68e9;
}
.action-btn--skip {
  background: #f5f5f7;
  color: #6e6e73;
}
.action-btn--skip:hover {
  background: #d2d2d7;
  border-color: #d4d4d4;
}
.action-btn--details {
  background: rgb(244.8, 248.88, 255);
  color: rgb(0, 91.8, 229.5);
}
.action-btn--details:hover {
  background: rgb(219.3, 233.58, 255);
  border-color: #0066FF;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: -1;
}
.modal__dialog {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.modal__header {
  padding: 48px;
  border-bottom: 1px solid #d2d2d7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal__title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0;
}
.modal__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #86868b;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.modal__close:hover {
  background: #f5f5f7;
  color: #1d1d1f;
}
.modal__body {
  padding: 48px;
}
.modal__description {
  font-size: 17px;
  color: #6e6e73;
  margin: 0 0 32px 0;
  line-height: 1.5;
}
.modal__footer {
  padding: 48px;
  border-top: 1px solid #d2d2d7;
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}

.form-field {
  margin-bottom: 32px;
}
.form-field:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
}
.form-label .required {
  color: #cb68e9;
}

.form-textarea {
  width: 100%;
  padding: 24px;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  font-size: 17px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  color: #1d1d1f;
  resize: vertical;
  min-height: 120px;
  transition: all 0.2s ease;
}
.form-textarea:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
.form-textarea::placeholder {
  color: #ababab;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary .kbd-hint,
.btn-secondary .kbd-hint {
  margin-left: 8px;
  font-size: 13px;
  opacity: 0.7;
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}
.btn-primary:active,
.btn-secondary:active {
  transform: translateY(0);
}

.btn-primary {
  background: #0066FF;
  color: #ffffff;
}
.btn-primary:hover {
  background: rgb(0, 85.68, 214.2);
}

.btn-secondary {
  background: #f5f5f7;
  color: #1d1d1f;
}
.btn-secondary:hover {
  background: #d2d2d7;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #d2d2d7;
  border-top-color: #0066FF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-text {
  font-size: 21px;
  font-weight: 500;
  color: #6e6e73;
  margin: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.docs-container {
  display: flex;
  min-height: 100vh;
  background: #ffffff;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.docs-layout {
  display: flex;
  min-height: 100vh;
  background: #ffffff;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.docs-toc-toggle {
  position: fixed;
  top: 64px;
  left: 24px;
  z-index: 101;
  width: 48px;
  height: 48px;
  background: #0066FF;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.docs-toc-toggle svg {
  width: 24px;
  height: 24px;
}
.docs-toc-toggle:hover {
  background: #0052cc;
  transform: scale(1.05);
}
.docs-toc-toggle:active {
  transform: scale(0.95);
}
@media (min-width: 1024px) {
  .docs-toc-toggle {
    display: none;
  }
}

.docs-toc {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  overflow-y: auto;
  z-index: 10;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .docs-toc {
    transform: translateX(0);
    top: 48px;
    height: calc(100vh - 48px);
  }
}
.docs-toc.active {
  transform: translateX(0);
  z-index: 100;
}
.docs-toc::-webkit-scrollbar {
  width: 6px;
}
.docs-toc::-webkit-scrollbar-track {
  background: transparent;
}
.docs-toc::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 3px;
}
.docs-toc::-webkit-scrollbar-thumb:hover {
  background: #ababab;
}

.docs-toc-header {
  padding: 24px 32px;
  border-bottom: 1px solid #d2d2d7;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 10;
}
.docs-toc-header h3 {
  font-size: 21px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 16px 0;
}

.api-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6e6e73;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.status-dot.status-operational {
  background: #6bcf7f;
  box-shadow: 0 0 8px rgba(107, 207, 127, 0.5);
}
.status-dot.status-down {
  background: #cb68e9;
  box-shadow: 0 0 8px rgba(203, 104, 233, 0.5);
}

.status-text {
  font-weight: 500;
}

.toc-list {
  list-style: none;
  padding: 24px 32px;
  margin: 0;
  flex: 1;
}

.toc-item {
  margin-bottom: 4px;
}
.toc-item:last-child {
  margin-bottom: 0;
}

.toc-link {
  display: block;
  padding: 8px 16px;
  color: #6e6e73;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.toc-link:hover {
  background: #fbfbfd;
  color: #1d1d1f;
}
.toc-link.active {
  background: rgba(0, 102, 255, 0.1);
  color: #0066FF;
  font-weight: 600;
}

.docs-toc-footer {
  padding: 24px 32px;
  border-top: 1px solid #d2d2d7;
  background: #ffffff;
}

#docs-search-form {
  position: relative;
  margin-bottom: 16px;
}
#docs-search-form input {
  width: 100%;
  padding: 8px 8px 8px 36px;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  font-size: 14px;
  color: #1d1d1f;
  background: #fbfbfd;
  transition: all 0.2s ease;
}
#docs-search-form input:focus {
  outline: none;
  border-color: #0066FF;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
#docs-search-form input::placeholder {
  color: #86868b;
}
#docs-search-form button {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #86868b;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#docs-search-form button svg {
  width: 16px;
  height: 16px;
}

.docs-meta small {
  font-size: 13px;
  color: #86868b;
}

.docs-content {
  flex: 1;
  width: 100%;
  max-width: 100%;
  padding: 32px 24px;
  margin-left: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .docs-content {
    margin-left: 280px;
    width: calc(100% - 280px);
    padding: 48px 64px;
  }
}
.docs-content * {
  max-width: 100%;
}
.docs-content pre {
  overflow-x: auto;
}

.docs-breadcrumbs {
  margin-bottom: 48px;
}
.docs-breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.docs-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6e6e73;
}
.docs-breadcrumbs a {
  color: #0066FF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.docs-breadcrumbs a:hover {
  color: rgb(0, 81.6, 204);
}
.docs-breadcrumbs svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #ababab;
}
.docs-breadcrumbs span[aria-current=page] {
  color: #1d1d1f;
  font-weight: 500;
}

.docs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 32px;
}
.docs-breadcrumb a {
  color: #0066FF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.docs-breadcrumb a:hover {
  color: rgb(0, 81.6, 204);
}
.docs-breadcrumb svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.docs-breadcrumb span {
  color: #1d1d1f;
  font-weight: 500;
}

.docs-header {
  margin-bottom: 80px;
}
.docs-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  .docs-header h1 {
    font-size: 56px;
  }
}
.docs-header .lead {
  font-size: 21px;
  color: #6e6e73;
  line-height: 1.5;
  max-width: 700px;
}
@media (min-width: 768px) {
  .docs-header .lead {
    font-size: 24px;
  }
}

.docs-page-title {
  font-size: 48px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  .docs-page-title {
    font-size: 56px;
  }
}

.docs-page-description {
  font-size: 21px;
  color: #6e6e73;
  line-height: 1.5;
  margin-bottom: 48px;
}

.docs-section {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .docs-section {
    margin-bottom: 120px;
  }
}
.docs-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 24px;
  padding-top: 24px;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .docs-section h2 {
    font-size: 48px;
  }
}
.docs-section h3 {
  font-size: 21px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 32px 0 24px;
}
@media (min-width: 768px) {
  .docs-section h3 {
    font-size: 24px;
  }
}
.docs-section p {
  font-size: 17px;
  color: #6e6e73;
  line-height: 1.5;
  margin-bottom: 24px;
}
.docs-section ul {
  margin: 24px 0;
  padding-left: 32px;
}
.docs-section ul li {
  font-size: 17px;
  color: #6e6e73;
  line-height: 1.5;
  margin-bottom: 8px;
}
.docs-section pre {
  margin: 32px 0;
}
.docs-section code:not([class*=language-]) {
  background: rgba(29, 29, 31, 0.05);
  padding: 2px 6px;
  border-radius: 6px;
  font-family: "SF Mono", Monaco, "Cascadia Code", monospace;
  font-size: 0.9em;
  color: #cb68e9;
}

.docs-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 24px;
  padding-top: 24px;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .docs-section-title {
    font-size: 48px;
  }
}

.docs-subsection-title {
  font-size: 21px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 32px 0 24px;
}
@media (min-width: 768px) {
  .docs-subsection-title {
    font-size: 24px;
  }
}

.docs-text {
  font-size: 17px;
  color: #6e6e73;
  line-height: 1.5;
  margin-bottom: 24px;
}
.docs-text code {
  background: rgba(29, 29, 31, 0.05);
  padding: 2px 6px;
  border-radius: 6px;
  font-family: "SF Mono", Monaco, "Cascadia Code", monospace;
  font-size: 0.9em;
  color: #cb68e9;
}

.docs-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .docs-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .docs-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.docs-card {
  display: block;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #d2d2d7;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}
.docs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #0066FF;
}
.docs-card:hover .docs-card-arrow {
  transform: translateX(4px);
}

.docs-card-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.docs-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 8px 0;
}

.docs-card p {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.5;
  margin: 0;
}

.docs-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .docs-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.docs-card-link {
  text-decoration: none;
  display: block;
}

.docs-card-title {
  font-size: 21px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.docs-card-description {
  font-size: 17px;
  color: #6e6e73;
  line-height: 1.5;
  margin-bottom: 0;
}

.docs-card-arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 24px;
  color: #0066FF;
  transition: transform 0.2s ease;
}

.docs-table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
  background: #ffffff;
}

.docs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
}
.docs-table thead {
  background: #fbfbfd;
  border-bottom: 1px solid #d2d2d7;
}
.docs-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-weight: 600;
  color: #1d1d1f;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.docs-table tbody tr {
  border-bottom: 1px solid #d2d2d7;
  transition: background 0.2s ease;
}
.docs-table tbody tr:last-child {
  border-bottom: none;
}
.docs-table tbody tr:hover {
  background: rgba(0, 102, 255, 0.02);
}
.docs-table tbody td {
  padding: 24px;
  color: #6e6e73;
  vertical-align: top;
}
.docs-table tbody td code {
  background: rgba(29, 29, 31, 0.05);
  padding: 2px 6px;
  border-radius: 6px;
  font-family: "SF Mono", Monaco, monospace;
  font-size: 0.9em;
  color: #cb68e9;
}

.docs-callout {
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  margin: 32px 0;
  border: 1px solid;
}
.docs-callout svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.docs-callout strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}
.docs-callout p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}
.docs-callout.docs-callout-info {
  background: rgba(0, 102, 255, 0.05);
  border-color: rgba(0, 102, 255, 0.2);
  color: rgb(0, 71.4, 178.5);
}
.docs-callout.docs-callout-warning {
  background: rgba(251, 146, 60, 0.05);
  border-color: rgba(251, 146, 60, 0.2);
  color: rgb(229.7864321608, 106.0552763819, 4.7135678392);
}
.docs-callout.docs-callout-success {
  background: rgba(107, 207, 127, 0.05);
  border-color: rgba(107, 207, 127, 0.2);
  color: rgb(58.1632653061, 179.3367346939, 82.3979591837);
}
.docs-callout.docs-callout-error {
  background: rgba(203, 104, 233, 0.05);
  border-color: rgba(203, 104, 233, 0.2);
  color: rgb(187.6705202312, 59.4855491329, 226.5144508671);
}

.docs-flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 48px 0;
  padding: 48px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
}

.docs-flow-step {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: rgba(0, 102, 255, 0.05);
  border: 2px solid rgba(0, 102, 255, 0.2);
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
}

.docs-flow-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #0066FF;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.docs-flow-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px 0;
}
.docs-flow-content p {
  font-size: 14px;
  color: #6e6e73;
  margin: 0;
}

.docs-flow-arrow {
  font-size: 32px;
  color: #0066FF;
  margin: 8px 0;
}

@media (max-width: 1024px) {
  .docs-content {
    padding: 32px 24px;
  }
  .docs-header h1,
  .docs-page-title {
    font-size: 32px;
  }
  .docs-section-title {
    font-size: 24px;
  }
}
.docs-sidebar {
  position: fixed;
  top: 48px;
  left: 0;
  bottom: 0;
  width: 280px;
  background: #ffffff;
  border-right: 1px solid #d2d2d7;
  overflow-y: auto;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
@media (min-width: 1024px) {
  .docs-sidebar {
    transform: translateX(0);
  }
}
.docs-sidebar.active {
  transform: translateX(0);
}
.docs-sidebar::-webkit-scrollbar {
  width: 6px;
}
.docs-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.docs-sidebar::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 3px;
}
.docs-sidebar::-webkit-scrollbar-thumb:hover {
  background: #ababab;
}

.docs-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid #d2d2d7;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 10;
}

.docs-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  color: #1d1d1f;
  transition: color 0.2s ease;
}
.docs-sidebar-logo svg {
  width: 24px;
  height: 24px;
  color: #0066FF;
}
.docs-sidebar-logo:hover {
  color: #0066FF;
}

.docs-sidebar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  color: #6e6e73;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.docs-sidebar-close svg {
  width: 20px;
  height: 20px;
}
.docs-sidebar-close:hover {
  background: #f5f5f7;
  color: #1d1d1f;
}
@media (min-width: 1024px) {
  .docs-sidebar-close {
    display: none;
  }
}

.docs-search-wrapper {
  padding: 24px 32px;
  border-bottom: 1px solid #d2d2d7;
  position: sticky;
  top: 65px;
  background: #ffffff;
  z-index: 9;
}

.docs-search-input-wrapper {
  position: relative;
}

.docs-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #86868b;
  pointer-events: none;
}

.docs-search-input {
  width: 100%;
  padding: 8px 8px 8px 36px;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  font-size: 14px;
  color: #1d1d1f;
  background: #fbfbfd;
  transition: all 0.2s ease;
}
.docs-search-input:focus {
  outline: none;
  border-color: #0066FF;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
.docs-search-input::placeholder {
  color: #86868b;
}

.docs-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  max-height: 400px;
  overflow-y: auto;
  display: none;
}
.docs-search-results.active {
  display: block;
}

.docs-search-result-item {
  padding: 16px 24px;
  border-bottom: 1px solid #d2d2d7;
  cursor: pointer;
  transition: background 0.2s ease;
}
.docs-search-result-item:last-child {
  border-bottom: none;
}
.docs-search-result-item:hover {
  background: #fbfbfd;
}
.docs-search-result-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px 0;
}
.docs-search-result-item p {
  font-size: 13px;
  color: #6e6e73;
  margin: 0;
}

.docs-sidebar-nav {
  padding: 32px;
}

.docs-nav-section {
  margin-bottom: 32px;
}
.docs-nav-section:last-child {
  margin-bottom: 0;
}

.docs-nav-section-title {
  font-size: 13px;
  font-weight: 600;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.docs-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.docs-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: #6e6e73;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-bottom: 2px;
}
.docs-nav-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
}
.docs-nav-link:hover {
  background: #fbfbfd;
  color: #1d1d1f;
}
.docs-nav-link:hover svg {
  opacity: 1;
}
.docs-nav-link.active {
  background: rgba(0, 102, 255, 0.1);
  color: #0066FF;
  font-weight: 600;
}
.docs-nav-link.active svg {
  opacity: 1;
  color: #0066FF;
}
.docs-nav-link.docs-nav-link-external svg {
  margin-left: auto;
  width: 14px;
  height: 14px;
}

.docs-sidebar-footer {
  padding: 24px 32px;
  border-top: 1px solid #d2d2d7;
  position: sticky;
  bottom: 0;
  background: #ffffff;
}

.docs-version-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #86868b;
}
.docs-version-badge svg {
  width: 16px;
  height: 16px;
}

.docs-sidebar-toggle {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 56px;
  height: 56px;
  background: #0066FF;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 99;
  transition: all 0.2s ease;
}
.docs-sidebar-toggle svg {
  width: 24px;
  height: 24px;
}
.docs-sidebar-toggle:hover {
  background: rgb(0, 91.8, 229.5);
  transform: scale(1.05);
}
.docs-sidebar-toggle:active {
  transform: scale(0.95);
}
@media (min-width: 1024px) {
  .docs-sidebar-toggle {
    display: none;
  }
}

.docs-sidebar-overlay {
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.docs-sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 1024px) {
  .docs-sidebar-overlay {
    display: none;
  }
}

.docs-code-block {
  margin: 32px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

.docs-code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 16px;
}

.docs-code-language {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.docs-code-language svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.docs-code-filename {
  flex: 1;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "SF Mono", Monaco, "Cascadia Code", monospace;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.docs-code-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.docs-code-copy svg {
  width: 16px;
  height: 16px;
}
.docs-code-copy .docs-check-icon {
  color: #6bcf7f;
}
.docs-code-copy:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
.docs-code-copy.copied {
  background: rgba(107, 207, 127, 0.2);
  border-color: rgba(107, 207, 127, 0.4);
}
.docs-code-copy.copied .docs-copy-icon {
  display: none;
}
.docs-code-copy.copied .docs-check-icon {
  display: block;
}

.docs-code-content {
  overflow-x: auto;
}
.docs-code-content pre {
  margin: 0;
  padding: 24px;
  overflow-x: auto;
}
.docs-code-content pre code {
  display: block;
  font-family: "SF Mono", Monaco, "Cascadia Code", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #d4d4d4;
  white-space: pre;
  word-wrap: normal;
}
.docs-code-content pre.line-numbers {
  padding-left: 3.5em;
  position: relative;
  counter-reset: line;
}
.docs-code-content pre.line-numbers code::before {
  counter-increment: line;
  content: counter(line);
  position: absolute;
  left: 0;
  width: 3em;
  text-align: right;
  color: rgba(255, 255, 255, 0.3);
  padding-right: 1em;
  user-select: none;
}
.docs-code-content::-webkit-scrollbar {
  height: 8px;
}
.docs-code-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.docs-code-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.docs-code-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.docs-code-content code .keyword {
  color: #569cd6;
  font-weight: 500;
}
.docs-code-content code .string {
  color: #ce9178;
}
.docs-code-content code .number {
  color: #b5cea8;
}
.docs-code-content code .comment {
  color: #6a9955;
  font-style: italic;
}
.docs-code-content code .function {
  color: #dcdcaa;
}
.docs-code-content code .variable {
  color: #9cdcfe;
}
.docs-code-content code .operator {
  color: #d4d4d4;
}
.docs-code-content code .punctuation {
  color: #d4d4d4;
}
.docs-code-content code .property {
  color: #9cdcfe;
}
.docs-code-content code .class-name {
  color: #4ec9b0;
}
.docs-code-content code .tag {
  color: #569cd6;
}
.docs-code-content code .attr-name {
  color: #9cdcfe;
}
.docs-code-content code .attr-value {
  color: #ce9178;
}
.docs-code-content code .builtin {
  color: #4ec9b0;
}
.docs-code-content code .constant {
  color: #4fc1ff;
}

.docs-tabs {
  margin: 32px 0;
}

.docs-tabs-header {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid #d2d2d7;
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}
.docs-tabs-header::-webkit-scrollbar {
  height: 4px;
}
.docs-tabs-header::-webkit-scrollbar-track {
  background: transparent;
}
.docs-tabs-header::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 2px;
}

.docs-tab-btn {
  padding: 16px 24px;
  background: none;
  border: none;
  color: #6e6e73;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.docs-tab-btn:hover {
  color: #1d1d1f;
  background: #fbfbfd;
}
.docs-tab-btn.active {
  color: #0066FF;
  border-bottom-color: #0066FF;
  font-weight: 600;
}

.docs-tabs-content {
  position: relative;
}

.docs-tab-pane {
  display: none;
}
.docs-tab-pane.active {
  display: block;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
p code:not([class*=language-]),
li code:not([class*=language-]),
td code:not([class*=language-]),
.docs-text code:not([class*=language-]),
.docs-page-description code:not([class*=language-]) {
  background: rgba(29, 29, 31, 0.05);
  padding: 2px 6px;
  border-radius: 6px;
  font-family: "SF Mono", Monaco, "Cascadia Code", monospace;
  font-size: 0.9em;
  color: #cb68e9;
  border: 1px solid rgba(29, 29, 31, 0.1);
}

@media (max-width: 768px) {
  .docs-code-content pre {
    padding: 16px;
  }
  .docs-code-content pre code {
    font-size: 13px;
  }
  .docs-code-header {
    padding: 8px 16px;
  }
  .docs-code-filename {
    display: none;
  }
  .docs-code-copy {
    padding: 4px 8px;
  }
  .docs-code-copy .docs-copy-text {
    display: none;
  }
}
.text-center {
  text-align: center;
}

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

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

.text-white {
  color: #ffffff;
}

.text-black {
  color: #000000;
}

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