/* [project]/src/styles/protected-page.css [app-client] (css) */
.protected-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.protected-hero-v2 {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.protected-hero-badge {
  background: var(--glass-bg);
  border: var(--glass-border);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-secondary);
  box-shadow: var(--glass-shadow);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.protected-hero-badge-icon {
  color: var(--discord-blurple);
}

.protected-hero-title {
  color: var(--text-primary);
  letter-spacing: -.02em;
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .protected-hero-title {
    font-size: 64px;
  }
}

.protected-hero-title-highlight {
  background: linear-gradient(135deg, var(--discord-blurple), var(--discord-blurple-hover));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.protected-hero-subtitle {
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
}

.protected-stats-container {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  display: flex;
}

@media (min-width: 768px) {
  .protected-stats-container {
    gap: 24px;
  }
}

.protected-stat-group {
  -webkit-backdrop-filter: blur(12px);
  background: #0c0d1199;
  border: 1px solid #ffffff0a;
  border-radius: 16px;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  padding: 16px 24px;
  display: flex;
  box-shadow: 0 8px 24px #0003;
}

.protected-stat-value {
  color: #fff;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .protected-stat-value {
    font-size: 40px;
  }
}

.protected-stat-value.highlight {
  color: #5865f2;
}

.protected-stat-label {
  color: #fff6;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 11px;
  font-weight: 700;
}

.protected-filter-bar-v2 {
  z-index: 10;
  background: var(--glass-bg);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  padding: 12px;
  display: flex;
  position: relative;
}

.protected-search-wrap-v2 {
  flex: 1;
  min-width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .protected-search-wrap-v2 {
    min-width: 240px;
    max-width: 400px;
  }
}

.protected-search-icon-v2 {
  color: var(--text-tertiary);
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.protected-search-input-v2 {
  width: 100%;
  color: var(--text-primary);
  background: none;
  border: none;
  padding: 12px 16px 12px 44px;
  font-size: 15px;
}

.protected-search-input-v2:focus {
  outline: none;
}

.protected-search-input-v2::placeholder {
  color: var(--text-tertiary);
}

.protected-filter-controls {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  display: flex;
}

@media (min-width: 768px) {
  .protected-filter-controls {
    justify-content: flex-end;
    width: auto;
  }
}

.protected-platform-tabs {
  background: var(--glass-tertiary-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  flex: 1;
  align-items: center;
  padding: 4px;
  display: flex;
  overflow-x: auto;
}

@media (min-width: 768px) {
  .protected-platform-tabs {
    flex: initial;
  }
}

.protected-platform-tab {
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
  position: relative;
}

.protected-platform-tab:hover {
  color: var(--text-primary);
}

.protected-platform-tab.active {
  color: #fff;
}

.protected-platform-tab-bg {
  background: var(--discord-blurple);
  z-index: -1;
  border-radius: 8px;
  position: absolute;
  inset: 0;
  box-shadow: 0 2px 8px #5865f266;
}

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

.protected-sort-btn {
  background: var(--glass-tertiary-bg);
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.protected-sort-btn:hover {
  background: var(--glass-bg);
  border-color: var(--discord-blurple);
}

.protected-sort-menu {
  background: var(--bg-primary);
  border: var(--glass-border);
  z-index: 50;
  border-radius: 12px;
  width: 200px;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  overflow: hidden;
  box-shadow: 0 12px 32px #0003;
}

.protected-sort-option {
  width: 100%;
  color: var(--text-secondary);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.protected-sort-option:hover {
  background: var(--glass-tertiary-bg);
  color: var(--text-primary);
}

.protected-sort-option.active {
  color: var(--discord-blurple);
  background: #5865f21a;
}

.protected-grid-v2 {
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  display: grid;
}

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

@media (min-width: 1024px) {
  .protected-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.protected-card-v2 {
  background: var(--glass-bg);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px 24px;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s, border-color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.protected-card-v2:hover {
  border-color: var(--discord-blurple);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px #0000002e, 0 0 0 1px #5865f226;
}

.protected-card-glow {
  background: var(--discord-blurple);
  opacity: .04;
  filter: blur(60px);
  pointer-events: none;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  transition: opacity .3s;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.protected-card-v2:hover .protected-card-glow {
  opacity: .12;
}

.protected-card-header-v2 {
  z-index: 2;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
  display: flex;
  position: relative;
}

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

.protected-avatar-ring {
  background: linear-gradient(135deg, var(--discord-blurple), transparent);
  border-radius: 50%;
  padding: 3px;
  transition: background .3s;
}

.protected-card-v2:hover .protected-avatar-ring {
  background: linear-gradient(135deg, var(--discord-blurple), var(--discord-blurple-hover));
}

.protected-avatar-inner {
  background: var(--bg-primary);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

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

.protected-avatar-fallback {
  background: var(--glass-tertiary-bg);
  width: 100%;
  height: 100%;
  color: var(--text-tertiary);
  justify-content: center;
  align-items: center;
  display: flex;
}

.protected-verified-badge-v2 {
  background: var(--bg-secondary);
  color: var(--discord-blurple);
  border-radius: 50%;
  padding: 2px;
  display: flex;
  position: absolute;
  bottom: -2px;
  right: -2px;
}

.protected-platform-icon-v2 {
  width: 28px;
  height: 28px;
  color: var(--text-secondary);
  opacity: .7;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  top: -16px;
  right: -12px;
}

.protected-card-v2:hover .protected-platform-icon-v2 {
  opacity: 1;
}

.protected-external-link-icon-v2 {
  width: 28px;
  height: 28px;
  color: var(--text-secondary);
  opacity: .7;
  z-index: 10;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  transition: opacity .2s, color .2s;
  display: flex;
  position: absolute;
  top: -16px;
  left: -12px;
}

.protected-card-v2:hover .protected-external-link-icon-v2 {
  opacity: 1;
  color: var(--discord-blurple);
}

.protected-card-info-v2 {
  text-align: center;
  z-index: 2;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.protected-card-name {
  color: var(--text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  transition: color .2s;
  overflow: hidden;
}

.protected-card-v2:hover .protected-card-name {
  color: var(--discord-blurple);
}

.protected-card-handle {
  color: var(--text-tertiary);
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.protected-bento-stats {
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.protected-bento-item {
  border: 1px solid var(--border);
  background: #ffffff08;
  border-radius: 12px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  padding: 10px 8px;
  transition: transform .2s, background .2s;
  display: flex;
  position: relative;
}

.protected-bento-item:hover {
  background: #ffffff0f;
  transform: translateY(-2px);
}

.protected-bento-item:after {
  display: none !important;
}

.protected-bento-val {
  color: var(--discord-blurple);
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 700;
}

.protected-bento-lbl {
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10px;
  font-weight: 600;
}

.protected-card-bio {
  z-index: 2;
  text-align: center;
  flex-grow: 1;
  width: 100%;
  margin-bottom: 24px;
  position: relative;
}

.protected-bio-text {
  color: var(--text-secondary);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.protected-bio-link {
  color: var(--discord-blurple);
  background: #5865f214;
  border: 1px solid #5865f233;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.protected-bio-link:hover {
  background: #5865f226;
}

.protected-card-btn {
  width: 100%;
  color: var(--discord-blurple);
  z-index: 2;
  background: none;
  border: 1px solid #5865f240;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  display: flex;
  position: relative;
}

.protected-card-btn:hover {
  border-color: var(--discord-blurple);
  background: #5865f214;
  box-shadow: 0 0 0 3px #5865f21a;
}

.protected-card-btn-disabled {
  border: 1px dashed var(--border);
  width: 100%;
  color: var(--text-tertiary);
  cursor: default;
  z-index: 2;
  background: none;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  position: relative;
}

.protected-card-btn-disabled:hover {
  border-color: var(--border);
  color: var(--text-tertiary);
  background: none;
}

.protected-expiry-pill {
  background: var(--glass-tertiary-bg);
  border: 1px solid var(--border);
  color: var(--text-tertiary);
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.protected-expiry-pill.expired {
  color: #ef4444;
  background: #ef44441a;
  border-color: #ef44444d;
}

.protected-expiry-pill.overdue {
  color: #eab308;
  background: #eab3081a;
  border-color: #eab3084d;
}

.protected-cta-section {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
  padding: 0 24px;
}

.protected-cta-title-v3 {
  color: var(--text-primary);
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .protected-cta-title-v3 {
    font-size: 48px;
  }
}

.protected-cta-title-hl {
  background: var(--discord-blurple);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.protected-cta-subtitle-v3 {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 1.6;
}

.protected-cta-card-centered {
  background: var(--glass-bg);
  border: var(--glass-border);
  text-align: center;
  max-width: 440px;
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
  margin: 0 auto;
  padding: 40px 32px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}

.protected-cta-card-centered:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px #0000001a;
}

.protected-cta-card-centered:before {
  content: "";
  background: linear-gradient(90deg, var(--discord-blurple), var(--discord-blurple-hover));
  border-radius: 24px 24px 0 0;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.protected-cta-icon-wrapper {
  width: 48px;
  height: 48px;
  color: var(--discord-blurple);
  background: #5865f21a;
  border: 1px solid #5865f233;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  display: inline-flex;
}

.protected-cta-card-title {
  color: var(--text-primary);
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
}

.protected-cta-card-desc {
  color: var(--text-secondary);
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.6;
}

.protected-cta-features-v3 {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  display: flex;
}

.protected-cta-feature-v3 {
  background: var(--glass-tertiary-bg);
  border: 1px solid var(--border);
  color: var(--discord-blurple);
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
  display: inline-flex;
}

.protected-cta-feature-v3:hover {
  border-color: var(--discord-blurple);
  background: #5865f214;
}

.protected-cta-btn-primary {
  background: var(--discord-blurple);
  color: #fff;
  border: none;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: flex;
  box-shadow: 0 4px 12px #5865f24d;
}

.protected-cta-btn-primary:hover {
  background: var(--discord-blurple-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #5865f266;
}

.protected-state-v2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 24px;
  display: flex;
}

.protected-loader-v2 {
  border: 4px solid var(--border);
  border-top-color: var(--discord-blurple);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: 1s linear infinite protected-spin;
}

.protected-error-v2 {
  color: #ef4444;
  text-align: center;
  background: #ef44441a;
  border: 1px solid #ef444433;
  border-radius: 16px;
  max-width: 600px;
  padding: 24px 32px;
  font-size: 16px;
  font-weight: 600;
}

.protected-empty-v2 {
  color: var(--text-tertiary);
  text-align: center;
  padding: 48px 24px;
  font-size: 16px;
}

/*# sourceMappingURL=src_styles_protected-page_583aa628.css.map*/