:root {
  --neon-pink: #ff17bb;
  --neon-blue: #00f3ff;
  --neon-green: #39ff14;
  --neon-purple: #bc13fe;
  --neon-yellow: #f7e05c;
  --deep-space: #0a0f1b;
  --cosmic-blue: #20395c;
  --holly-red: #ff1744;
  --snow-white: #f0f8ff;
  --frost-silver: #e0e5ec;
  --christmas-gold: #ffd700;
}

/* Main Content Styles */
main {
  max-width: 1650px;
  margin: 0 auto;
  padding: 2rem 0.75rem;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin: 2rem auto 3rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(11, 15, 26, 0.8), rgba(32, 71, 156, 0.4));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue), var(--neon-green));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
}

.hero-section h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  color: var(--neon-yellow);
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(247, 224, 92, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-section p {
  font-size: 1.4rem;
  color: var(--frost-silver);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
  font-family: 'Orbitron', sans-serif;
}

.stat-label {
  font-size: 1rem;
  color: var(--frost-silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* New Cards Section */
.new-cards-section {
  margin: 4rem auto;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1400px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

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

/* In the New Cards Section, update the 480px breakpoint */
@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.home-promo-banner {
  display: block;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  position: relative;
}

.home-promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 3px;
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--holly-red), var(--neon-green));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.home-promo-banner:hover::before {
  opacity: 1;
}

.home-promo-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.home-promo-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.home-featured-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1650px;
  flex-wrap: wrap;
}

.home-tab-item {
  flex: 1 1 calc(50% - 1rem);
  min-width: 300px;
  background: linear-gradient(145deg, rgba(11, 15, 26, 0.9), rgba(32, 71, 156, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.home-tab-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.home-tab-item:hover::before {
  opacity: 0.8;
}

.home-tab-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  background: linear-gradient(145deg, rgba(11, 15, 26, 0.95), rgba(32, 71, 156, 0.5));
}

.home-tab-item h3 {
  color: var(--neon-yellow);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(247, 224, 92, 0.5);
  transition: all 0.3s ease;
}

.home-tab-item p {
  color: var(--frost-silver);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 500;
}

.home-tab-item:hover h3 {
  color: var(--neon-blue);
  text-shadow: 0 0 15px rgba(0, 243, 255, 0.7);
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.feature-highlights li {
  color: var(--frost-silver);
  font-size: 0.95rem;
  line-height: 1.5;
  display: block;
  text-align: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-highlights li:last-child {
  border-bottom: none;
}

/* COMPLETELY REMOVED GREEN ARROWS - No ::before pseudo-element at all */

/* Brands Section */
.brands-section {
  margin: 3rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: var(--neon-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(247, 224, 92, 0.5);
  position: relative;
  display: block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-pink), transparent);
}

.brands-grid {
  display: grid;
  gap: 1.5rem;
  margin: 1rem auto;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brand-card {
  text-align: center;
  background: rgba(11, 15, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.brand-card img.brand-logo {
  max-width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 1rem;
  background-color: white;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.brand-card:hover img.brand-logo {
  transform: scale(1.05);
}

.view-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
  color: var(--deep-space);
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Exo 2', sans-serif;
  box-shadow: 0 4px 15px rgba(0, 243, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-btn:hover {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-yellow));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(57, 255, 20, 0.6);
  color: var(--deep-space);
  text-decoration: none;
}

/* New Sets Section */
.new-sets-section {
  margin: 4rem auto;
}

.sets-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 1400px) {
  .sets-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 1200px) {
  .sets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .sets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.set-card {
  background: rgba(11, 15, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 1rem;
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.set-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, var(--holly-red), var(--christmas-gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.set-card:hover::before {
  opacity: 1;
}

.set-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.set-brand {
  font-size: 0.8rem;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.set-title a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1rem;
  color: var(--snow-white);
  text-decoration: none;
  margin: 0.5rem 0;
  font-weight: 600;
  transition: color 0.3s ease;
}

.set-title a:hover {
  color: var(--neon-yellow);
}

.set-card p {
  margin: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--frost-silver);
}

.set-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background-color: white;
  padding: 0.5rem;
  border-radius: 8px;
  margin: 0.5rem 0;
}

.release-date {
  font-size: 0.9rem;
  color: var(--neon-yellow) !important;
  font-weight: 600;
  margin: 0.5rem 0;
}

.release-prefix {
  display: inline;
  color: var(--frost-silver);
}

.set-card .release-date-value {
  display: inline;
  color: var(--neon-yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
  .new-sets-section h2 {
    font-size: 1.25rem;
  }
  
  .home-featured-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  
  .home-tab-item {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 2rem 1.5rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }

  .feature-highlights li {
    text-align: center;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .home-tab-item {
    padding: 1.5rem 1rem;
  }

  .home-tab-item h3 {
    font-size: 1.3rem;
  }
  
  .home-tab-item p {
    font-size: 0.95rem;
  }
  
  .hero-section {
    padding: 2rem 1rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .brand-card img.brand-logo {
    height: 110px;
    padding: 10px;
  }

  .feature-highlights {
    gap: 0.8rem;
  }
  
  .feature-highlights li {
    font-size: 0.85rem;
  }
}