@charset "UTF-8";
body {
  font-family: Arial, sans-serif;
  background: #e9f5ec;
  margin: 0;
  padding: 0;
}

.domain-link {
  color: #2e7d32;
  text-decoration: underline;
  background: none;
  padding: 0;
  border-radius: 0;
}
.domain-link:hover {
  color: #1b5e20;
}

.container {
  max-width: 1100px;
  margin: auto;
  background: white;
  padding: 30px;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #2e7d32;
}

h2 {
  text-align: center;
  color: #501dd0;
}



.hero-title {
  position: relative;
  display: table;
  margin: 10px auto 18px;
  padding: 6px 14px;
  color: #1b5e20;
  background: linear-gradient(90deg, #a7ff83, #17b978, #a7ff83);
  background-size: 200% 100%;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(23, 185, 120, 0.25);
  animation: hero-sheen 6s ease-in-out infinite, hero-float 4s ease-in-out infinite;
}

.hero-title::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(23,185,120,0.0), rgba(23,185,120,0.6), rgba(23,185,120,0.0));
  border-radius: 3px;
  filter: blur(0.5px);
  animation: hero-underline 2.8s ease-in-out infinite;
}

@keyframes hero-sheen {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes hero-underline {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.seo-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
h3 {
  text-align: center;
  color: red;
}

.offer-text {
  color: green;
  text-decoration: underline;
}

.warranty-banner {
  color: #1b5e20;
  background: linear-gradient(90deg, #e8f5e9, #f1fff4, #e8f5e9);
  display: table;
  margin: 10px auto 18px;
  padding: 8px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.35);
}

.email-type .contact-discount {
  color: red;
  text-align: left;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.email-type {
  flex: 1 1 calc(33.333% - 20px);
  background: #f3faf5; /* subtle light green */
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-left: 5px solid #43a047;
  border-radius: 10px;
  box-sizing: border-box;
  min-width: 260px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.email-type:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.email-type h2 {
  margin-top: 0;
  color: #2a2a2a;
  font-size: 18px;
}

.email-type ul {
  padding-left: 20px;
}

.contact {
  text-align: center;
  margin-top: 40px;
}

.contact a:not(.domain-link) {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 20px;
  background: #4caf50;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.contact a:not(.domain-link):hover {
  background: #388e3c;
}

/* Compact mode: show only first 6 cards by default */
.product-grid.collapsed .email-type:nth-child(n+7) {
  display: none;
}

/* Show more/less button */
.actions {
  text-align: center;
  margin-top: 16px;
}

.show-more-btn {
  display: inline-block;
  padding: 10px 16px;
  background: #4caf50;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.show-more-btn:hover {
  background: #388e3c;
}

/* Filters bar */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 16px 0 20px;
}

.filter-btn {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.filter-btn:hover {
  background: #dcedc8;
}

.filter-btn.active {
  background: #4caf50;
  color: #ffffff;
  border-color: #4caf50;
}

/* Testimonials */
.testimonials {
  margin-top: 24px;
}

.testimonials h2 {
  text-align: center;
  color: #2e7d32;
  font-size: 20px;
  margin-bottom: 12px;
}

.testimonial-card {
  background: #f3faf5;
  border: 1px solid #e5e7eb;
  border-left: 5px solid #43a047;
  border-radius: 10px;
  padding: 16px;
}

.testimonial-card + .testimonial-card {
  margin-top: 12px;
}

.stars {
  color: #f59e0b;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.testimonial-name {
  color: #2a2a2a;
}

.testimonial-text {
  color: #444;
}

/* Tooltip styles */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: #333;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 12px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -150px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
    margin-top: 20px;
  }
  .filters {
    gap: 6px;
    margin: 12px 0 16px;
  }
  .filter-btn {
    padding: 7px 12px;
    font-size: 14px;
  }
  
  .email-type {
    flex: 1 1 100%;
    min-width: auto;
    margin-bottom: 15px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .tooltip .tooltiptext {
    width: 250px;
    margin-left: -125px;
  }
  
  h1 {
    font-size: 24px;
  }
  
  h2 {
    font-size: 18px;
  }
  
  h3 {
    font-size: 16px;
  }
}

/* Redesigned "Highly recommend" effect */
.sparkle-price {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd54f, #ffb300, #ffd54f);
  background-size: 200% 100%;
  color: #2a2a2a;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;
  box-shadow: 0 6px 16px rgba(255, 179, 0, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.6);
  animation: recommend-gradient 3s ease-in-out infinite;
}

.sparkle-price::before {
  content: "★";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffb300;
  text-shadow: 0 0 8px rgba(255, 179, 0, 0.7);
  animation: recommend-star 2s ease-in-out infinite;
}

.sparkle-price::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 70%);
  background-size: 200% 100%;
  animation: recommend-shine 2.2s linear infinite;
  pointer-events: none;
}

@keyframes recommend-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes recommend-star {
  0%, 100% { transform: translateY(-50%) scale(1) rotate(0deg); }
  50% { transform: translateY(-50%) scale(1.2) rotate(-10deg); }
}

@keyframes recommend-shine {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

/* Discount price animation - different from sparkle */
.discount-price {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e, #ff6b6b);
  background-size: 200% 200%;
  color: white;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 20px;
  display: inline-block;
  position: relative;
  animation: discount-pulse 3s ease-in-out infinite, discount-gradient 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  border: 2px solid #ff4757;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.discount-price::before {
  content: "🏷️";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  animation: discount-bounce 2s ease-in-out infinite;
}

.discount-price::after {
  content: "SAVE";
  position: absolute;
  top: -8px;
  right: -5px;
  background: #ff4757;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: bold;
  animation: discount-save 2.5s ease-in-out infinite;
}

@keyframes discount-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
  }
}

@keyframes discount-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes discount-bounce {
  0%, 100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.2);
  }
}

@keyframes discount-save {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Popular badge animation - unique fire effect */
.popular-badge {
  background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35, #ff8c00);
  background-size: 300% 300%;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 15px;
  display: inline-block;
  position: relative;
  margin-left: 8px;
  animation: popular-fire 2.5s ease-in-out infinite, popular-gradient 1.8s ease-in-out infinite;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
  border: 1px solid #ff4500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transform-origin: center;
}

.popular-badge::before {
  content: "✨";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  animation: popular-sparkle 1.5s ease-in-out infinite;
  font-size: 10px;
}

.popular-badge::after {
  content: "✨";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  animation: popular-sparkle 1.5s ease-in-out infinite 0.3s;
  font-size: 10px;
}

@keyframes popular-fire {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
  }
  25% {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 3px 15px rgba(255, 107, 53, 0.7);
  }
  50% {
    transform: scale(1.1) rotate(1deg);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.9);
  }
  75% {
    transform: scale(1.05) rotate(-0.5deg);
    box-shadow: 0 3px 15px rgba(255, 107, 53, 0.7);
  }
}

@keyframes popular-gradient {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes popular-sparkle {
  0%, 100% {
    opacity: 0.4;
    transform: translateY(-50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.3);
  }
}

/* Contact us button - call-to-action effect */
.contact-us {
  background: linear-gradient(45deg, #4caf50, #66bb6a, #4caf50, #2e7d32);
  background-size: 300% 300%;
  color: white;
  padding: 15px 25px;
  border-radius: 25px;
  display: inline-block;
  position: relative;
  animation: contact-pulse 2s ease-in-out infinite, contact-gradient 3s ease-in-out infinite;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  border: 3px solid #2e7d32;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transform-origin: center;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-us:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
}


@keyframes contact-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
  }
}

@keyframes contact-gradient {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* Contact heading - premium neon effect */
.contact-heading {
  background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35, #ff8c00);
  background-size: 400% 400%;
  color: white;
  padding: 20px 40px;
  border-radius: 15px;
  display: inline-block;
  position: relative;
  animation: contact-heading-glow 3s ease-in-out infinite;
  box-shadow: 
    0 0 20px rgba(255, 107, 53, 0.5),
    0 0 40px rgba(255, 107, 53, 0.3),
    0 0 60px rgba(255, 107, 53, 0.1);
  border: 2px solid #ff6b35;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
}

@keyframes contact-heading-glow {
  0%, 100% {
    background-position: 0% 50%;
    box-shadow: 
      0 0 20px rgba(255, 107, 53, 0.5),
      0 0 40px rgba(255, 107, 53, 0.3),
      0 0 60px rgba(255, 107, 53, 0.1);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 
      0 0 30px rgba(255, 107, 53, 0.8),
      0 0 60px rgba(255, 107, 53, 0.5),
      0 0 90px rgba(255, 107, 53, 0.2);
  }
}

@keyframes contact-lightning {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.3);
  }
}

/* Product icon animation - scale and shine effect (restored) */
.product-icon {
  animation: icon-pulse 2s ease-in-out infinite;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.product-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  animation: icon-shine 3s ease-in-out infinite;
  pointer-events: none;
}

/* Autoplay only; no hover gating */

@keyframes icon-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes icon-shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Remove previous continuous pulse/shine rules if present */
/* keep shine stripe active */

/* Ensure previous infinite animation is disabled */
/* ensure autoplay pulse remains enabled */

@media (max-width: 480px) {
  .container {
    padding: 10px;
    margin-top: 10px;
  }
  
  .email-type {
    padding: 15px;
  }
  
  .email-type h2 {
    font-size: 16px;
  }
  
  .email-type ul {
    padding-left: 15px;
  }
  
  .contact {
    margin-top: 20px;
  }
  
  .contact a:not(.domain-link) {
    padding: 10px 15px;
    font-size: 14px;
  }
}


/* Generic Student Deal chip (Spotify etc.) */
.deal-chip {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  color: #ffffff;
  background: linear-gradient(90deg, #1db954, #1ed760, #1db954); /* Spotify green */
  background-size: 200% 100%;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 3px 10px rgba(29, 185, 84, 0.22);
  border: 1px solid rgba(255,255,255,0.7);
  animation: deal-gradient 3s ease-in-out infinite;
}

@keyframes deal-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Ribbon size adjustments for smaller screens */
@media (max-width: 768px) {
  .github-ribbon {
    font-size: 10px;
    padding: 3px 28px;
    right: -22px;
    top: 8px;
  }
}

@media (max-width: 480px) {
  .github-ribbon {
    font-size: 9px;
    padding: 2px 22px;
    right: -18px;
    top: 6px;
  }
}

/* Fast contact badge */
.fast-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #1b5e20;
  background: linear-gradient(90deg, #a7ff83, #17b978, #a7ff83);
  background-size: 200% 100%;
  border: 1px solid rgba(23,185,120,0.35);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(23, 185, 120, 0.25);
  animation: hero-sheen 6s ease-in-out infinite;
}
