.my-plugin-offer-list {
  margin: 2rem 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.offer-filter {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr auto;
  gap: 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  margin-bottom: 2.5rem;
  align-items: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.offer-filter:hover {
  border-color: #06b6d4;
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.12);
}

.offer-filter input,
.offer-filter select,
.offer-filter button {
  padding: 0.875rem 1.25rem;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
}

.offer-filter input::placeholder {
  color: #94a3b8;
}

.offer-filter input:focus,
.offer-filter select:focus {
  outline: none;
  border-color: #06b6d4;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.offer-filter button {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  border: 2px solid transparent;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
  white-space: nowrap;
  padding: 0.875rem 2rem;
}

.offer-filter button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(6, 182, 212, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
  .offer-filter {
    grid-template-columns: 1fr 1fr;
  }
  .offer-filter input {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .offer-filter {
    grid-template-columns: 1fr;
  }
  .offer-filter input,
  .offer-filter select,
  .offer-filter button {
    grid-column: 1;
  }
}
.offer-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4, #ec4899, #f97316);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
  border-color: #06b6d4;
}

.offer-card:hover::before {
  transform: scaleX(1);
}

/* Featured Offer Styles */
.offer-card.featured-offer {
  border: 3px solid transparent;
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.2);
  position: relative;
}

.offer-card.featured-offer::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(135deg, #fbbf24, #f97316, #ec4899);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  animation: border-flow 3s linear infinite;
}

@keyframes border-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.offer-card.featured-offer > * {
  position: relative;
  z-index: 1;
}

.offer-card.featured-offer:hover {
  box-shadow: 0 24px 80px rgba(249, 115, 22, 0.3);
}
.featured-badge {
  position: absolute;
  top: -8px;
  right: 1.5rem;
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  animation: featured-float 3s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes featured-float {
  0%, 100% { 
    transform: translateY(0) scale(1); 
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4); 
  }
  50% { 
    transform: translateY(-4px) scale(1.05); 
    box-shadow: 0 12px 36px rgba(249, 115, 22, 0.6); 
  }
}
.offer-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 0.75rem;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover .offer-logo {
  border-color: #06b6d4;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.15);
}

.offer-logo img {
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.offer-card h3,
.offer-card h4 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.01em;
}

.offer-card h3 a,
.offer-card h4 a {
  color: #0f172a;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(100% - 3px), #06b6d4 3px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline;
}

.offer-card h3 a:hover,
.offer-card h4 a:hover {
  color: #06b6d4;
  background-size: 100% 100%;
}
.offer-title {
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}
.offer-type-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.offer-meta {
  color: #6b7280;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.offer-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.offer-status-badge.status-expiring-soon {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #fff;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
  animation: expiring-pulse 1.5s ease-in-out infinite;
}

.offer-status-badge.status-upcoming {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
  animation: upcoming-glow 2s ease-in-out infinite;
}

@keyframes expiring-pulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3); 
  }
  50% { 
    transform: scale(1.08); 
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.5); 
  }
}

@keyframes upcoming-glow {
  0%, 100% { 
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3); 
  }
  50% { 
    box-shadow: 0 6px 24px rgba(6, 182, 212, 0.5); 
  }
}
.offer-brand {
  font-weight: 700;
  color: #1d4ed8;
  font-size: 0.95rem;
  margin: 0.25rem 0 0.75rem;
}
.offer-description {
  flex: 1;
  margin: 0.5rem 0 0.75rem;
}
.offer-description p {
  margin: 0;
  color: #374151;
  line-height: 1.6;
  font-size: 0.95rem;
}
.read-more {
  color: #1d4ed8;
  font-weight: 600;
  white-space: nowrap;
}
.offer-code-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(135deg, #84cc16, #22c55e);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  letter-spacing: 0.8px;
  margin-bottom: 0.75rem;
  font-family: 'Courier New', monospace;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-shadow: 0 8px 24px rgba(132, 204, 22, 0.3);
  position: relative;
}

.offer-code-copy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.offer-code-copy-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(132, 204, 22, 0.4);
}

.offer-code-copy-btn:hover::before {
  left: 100%;
}
.offer-cta-code {
  margin-bottom: 0 !important;
}
.scissor-icon {
  font-size: 1.1rem;
  margin-left: 0.25rem;
  display: inline-block;
  transform: scaleX(-1) rotate(90deg);
  flex-shrink: 0;
}
.offer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  gap: 0.75rem;
}
.offer-stats {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #6b7280;
}
.offer-views {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.offer-votes-inline {
  display: flex;
  gap: 0.5rem;
}
.vote-btn-inline {
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.vote-btn-inline:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  transform: translateY(-1px);
}
.vote-btn-inline:active {
  transform: translateY(0);
}

.vote-counts-display {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #6b7280;
  align-items: center;
}

.vote-count-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: #374151;
}
.offer-card > p {
  flex: 1;
  margin: 0.5rem 0;
  color: #374151;
  line-height: 1.6;
}
.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  border: 2px solid transparent;
  border-radius: 14px;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
  position: relative;
  overflow: hidden;
}

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

.offer-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.offer-cta:hover::before {
  left: 100%;
}
.offer-details {
  background: linear-gradient(135deg, #f9fafb 0%, #f0f9ff 100%);
  border: 1px solid #e0e7ff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.offer-details p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #374151;
}
.offer-details strong {
  color: #1f2937;
  font-weight: 700;
}
.offer-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}
.offer-votes {
  display: flex;
  gap: 0.75rem;
}
.vote-btn {
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.vote-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  transform: translateY(-1px);
}
.vote-btn:active {
  transform: translateY(0);
}
.my-plugin-subscribe {
  background: linear-gradient(135deg, #ecfeff 0%, #eef2ff 55%, #fff7ed 100%);
  padding: 1.75rem;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  max-width: 500px;
  margin: 2rem auto;
}
.my-plugin-subscribe h4 {
  margin: 0 0 0.5rem 0;
  color: #0f172a;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-family: 'Sora', sans-serif;
}
.subscribe-description {
  margin: 0 0 1rem 0;
  color: #475569;
  font-size: 0.95rem;
}
.my-plugin-subscribe form {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.my-plugin-subscribe input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-size: 0.95rem;
  background: #fff;
  color: #0f172a;
  transition: all 0.2s ease;
}
.my-plugin-subscribe input:focus {
  outline: none;
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}
.my-plugin-subscribe button {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.25);
}
.my-plugin-subscribe button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6, 182, 212, 0.35);
}

/* Responsive Subscribe Form */
@media (max-width: 640px) {
  .my-plugin-subscribe {
    padding: 1.25rem;
  }
  
  .my-plugin-subscribe form {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .my-plugin-subscribe input {
    width: 100%;
  }
  
  .my-plugin-subscribe button {
    width: 100%;
    padding: 0.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .my-plugin-subscribe {
    padding: 1rem;
    margin: 1.5rem auto;
  }
  
  .my-plugin-subscribe h4 {
    font-size: 1.1rem;
  }
}

.subscribe-message {
  color: #0f766e;
  font-weight: 700;
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
}
.my-plugin-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.my-plugin-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f3f4f6;
  color: #111827;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08);
}
.my-plugin-social .social-link svg {
  width: 20px;
  height: 20px;
}
.my-plugin-social .social-link-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.my-plugin-social .social-link:hover {
  transform: translateY(-2px);
  background: #e5e7eb;
}
.my-plugin-related,
.my-plugin-top {
  margin: 3rem 0;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #f9fafb 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.my-plugin-related h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;
}

.top-offers-header {
  text-align: center;
  margin-bottom: 2rem;
}

.top-offers-header h3 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  color: #111827;
  background: linear-gradient(135deg, #1d4ed8 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.top-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.top-offer-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.top-offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4, #ec4899, #f97316);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-offer-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #06b6d4;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
}

.top-offer-card:hover::before {
  transform: scaleX(1);
}

.rank-badge {
  position: absolute;
  top: -10px;
  right: 1.5rem;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
  animation: rank-float 3s ease-in-out infinite;
}

@keyframes rank-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.rank-badge.rank-1 {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.5);
  animation: rank-pulse 2s ease-in-out infinite;
}

@keyframes rank-pulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.5);
  }
  50% { 
    transform: scale(1.08);
    box-shadow: 0 12px 36px rgba(251, 191, 36, 0.7);
  }
}

.rank-badge.rank-2 {
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  box-shadow: 0 8px 24px rgba(148, 163, 184, 0.4);
}

.rank-badge.rank-3 {
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.rank-medal {
  font-size: 1.1rem;
  line-height: 1;
}

.rank-number {
  font-size: 0.85rem;
}

.featured-ribbon {
  position: absolute;
  top: 12px;
  left: -30px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  padding: 0.3rem 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.top-offer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

.top-offer-logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 2px solid #e2e8f0;
  overflow: hidden;
  padding: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-offer-card:hover .top-offer-logo {
  border-color: #06b6d4;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.15);
}

.top-offer-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.top-offer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.top-offer-brand {
  font-weight: 700;
  color: #06b6d4;
  font-size: 0.95rem;
  font-family: 'Sora', sans-serif;
}

.top-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-status-badge.status-active {
  background: linear-gradient(135deg, #84cc16, #22c55e);
  color: #fff;
  box-shadow: 0 4px 16px rgba(132, 204, 22, 0.3);
}

.top-status-badge.status-expiring-soon {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #fff;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
  animation: expiring-pulse 1.5s ease-in-out infinite;
}

.top-status-badge.status-upcoming {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
  animation: upcoming-glow 2s ease-in-out infinite;
}

.top-offer-title {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.01em;
}

.top-offer-title a {
  color: #0f172a;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(100% - 3px), #06b6d4 3px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline;
}

.top-offer-title a:hover {
  color: #06b6d4;
  background-size: 100% 100%;
}

.top-offer-description {
  margin: 0 0 1rem 0;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

.top-offer-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-offer-card:hover .top-offer-stats {
  border-color: #06b6d4;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #6b7280;
  font-size: 0.85rem;
}

.stat-icon {
  font-size: 1rem;
}

.stat-item strong {
  color: #1f2937;
  font-weight: 700;
}

.top-offer-code-display {
  margin-bottom: 1rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.code-label {
  display: none;
}

.top-code-display-btn {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(135deg, #84cc16, #22c55e);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: 'Courier New', monospace;
  box-shadow: 0 8px 24px rgba(132, 204, 22, 0.3);
  position: relative;
  overflow: hidden;
}

.top-code-display-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.top-code-display-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(132, 204, 22, 0.4);
}

.top-code-display-btn:hover::before {
  left: 100%;
}

.top-offer-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.top-offer-card.has-coupon .top-offer-code-display {
  margin-top: auto;
}

.top-offer-card.has-coupon .top-offer-actions {
  margin-top: 0;
}

.top-code-btn {
  flex: 1;
}

.top-cta {
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.top-cta-code {
  width: 100%;
  text-align: center;
  white-space: nowrap;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  border: 2px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
  position: relative;
  overflow: hidden;
}

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

.top-cta-code:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.top-cta-code:hover::before {
  left: 100%;
}

@media (max-width: 768px) {
  .top-offers-grid {
    grid-template-columns: 1fr;
  }
  
  .my-plugin-top {
    padding: 1.5rem;
  }
  
  .top-offers-header h3 {
    font-size: 1.5rem;
  }
}
.my-plugin-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.my-plugin-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  text-decoration: none;
  transition: all 0.2s ease;
}
.my-plugin-social .social-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}
.my-plugin-social .social-link svg {
  width: 20px;
  height: 20px;
}
.my-plugin-social .social-link-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.offer-pagination {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.pagination-info {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
}

.pagination-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.pagination-prev,
.pagination-next,
.pagination-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 0.65rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.pagination-prev:hover,
.pagination-next:hover,
.pagination-number:hover {
  border-color: #06b6d4;
  color: #06b6d4;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.2);
  text-decoration: none;
}

.pagination-number.current {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  border-color: #06b6d4;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.pagination-ellipsis {
  padding: 0 0.25rem;
  color: #9ca3af;
}

@media (max-width: 640px) {
  .pagination-links {
    justify-content: center;
  }
}

/* Top Offers Widget */
.top-offers-widget {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.top-offer-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.top-offer-item:hover {
  border-color: #1d4ed8;
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.1);
}

.top-offer-logo {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  background: #f9fafb;
}

.top-offer-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

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

.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.top-offer-title {
  margin: 0 0 0.25rem 0;
  font-size: 0.9rem;
  line-height: 1.3;
}

.top-offer-title a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
}

.top-offer-title a:hover {
  color: #1d4ed8;
}

.top-offer-brand {
  margin: 0 0 0.4rem 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.top-offer-stats {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.stat-upvotes,
.stat-views {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.widget .top-offers-widget {
  margin: 0;
}
