/**
 * SEO Check Showcase Styles
 * GitHub-inspired premium design for homepage hero
 */

/* ========================================
   Member Dashboard (for logged-in users)
   ======================================== */

.wa-member-dashboard {
  width: 100%;
  background: linear-gradient(135deg, #f6f8fa 0%, #ffffff 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid #d0d7de;
  box-shadow: 0 1px 3px rgba(27, 31, 36, .12), 0 8px 24px rgba(66, 74, 83, .12);
  padding: 32px;
  margin: 0 auto;
  max-width: 100%;
}

.wa-dashboard-container {
   
  margin: 0 auto;
}

.wa-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  gap: 20px;
}

.wa-dashboard-welcome {
  flex: 1;
}

.wa-dashboard-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.wa-dashboard-title i {
  color: #5137ff;
  width: 26px;
  height: 26px;
}

.wa-dashboard-subtitle {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.wa-dashboard-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.wa-badge-premium {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  border: 1px solid #fbbf24;
}

.wa-badge-premium i {
  color: #f59e0b;
  width: 18px;
  height: 18px;
}

.wa-badge-free {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  color: #3730a3;
  border: 1px solid #818cf8;
}

.wa-badge-free i {
  color: #6366f1;
  width: 18px;
  height: 18px;
}

/* Dashboard Stats Grid - Score Left, Cards Right */
.wa-dashboard-stats-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  margin-bottom: 24px;
  align-items: start;
}

/* Score Card - Left Side */
.wa-dashboard-score-card {
  background: #fff;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(27, 31, 36, 0.12);
}

.wa-score-ring-container-large {
  position: relative;
  width: 100px;
  height: 100px;
}

.wa-dashboard-score-ring {
  width: 100%;
  height: 100%;
}

.wa-dashboard-score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 700;
  color: #7c3aed;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

.wa-dashboard-score-label {
  font-size: 11px;
  font-weight: 600;
  color: #57606a;
  text-align: center;
  line-height: 1.3;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

/* Stats Cards - Right Side - GitHub Feature Card Style */
.wa-dashboard-stats-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.wa-dashboard-stats-cards .wa-feature-card {
  background: #ffffff;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  padding: 12px;
  transition: all 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  box-shadow: 0 0 transparent;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.wa-dashboard-stats-cards .wa-feature-card:hover {
  border-color: #5137ff;
  box-shadow: 0 3px 12px rgba(27, 31, 36, 0.12);
  transform: translateY(-1px);
}

.wa-dashboard-stats-cards .wa-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.wa-dashboard-stats-cards .wa-feature-card:hover .wa-feature-icon {
  transform: scale(1.05);
}

/* Icon colors - GitHub style */
.wa-dashboard-stats-cards .wa-feature-card:nth-child(1) .wa-feature-icon {
  background: #ddf4ff;
}

.wa-dashboard-stats-cards .wa-feature-card:nth-child(1) .wa-feature-icon i {
  color: #0969da;
  width: 18px;
  height: 18px;
}

.wa-dashboard-stats-cards .wa-feature-card:nth-child(2) .wa-feature-icon {
  background: #fff8c5;
}

.wa-dashboard-stats-cards .wa-feature-card:nth-child(2) .wa-feature-icon i {
  color: #9a6700;
  width: 18px;
  height: 18px;
}

.wa-dashboard-stats-cards .wa-feature-card:nth-child(3) .wa-feature-icon {
  background: #f0e7ff;
}

.wa-dashboard-stats-cards .wa-feature-card:nth-child(3) .wa-feature-icon i {
  color: #5137ff;
  width: 18px;
  height: 18px;
}

.wa-dashboard-stats-cards .wa-feature-card:nth-child(4) .wa-feature-icon {
  background: #dafbe1;
}

.wa-dashboard-stats-cards .wa-feature-card:nth-child(4) .wa-feature-icon i {
  color: #1a7f37;
  width: 18px;
  height: 18px;
}

.wa-dashboard-stats-cards .wa-feature-content {
  flex: 1;
  min-width: 0;
}

.wa-dashboard-stats-cards .wa-feature-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: #1f2328;
  margin: 0 0 2px;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
  line-height: 1.3;
}

.wa-dashboard-stats-cards .wa-feature-card p {
  font-size: 11px;
  color: #57606a;
  margin: 0;
  line-height: 1.4;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

/* Token Card - Clickable */
.wa-token-card {
  position: relative;
  cursor: pointer !important;
}

.wa-token-card:hover {
  border-color: #f59e0b !important;
  box-shadow: 0 3px 12px rgba(245, 158, 11, 0.2) !important;
}

.wa-token-card .wa-feature-icon {
  background: #fff8c5 !important;
}

.wa-token-card .wa-feature-icon i {
  color: #9a6700 !important;
}

.wa-token-buy-icon {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.wa-token-buy-icon i {
  width: 18px;
  height: 18px;
  color: #fff;
}

.wa-token-card:hover .wa-token-buy-icon {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.wa-stat-content {
  flex: 1;
}

.wa-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 4px;
}

.wa-stat-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.wa-dashboard-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.wa-dashboard-action {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.wa-dashboard-action:hover {
  border-color: #5137ff;
  box-shadow: 0 4px 12px rgba(81, 55, 255, 0.15);
  transform: translateX(4px);
}

.wa-dashboard-action > i:first-child {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.wa-action-primary > i:first-child {
  background: linear-gradient(135deg, #5137ff 0%, #3d28cc 100%);
}

.wa-action-secondary > i:first-child {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.wa-action-upgrade > i:first-child {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.wa-dashboard-action > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wa-dashboard-action strong {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.wa-dashboard-action span {
  font-size: 13px;
  color: #64748b;
}

.wa-action-arrow {
  width: 20px;
  height: 20px;
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.wa-dashboard-action:hover .wa-action-arrow {
  transform: translateX(4px);
  color: #5137ff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .wa-member-dashboard {
    padding: 24px;
  }

  .wa-dashboard-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .wa-dashboard-title {
    font-size: 24px;
  }

  .wa-dashboard-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wa-dashboard-stats-cards {
    grid-template-columns: 1fr;
  }

  .wa-dashboard-action {
    padding: 16px;
  }

  .wa-dashboard-action > i:first-child {
    width: 40px;
    height: 40px;
  }

  .wa-dashboard-action strong {
    font-size: 15px;
  }

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

/* Container */
.wa-seo-showcase {
  width: 100%;
 
  background: linear-gradient(135deg, #f6f8fa 0%, #ffffff 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
 
  border: 1px solid #d0d7de;
 
  box-shadow: 0 1px 3px rgba(27, 31, 36, .12), 0 8px 24px rgba(66, 74, 83, .12);
  padding: 48px;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.wa-seo-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d0d7de 50%, transparent 100%);
}

.wa-showcase-container {
   
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Content Section */
.wa-showcase-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wa-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #5137ff 0%, #7c3aed 100%);
  color: #ffffff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(81, 55, 255, 0.3);
}

.wa-showcase-badge i {
  width: 14px;
  height: 14px;
}

.wa-showcase-title {
  font-size: 48px;
  font-weight: 600;
  color: #1f2328;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

.wa-showcase-subtitle {
  font-size: 20px;
  color: #57606a;
  margin: 0;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

/* Features List */
.wa-showcase-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-showcase-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #1f2328;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

.wa-showcase-features li i {
  width: 20px;
  height: 20px;
  color: #5137ff;
  flex-shrink: 0;
}

/* CTA Section */
.wa-showcase-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.wa-showcase-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(180deg, #5137ff 0%, #3d28cc 100%);
  color: #ffffff !important;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(240, 246, 252, 0.1);
  width: fit-content;
}

.wa-showcase-button:hover {
  background: linear-gradient(180deg, #6347ff 0%, #5137ff 100%);
  box-shadow: 0 8px 24px rgba(81, 55, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.wa-showcase-button:active {
  background: linear-gradient(180deg, #3d28cc 0%, #2e1f99 100%);
  transform: translateY(0);
}

.wa-showcase-button i {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}

.wa-showcase-button:hover i {
  transform: translateY(3px);
}

.wa-showcase-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #57606a;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

.wa-showcase-note i {
  width: 14px;
  height: 14px;
  color: #57606a;
}

.wa-showcase-guide-link {
  font-size: 11px;
  color: #6b7280;
  margin: 16px 0 0;

  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
  opacity: 0.8;
}

.wa-showcase-guide-link a {
  color: #5137ff;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s;
  white-space: nowrap;
}

.wa-showcase-guide-link a:hover {
  color: #3d28cc;
  text-decoration: underline;
  opacity: 1;
}

/* Visual Preview Section */
.wa-showcase-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-showcase-preview {
  position: relative;
  width: 100%;
  max-width: 500px;
}

/* Browser Window */
.wa-preview-browser {
  background: #ffffff;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(27, 31, 36, 0.15);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.wa-browser-header {
  background: #f6f8fa;
  border-bottom: 1px solid #d0d7de;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-browser-dots {
  display: flex;
  gap: 6px;
}

.wa-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d7de;
}

.wa-browser-dots span:nth-child(1) {
  background: #ff5f57;
}

.wa-browser-dots span:nth-child(2) {
  background: #febc2e;
}

.wa-browser-dots span:nth-child(3) {
  background: #28c840;
}

.wa-browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d0d7de;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
  color: #57606a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

.wa-browser-url i {
  width: 12px;
  height: 12px;
  color: #1a7f37;
}

.wa-browser-content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
}

/* Score Circle */
.wa-preview-score {
  position: relative;
  width: 120px;
  height: 120px;
}

.wa-score-ring {
  width: 100%;
  height: 100%;
  animation: scoreRotate 3s ease-in-out infinite;
}

@keyframes scoreRotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(5deg);
  }
}

.wa-score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.wa-score-number {
  display: block;
  font-size: 32px;
  font-weight: 600;
  color: #1f2328;
  line-height: 1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

.wa-score-label {
  display: block;
  font-size: 14px;
  color: #57606a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

/* Check Items */
.wa-preview-checks {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
  animation: checkSlideIn 0.5s ease-out backwards;
}

.wa-check-item:nth-child(1) {
  animation-delay: 0.1s;
}

.wa-check-item:nth-child(2) {
  animation-delay: 0.2s;
}

.wa-check-item:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes checkSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

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

.wa-check-item i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.wa-check-pass {
  border-color: #1a7f37;
  background: #dafbe1;
  color: #1f2328;
}

.wa-check-pass i {
  color: #1a7f37;
}

.wa-check-warn {
  border-color: #9a6700;
  background: #fff8c5;
  color: #1f2328;
}

.wa-check-warn i {
  color: #9a6700;
}

/* Floating Stats */
.wa-floating-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(27, 31, 36, 0.12);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

.wa-floating-stat i {
  width: 24px;
  height: 24px;
  color: #5137ff;
}

.wa-floating-stat strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #1f2328;
  line-height: 1.2;
}

.wa-floating-stat span {
  display: block;
  font-size: 12px;
  color: #57606a;
  line-height: 1.2;
}

.wa-stat-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.wa-stat-2 {
  top: 50%;
  right: -15%;
  animation-delay: 1s;
}

.wa-stat-3 {
  bottom: 15%;
  left: -5%;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 968px) {

  .wa-showcase-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .wa-showcase-visual {
    order: -1;
    display: none;
  }

  .wa-floating-stat {
    display: none;
  }
}

@media (max-width: 640px) {
  .wa-seo-showcase {
    padding: 60px 16px;
  }

  .wa-showcase-title {
    font-size: 36px;
  }

  .wa-showcase-subtitle {
    font-size: 18px;
  }

  .wa-browser-url {
    font-size: 10px;
    padding: 3px 8px;
  }

  .wa-browser-url i {
    width: 10px;
    height: 10px;
  }

  .wa-showcase-button {
    width: 100%;
  }

  .wa-preview-browser {
    max-width: 100%;
  }
}

/* ========================================
   COMPACT SHOWCASE (1/2 Column Layout)
   ======================================== */

.wa-seo-showcase-compact {
  width: 100%;
  padding: 40px 28px;
  background: #ffffff;
  border: 2px solid #d0d7de;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(27, 31, 36, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-seo-showcase-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5137ff 0%, #7c3aed 100%);
}

.wa-seo-showcase-compact:hover {
  border-color: #5137ff;
  box-shadow: 0 8px 24px rgba(81, 55, 255, 0.15);
  transform: translateY(-2px);
}

.wa-showcase-compact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

/* Badge */
.wa-showcase-compact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #5137ff 0%, #7c3aed 100%);
  color: #ffffff;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
  box-shadow: 0 4px 16px rgba(81, 55, 255, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(81, 55, 255, 0.4);
  }

  50% {
    box-shadow: 0 6px 20px rgba(81, 55, 255, 0.6);
  }
}

.wa-showcase-compact-badge i {
  width: 16px;
  height: 16px;
}

/* Score Circle */
.wa-showcase-compact-score {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 8px 0;
}

.wa-compact-score-ring {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(81, 55, 255, 0.3));
  animation: compactScoreRotate 3s ease-in-out infinite;
}

@keyframes compactScoreRotate {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(5deg) scale(1.05);
  }
}

.wa-compact-score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.wa-compact-score-number {
  display: block;
  font-size: 36px;
  font-weight: 600;
  color: #1f2328;
  line-height: 1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #5137ff 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wa-compact-score-label {
  display: block;
  font-size: 13px;
  color: #57606a;
  font-weight: 500;
  margin-top: 2px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

/* Content */
.wa-showcase-compact-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wa-showcase-compact-title {
  font-size: 28px;
  font-weight: 600;
  color: #1f2328;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

.wa-showcase-compact-subtitle {
  font-size: 16px;
  color: #57606a;
  margin: 0;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

/* USPs */
.wa-showcase-compact-usps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.wa-compact-usp {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: linear-gradient(135deg, #f6f8fa 0%, #ffffff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-compact-usp:hover {
  border-color: #5137ff;
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(81, 55, 255, 0.15);
}

.wa-compact-usp-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5137ff 0%, #7c3aed 100%);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(81, 55, 255, 0.3);
}

.wa-compact-usp-icon i {
  width: 22px;
  height: 22px;
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.wa-compact-usp-icon svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.wa-compact-usp-icon svg * {
  stroke: #ffffff !important;
}

.wa-compact-usp-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.wa-compact-usp-content strong {
  font-size: 15px;
  font-weight: 600;
  color: #1f2328;
  line-height: 1.3;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

.wa-compact-usp-content span {
  font-size: 13px;
  color: #57606a;
  line-height: 1.4;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

/* Button */
.wa-showcase-compact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(180deg, #5137ff 0%, #3d28cc 100%);
  color: #ffffff !important;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(81, 55, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(240, 246, 252, 0.1);
  width: 100%;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

.wa-showcase-compact-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.wa-showcase-compact-button:hover::before {
  left: 100%;
}

.wa-showcase-compact-button:hover {
  background: linear-gradient(180deg, #6347ff 0%, #5137ff 100%);
  box-shadow: 0 8px 24px rgba(81, 55, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  color: #ffffff !important;
}

.wa-showcase-compact-button:active {
  background: linear-gradient(180deg, #3d28cc 0%, #2e1f99 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(81, 55, 255, 0.4);
}

.wa-showcase-compact-button i {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.wa-showcase-compact-button:hover i {
  transform: translateX(4px);
}

/* Trust */
.wa-showcase-compact-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #57606a;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

.wa-showcase-compact-trust i {
  width: 14px;
  height: 14px;
  color: #1a7f37;
  flex-shrink: 0;
}

.wa-showcase-compact-trust span {
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 640px) {
  .wa-seo-showcase-compact {
    padding: 32px 24px;
  }

  .wa-showcase-compact-title {
    font-size: 24px;
  }

  .wa-showcase-compact-subtitle {
    font-size: 15px;
  }

  .wa-browser-url {
    font-size: 10px;
    padding: 3px 8px;
  }

  .wa-browser-url i {
    width: 10px;
    height: 10px;
  }

  .wa-showcase-compact-score {
    width: 100px;
    height: 100px;
  }

  .wa-compact-score-number {
    font-size: 32px;
  }

  .wa-showcase-compact-button {
    padding: 14px 28px;
    font-size: 15px;
  }
}