/* --- MODERN SWIPER CARD --- */
.modern-card {
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 370px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.10);
  transition: all 0.3s ease;
}

.modern-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), 
      rgba(255, 215, 0, 0.1),
      transparent 40%
  );
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), 
      rgba(255, 255, 255, 0.1),
      transparent 40%
  );
  opacity: 0;
  z-index: 1;
  mix-blend-mode: soft-light;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modern-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 
      0 8px 40px rgba(255,215,0,0.15),
      0 2px 16px rgba(0,0,0,0.2);
  transform: translateY(-4px);
}

.modern-card:hover::before,
.modern-card:hover::after {
  opacity: 1;
}
.modern-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #181406;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.modern-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  background: #222;
}
.modern-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, #FFD700 0%, #fff6a9 100%);
  color: #222;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85em;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(255,215,0,0.13);
  letter-spacing: 1px;
  z-index: 2;
  text-transform: uppercase;
}
.modern-badge.out {
  background: #888;
  color: #fff;
}
.modern-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 18px 18px 18px;
  background: none;
  text-align: center;
}

.modern-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(255,215,0,0.08);
  flex: 1;
  text-align: center;
  margin-bottom: 2px;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2; /* İçerikten yüksek olsun */
    position: relative;
}
.modern-card-title a {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: inherit;
}
.modern-card-title a::after,
.modern-card-title a::before {
  display: none !important;
  content: none !important;
}
.modern-card-title a:hover,
.modern-card-title a:focus {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
a, a::before, a::after {
  all: unset;
  color: inherit;
  cursor: pointer;
}

.modern-card-price-box {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%,
        rgba(255, 215, 0, 0.05) 100%
    );
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: fit-content;
    backdrop-filter: blur(5px);
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.1),
        inset 0 0 20px rgba(255, 215, 0, 0.05);
    margin: 0 auto;
}

.modern-card-price-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.2) 25%, 
        rgba(255, 215, 0, 0.4) 50%,
        rgba(255, 215, 0, 0.2) 75%,
        transparent 100%
    );
    opacity: 0;
    animation: priceShine 2s infinite;
    filter: blur(3px);
}

.modern-card-price-box::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(90deg, 
        rgba(255, 215, 0, 0.5),
        rgba(255, 246, 169, 0.8),
        rgba(255, 215, 0, 0.5)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    animation: borderGlow 2s ease-in-out infinite;
}

.modern-card:hover .modern-card-price-box {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
    animation: priceHover 1.5s ease-in-out infinite;
}

.modern-card:hover .modern-card-price-box::after {
    opacity: 0.5;
    animation: borderGlow 1.5s ease-in-out infinite;
}
.modern-card-title-row {
  display: flex;
  justify-content: space-between; /* başlık sola, fiyat sağa */
  align-items: center;
  padding: 8px 12px;
  width: 100%; /* kapsayıcının tam genişliği */
  box-sizing: border-box;
}

.modern-card-title-link {
  flex-shrink: 0; /* küçülmeyi engelle */
  font-weight: 600;
  color: #222;
  text-decoration: none;
  white-space: nowrap; /* tek satırda kalsın */
  overflow: visible; /* taşmasını göster */
}

.modern-card-price {
  background-color: rgba(255, 223, 0, 0.15);
  border: 1.5px solid #FFD700;
  border-radius: 6px;
  padding: 6px 14px;
  color: #6b5100;
  font-weight: 700;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0; /* fiyat küçülmesin */
}


/* Fiyat yazısı */
.modern-card-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1em;
  font-weight: 700;
  color: #FFD700;
  text-shadow:
    0 0 5px rgba(255, 215, 0, 0.7);
  letter-spacing: 0.5px;
  margin: 0;
}

/* Puanlama kısmı - opsiyonel iyileştirme */
.modern-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #FFD700;
  font-size: 0.9em;
  user-select: none;
}

.modern-card-rating .fas.fa-star {
  color: rgba(255, 215, 0, 0.5);
  transition: color 0.3s ease;
}

.modern-card-rating .filled {
  color: #FFD700;
}

.modern-card-rating .perfect-star {
  color: #ffea00;
  text-shadow: 0 0 6px #ffea00;
}

.modern-rating-value {
  margin-left: 4px;
  font-weight: 700;
  color: #fff;
}

.modern-rating-value.perfect-rating {
  color: #ffea00;
  text-shadow: 0 0 8px #ffea00;
}
@keyframes priceGlow {
    0%, 100% {
        color: #FFD700;
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.4),
            0 0 20px rgba(255, 215, 0, 0.2);
    }
    50% {
        color: #fff6a9;
        text-shadow: 
            0 0 15px rgba(255, 215, 0, 0.6),
            0 0 25px rgba(255, 215, 0, 0.3);
    }
}
.modern-card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}
.modern-card-rating .fa-star {
  color: #bfae5a;
  font-size: 1.18em;
  filter: drop-shadow(0 0 2px #FFD70033);
  opacity: 0.55;
  transition: color 0.2s, opacity 0.2s, filter 0.2s;
  text-shadow: 0 0 0px #FFD700;
}
.modern-card-rating .fa-star.filled {
  color: #FFD700;
  opacity: 1;
  filter: drop-shadow(0 0 8px #FFD70088);
  text-shadow: 0 0 10px #FFD70055, 0 0 2px #fff;
  animation: modernStarShine 2.5s linear infinite;
}
.modern-card-rating .fa-star.perfect-star {
  color: #fff6a9;
  filter: drop-shadow(0 0 12px #fff6a9cc);
  text-shadow: 0 0 16px #fff6a9, 0 0 4px #FFD700;
  animation: modernStarPerfect 2.5s linear infinite;
}
.modern-rating-value {
  margin-left: 9px;
  color: #FFD700;
  font-size: 1.08em;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px #FFD70044;
}
.modern-rating-value.perfect-rating {
  color: #fff6a9;
  text-shadow: 0 0 16px #fff6a9, 0 0 4px #FFD700;
}
@keyframes modernStarShine {
  0%, 100% { filter: drop-shadow(0 0 8px #FFD70088); }
  50% { filter: drop-shadow(0 0 16px #FFD700cc); }
}
@keyframes modernStarPerfect {
  0%, 100% { filter: drop-shadow(0 0 12px #fff6a9cc); }
  50% { filter: drop-shadow(0 0 24px #fff6a9); }
}
  .modern-card-btn {
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(90deg, #FFD700 0%, #fff6a9 100%);
    color: #222;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.05em;
    border: none;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(255,215,0,0.13);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-align: center;
    z-index: 2;
  }
.modern-card-btn:hover:not(:disabled) {
  background: linear-gradient(90deg, #fff6a9 0%, #FFD700 100%);
  color: #111;
  box-shadow: 0 4px 24px rgba(255,215,0,0.18);
}
.modern-card-btn:disabled {
  background: #888;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.7;
}
@media (max-width: 700px) {
  .modern-card {
    min-height: 320px;
  }
  .modern-card-body {
    padding: 14px 8px 12px 8px;
  }
  .modern-card-title {
    font-size: 1em;
  }
  .modern-card-price-box {
    padding: 5px 10px 4px 10px;
    min-width: 70px;
  }
  .modern-card-price {
    font-size: 1em;
  }
  .modern-card-btn {
    font-size: 0.95em;
    padding: 10px 0;
  }
}
@media (max-width: 480px) {
  .modern-card {
    min-height: 220px;
  }
  .modern-card-title {
    font-size: 0.95em;
  }
  .modern-card-price {
    font-size: 0.95em;
  }
  .modern-card-btn {
    font-size: 0.9em;
    padding: 8px 0;
  }
}
/* --- HERO SECTION --- */
/* --- HERO SECTION (NEW) --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 40px 0;
    overflow: hidden;
    z-index: 1;
    background: none;
}
.hero-bg-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    width: 100vw;
    height: 340px;
    max-width: 600px;
    pointer-events: none;
    opacity: 0.9;
}
.hero-bg-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: 1px;
}
.gold-gradient {
    background: linear-gradient(90deg, #FFD700 0%, #fff6a9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.18));
}
.hero-main {
    display: block;
    font-size: 1.2em;
    font-weight: 500;
    color: #fff6a9;
    margin-top: 4px;
    letter-spacing: 0.5px;
}
.hero-desc {
    color: #ffe082;
    font-size: 1.1em;
    margin-bottom: 16px;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.hero-cta-btn {
    display: inline-block;
    margin: 18px auto 0 auto;
    padding: 12px 36px;
    background: linear-gradient(90deg, #FFD700 0%, #fff6a9 100%);
    color: #222;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1em;
    border: none;
    border-radius: 30px;
    box-shadow: 0 2px 12px rgba(255,215,0,0.13);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.hero-cta-btn:hover {
    background: linear-gradient(90deg, #fff6a9 0%, #FFD700 100%);
    color: #111;
    box-shadow: 0 4px 24px rgba(255,215,0,0.18);
}
.hero-sub {
    color: #fff6a9;
    font-size: 1em;
    opacity: 0.85;
    margin-top: 14px;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
}
@media (max-width: 700px) {
    .hero-bg-svg {
        width: 320px;
        height: 180px;
        max-width: 90vw;
    }
    .hero-title {
        font-size: 1.6em;
    }
    .hero-content {
        padding: 0 8px;
    }
    .hero-main {
        font-size: 1em;
    }
}
@media (max-width: 480px) {
    .hero-bg-svg {
        width: 200px;
        height: 100px;
    }
    .hero-title {
        font-size: 1.1em;
    }
    .hero-desc, .hero-sub {
        font-size: 0.95em;
    }
    .hero-cta-btn {
        font-size: 0.95em;
        padding: 10px 18px;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap');



@media (max-width: 768px)  {
    
    .nav-btn  {
    font-size: 0.9em;
    padding: 6px 15px;
}

.nav-links  {
    gap: 15px;
}
}

.header  {
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}


@media (max-width: 768px)  {
    
    .header  {
    padding: 80px 15px 40px;
    gap: 20px;
}

h1  {
    font-size: 2.5em;
    line-height: 1.2;
}

.header p  {
    font-size: 0.9em;
    margin: 15px auto;
}
}


@media (max-width: 480px)  {
    
    .header  {
    padding: 60px 10px 30px;
}

h1  {
    font-size: 2em;
}
}

.top-box  {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,215,0,0.3);
    color: rgba(255,215,0,0.9);
    font-size: 0.9em;
    border-radius: 4px;
    max-width: 400px;
    margin: 0 auto;
    backdrop-filter: blur(5px);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.cyber-text-box  {
    position: relative;
    display: inline-block;
    padding: 8px 25px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,215,0,0.3);
    color: #ffd700;
    font-size: 0.85em;
    border-radius: 4px;
    overflow: hidden;
    max-width: 800px;
    margin: 25px auto;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(255,215,0,0.1);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.cyber-text-box::before, .cyber-text-box::after  {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient( to bottom, transparent, #ffd700, transparent );
    animation: scan-line 2s linear infinite;
}

.cyber-text-box::before  {
    left: 0;
}

.cyber-text-box::after  {
    right: 0;
    animation-delay: 1s;
}

.cyber-text-box span  {
    position: relative;
    z-index: 1;
    display: block;
    animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow  {
    0%, 100%  {
    text-shadow: 0 0 10px rgba(255,215,0,0.3);
    opacity: 0.9;
}

50%  {
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
    opacity: 1;
}
}

.tag-line  {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 10px 25px;
    border-radius: 25px;
    color: #ffcc00;
    font-size: 1em;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.tag-line:hover  {
    transform: scale(1.05);
}

h1  {
    font-size: 4em;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary));
    background-size: 600% 600%;
    animation: gradientBG 15s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header p  {
    max-width: 600px;
    margin: 20px auto;
    color: rgba(255,255,255,0.7);
}

.swiper  {
    width: 100%;
    max-width: 1400px;
    padding: 100px 0;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    -webkit-mask-image: linear-gradient( to right, transparent 0%, rgba(0,0,0,0.7) 15%, black 30%, black 70%, rgba(0,0,0,0.7) 85%, transparent 100% );
    mask-image: linear-gradient( to right, transparent 0%, rgba(0,0,0,0.7) 15%, black 30%, black 70%, rgba(0,0,0,0.7) 85%, transparent 100% );
}


@media (max-width: 768px)  {
    
    .swiper  {
    width: calc(100% - 40px);
    padding: 40px 0;
    -webkit-mask-image: none;
    mask-image: none;
}


.swiper-slide-active .card  {
    box-shadow: none !important;
}
}

.swiper-slide  {
    transform-style: preserve-3d;
    width: 300px;
    height: auto;
    will-change: transform;
    transition: transform 0.3s ease;
}   

.swiper-slide:not(.swiper-slide-active)  {
    transform: scale(0.85) translateZ(-100px) rotateY(15deg);
    opacity: 0.4;
}

.swiper-slide-active  {
    transform: translateZ(0) scale(1.05) rotateY(0deg);
    opacity: 1;
    z-index: 2;
}

.swiper-slide-active .card  {
    box-shadow: 0 0 20px rgba(255,215,0,0.2), 0 0 40px rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    transition: transform 0.4s ease;
}

.swiper-slide-active .card:hover  {
    transform: translateY(-5px) scale(1.02);
}

.card  {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover  {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.card-title-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    gap: 10px;
}

.title-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.diamond-icon  {
    color: #FFD700;
    font-size: 2.4em;
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.4));
    transition: all 0.3s ease;
}

.card-title  {
    font-family: 'Orbitron', sans-serif;
    color: #FFD700;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(255,215,0,0.3);
    margin: 0;
}

.price-container  {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 5px;
}

.price  {
    font-family: 'Orbitron', sans-serif;
    color: #FFD700;
    font-size: 1.4em;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255,215,0,0.4);
    line-height: 1;
}

.card:hover .price  {
    text-shadow: 0 0 20px rgba(255,215,0,0.6);
}

.card:hover .original-price  {
    opacity: 1;
}

.card:hover .diamond-icon  {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 12px rgba(255,215,0,0.6));
}

.card:hover .card-title  {
    text-shadow: 0 0 15px rgba(255,215,0,0.5);
}

.card-content  {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin: 10px 0;
    background: rgba(0,0,0,0.3);
}



.purchase-btn  {
    width: calc(100% - 10px);
    margin: 15px 5px 5px 5px;
    padding: 12px;
    background: linear-gradient(to right, rgba(136,117,0,0.7), rgba(168,145,0,0.7));
    border: none;
    border-radius: 4px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.purchase-btn::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: 0.5s;
}

.purchase-btn:hover::before  {
    left: 100%;
}

.purchase-btn:hover  {
    background: linear-gradient(to right, rgba(156,134,0,0.7), rgba(188,162,0,0.7));
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.purchase-btn span  {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: all 0.2s ease;
}

.purchase-btn:hover span  {
    animation: textGlow 1.5s ease-in-out infinite alternate;
}

@keyframes textGlow  {
    from  {
    text-shadow: 0 0 5px rgba(255,255,255,0.5), 0 0 10px rgba(255,215,0,0.3);
}

to  {
    text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,215,0,0.5);
}
}

.purchase-btn:active  {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.purchase-btn:disabled  {
    background: linear-gradient(to right, rgba(80,80,80,0.7), rgba(100,100,100,0.7));
    color: rgba(255,255,255,0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.purchase-btn:disabled span  {
    animation: none;
}

.glow-effect  {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient( circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.1), transparent 40% );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover .glow-effect  {
    opacity: 1;
}

.stats  {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 40px 20px;
    margin: 100px auto;
    max-width: 1200px;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-item  {
    flex: 1;
    text-align: center;
    padding: 20px;
    min-width: 200px;
    position: relative;
}

.stat-item:not(:last-child)::after  {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--color-primary), transparent);
}

.stat-value  {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px var(--color-primary);
}

.stat-label  {
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.discord-btn  {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
}

.custom-btn  {
    background: #e0ba0e;
    border: none;
    color: white;
}

.footer  {
    background: var(--bg-overlay);
    backdrop-filter: var(--bg-blur);
    padding: 40px 0;
    margin-top: 100px;
    border-top: 1px solid var(--border-light);
}

.footer-content  {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left h2  {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin: 0 0 30px 0;
    color: #fff;
}

.footer-buttons  {
    display: flex;
    gap: 15px;
}

.footer-buttons button  {
    font-family: 'Orbitron', sans-serif;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.discord-btn  {
    background: rgba(255,255,255,0.1);
    color: white;
}

.footer-copyright  {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}


@media (max-width: 768px)  {
    
    .footer-content  {
    flex-direction: column;
    gap: 30px;
}

.footer-copyright  {
    text-align: left;
    margin-top: 30px;
}

.footer-buttons  {
    flex-direction: column;
}

.footer-buttons button  {
    width: 100%;
}
}

.particles  {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}


@media (max-width: 768px)  {
    
    nav  {
    padding: 15px 20px;
}

.nav-links a  {
    margin-left: 15px;
    font-size: 0.9em;
}

.header  {
    padding: 50px 15px 30px;
}

h1  {
    font-size: 2.5em;
}

.stats  {
    flex-direction: column;
    background: none;
    gap: 30px;
    border: none;
    padding: 30px 15px;
}

.stat-item  {
    width: 100%;
    padding: 15px;
    min-width: unset;
}

.stat-item:not(:last-child)::after  {
    display: none;
}

.stat-value  {
    font-size: 2rem;
}

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

.products-section  {
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 3rem 0;
    color: #fff6a9;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px #FFD70022;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ffe082;
}

.section-title span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 215, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 10px;
}
@keyframes titleReveal  {
    from  {
    opacity: 0;
    transform: translateY(20px);
}

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


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

.section-title span  {
    font-size: 0.9rem;
    letter-spacing: 6px;
}
}


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

.section-title span  {
    font-size: 0.8rem;
    letter-spacing: 4px;
}
}

.category-filters  {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.filter-btn  {
    background: var(--bg-overlay);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.filter-btn:hover, .filter-btn.active  {
    background: var(--bg-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--glow-hover);
}



.current-price  {
    font-family: 'Orbitron', sans-serif;
    color: #FFD700;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255,215,0,0.4);
}




@media (max-width: 768px)  {
    
    .category-filters  {
    flex-wrap: wrap;
}

.filter-btn  {
    padding: 8px 20px;
    font-size: 0.9em;
}


}

.loader-container  {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1500 0%, #221c00 25%, #2a2200 50%, #221c00 75%, #1a1500 100% );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader-container.fade-out  {
    opacity: 0;
    pointer-events: none;
}

.logo-container  {
    margin-bottom: 50px;
    animation: pulse 2s infinite;
}

.loading-bar  {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.loading-bar::after  {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: var(--color-primary);
    animation: loading 1s infinite ease-in-out;
    border-radius: 2px;
    box-shadow: var(--glow-primary-strong);
}

.loading-text  {
    margin-top: 20px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 3px;
    animation: blink 1s infinite;
    text-align: center;
    font-size: 1.2rem;
}

@keyframes loading  {
    0%  {
    transform: translateX(-100%);
}

100%  {
    transform: translateX(350%);
}
}

@keyframes pulse  {
    0%  {
    transform: scale(1);
}

50%  {
    transform: scale(1.05);
}

100%  {
    transform: scale(1);
}
}

@keyframes blink  {
    0%, 100%  {
    opacity: 1;
}

50%  {
    opacity: 0.5;
}
}


@media (max-width: 1024px)  {
    
    .loading-bar  {
    width: 180px;
    height: 3.5px;
}

.loading-text  {
    font-size: 1.1rem;
    letter-spacing: 2.5px;
}
}


@media (max-width: 768px)  {
    
    .loading-bar  {
    width: 150px;
    height: 3px;
}

.loading-text  {
    font-size: 1rem;
    letter-spacing: 2px;
}
}


@media (max-width: 480px)  {
    
    .loading-bar  {
    width: 120px;
    height: 2.5px;
}

.loading-text  {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}
}


@media (max-width: 320px)  {
    
    .loading-bar  {
    width: 100px;
    height: 2px;
}

.loading-text  {
    font-size: 0.8rem;
    letter-spacing: 1px;
}
}

.hamburger-btn  {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.modal-nav  {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.modal-nav.active  {
    right: 0;
}

.modal-nav .nav-links  {
    position: relative;
    left: 0;
    transform: none;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.modal-nav .nav-btn  {
    font-size: 1.2em;
    padding: 15px 30px;
    width: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.modal-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: -50px;
}

.modal-nav-links .nav-btn {
    width: 200px;
    padding: 15px 0;
    font-size: 1.2em;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section Styles */
.hero-section {
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 60px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.hero-bg-grid .grid-line {
    stroke: rgba(255,255,255,0.12);
    stroke-width: 2;
    position: relative;
    pointer-events: none;
    will-change: stroke, filter;
    animation: starTravel 6s linear infinite;
    animation-delay: var(--star-delay, 0s);
    animation-fill-mode: both;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.8em;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 4px;
    position: relative;
    background: linear-gradient(
        90deg, 
        #FFD700 0%,
        #FFF3B0 15%,
        #FFD700 30%,
        #FFEF96 45%,
        #FFD700 60%,
        #FFF3B0 75%,
        #FFD700 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.hero-title::after {
    content: 'XYZPlaza';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    filter: blur(8px);
    opacity: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes starTravel {
    0%, 2% {
        stroke: rgba(255,255,255,0.12);
        stroke-dasharray: 0 400;
        stroke-dashoffset: 0;
        filter: none;
    }
    15% {
        stroke: #FFD700;
        stroke-dasharray: 30 400;
        stroke-dashoffset: -150;
        filter: drop-shadow(0 0 8px #FFD700);
    }
    25% {
        stroke: #FFD700;
        stroke-dasharray: 30 400;
        stroke-dashoffset: -300;
        filter: drop-shadow(0 0 8px #FFD700);
    }
    26%, 100% {
        stroke: rgba(255,255,255,0.12);
        stroke-dasharray: 0 400;
        stroke-dashoffset: -400;
        filter: none;
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0;
        filter: blur(8px);
    }
    50% { 
        opacity: 1;
        filter: blur(12px);
    }
}

/* Hero Content Styles */
.hero-main {
    font-size: 1.5em;
    font-weight: 700;
    color: #fff6a9;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px #FFD70022;
}

.hero-desc {
    color: #ffe082;
    font-size: 1.18em;
    margin-bottom: 18px;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.hero-sub {
    color: #fff6a9;
    font-size: 1.08em;
    opacity: 0.88;
    margin-top: 18px;
    letter-spacing: 1.2px;
    font-family: 'Orbitron', sans-serif;
}

/* Modern Card Styles */
.modern-card {
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.13);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 370px;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    border: 1px solid rgba(255,255,255,0.10);
}

.modern-card:hover {
    box-shadow: 0 8px 40px rgba(255,215,0,0.13), 0 2px 16px rgba(0,0,0,0.18);
    transform: translateY(-4px) scale(1.02);
}

.modern-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #181406;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modern-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    background: #222;
}

.modern-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(90deg, #FFD700 0%, #fff6a9 100%);
    color: #222;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85em;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(255,215,0,0.13);
    letter-spacing: 1px;
    z-index: 2;
    text-transform: uppercase;
}

.modern-badge.available {
    background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.modern-badge.limited {
    background: linear-gradient(90deg, #ff4d4d 0%, #ff8080 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 77, 77, 0.2);
    animation: pulse 1.5s infinite;
}

.modern-badge.warning {
    background: linear-gradient(90deg, #ffa500 0%, #ffd700 100%);
    color: #222;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.2);
}

.modern-badge.out {
    background: #888;
    color: #fff;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.modern-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 18px 18px 18px;
    background: none;
    text-align: center;
}


.modern-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25em;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(255,215,0,0.08);
    flex: 1;
    text-align: center;
    margin-bottom: 2px;
}

.modern-card-price-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 4px 12px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
    margin: 0 auto;
}

.modern-card-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(255, 215, 0, 0.2);
}

.modern-card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
}

.modern-card-rating .fa-star {
    color: #bfae5a;
    font-size: 1.18em;
    filter: drop-shadow(0 0 2px #FFD70033);
    opacity: 0.55;
    transition: color 0.2s, opacity 0.2s, filter 0.2s;
    text-shadow: 0 0 0px #FFD700;
}

.modern-card-rating .fa-star.filled {
    color: #FFD700;
    opacity: 1;
    filter: drop-shadow(0 0 8px #FFD70088);
    text-shadow: 0 0 10px #FFD70055, 0 0 2px #fff;
    animation: modernStarShine 2.5s linear infinite;
}

.modern-card-rating .fa-star.perfect-star {
    color: #fff6a9;
    filter: drop-shadow(0 0 12px #fff6a9cc);
    text-shadow: 0 0 16px #fff6a9, 0 0 4px #FFD700;
    animation: modernStarPerfect 2.5s linear infinite;
}

.modern-rating-value {
    margin-left: 9px;
    color: #FFD700;
    font-size: 1.08em;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px #FFD70044;
}

.modern-rating-value.perfect-rating {
    color: #fff6a9;
    text-shadow: 0 0 16px #fff6a9, 0 0 4px #FFD700;
}

.modern-card-btn {
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(90deg, #FFD700 0%, #fff6a9 100%);
    color: #222;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.05em;
    border: none;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(255,215,0,0.13);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-align: center;
}

.modern-card-btn:hover:not(:disabled) {
    background: linear-gradient(90deg, #fff6a9 0%, #FFD700 100%);
    color: #111;
    box-shadow: 0 4px 24px rgba(255,215,0,0.18);
}

.modern-card-btn:disabled {
    background: #888;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Stats Section Styles */
.stats-section {
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 8s linear infinite;
    pointer-events: none;
}

.stat-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.1),
        0 0 60px rgba(255, 215, 0, 0.05);
}

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

.stat-card:hover::after {
    opacity: 0.5;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.stat-icon-wrapper {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15), transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.stat-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: spin 10s linear infinite;
}

.stat-icon-wrapper i {
    font-size: 2em;
    color: #FFD700;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.stat-card:hover .stat-icon-wrapper::before {
    animation: pulse 1.5s ease-in-out infinite;
}

.stat-card:hover .stat-icon-wrapper::after {
    border-color: rgba(255, 215, 0, 0.5);
}

.stat-card:hover .stat-icon-wrapper i {
    color: #FFE55C;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

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

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #FFD700, #FFF3B0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.stat-label {
    color: #aaa;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.stat-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.stat-progress:hover .progress-bar {
    filter: brightness(1.2);
}

.stat-progress:hover .progress-tooltip {
    opacity: 1;
    transform: translateY(-5px);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFF3B0);
    border-radius: 3px;
    transition: all 0.3s ease;
    position: relative;
}

.progress-tooltip {
    position: absolute;
    bottom: 100%;
    left: 100%;
    transform: translateX(-50%) translateY(0);
    background: rgba(0, 0, 0, 0.8);
    color: #FFD700;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75em;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    z-index: 1;
}

.progress-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 2em;
    }
}

@keyframes modernStarShine {
    0%, 100% { filter: drop-shadow(0 0 8px #FFD70088); }
    50% { filter: drop-shadow(0 0 16px #FFD700cc); }
}

@keyframes modernStarPerfect {
    0%, 100% { filter: drop-shadow(0 0 12px #fff6a9cc); }
    50% { filter: drop-shadow(0 0 24px #fff6a9); }
}
/* Responsive Styles */
@media (max-width: 700px) {
    .modern-card {
        min-height: 320px;
    }
    .modern-card-body {
        padding: 14px 8px 12px 8px;
    }
    .modern-card-title {
        font-size: 1em;
    }
    .modern-card-price-box {
        padding: 5px 10px 4px 10px;
        min-width: 70px;
    }
    .modern-card-price {
        font-size: 1em;
    }
    .modern-card-btn {
        font-size: 0.95em;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .modern-card {
        min-height: 220px;
    }
    .modern-card-title {
        font-size: 0.95em;
    }
    .modern-card-price {
        font-size: 0.95em;
    }
    .modern-card-btn {
        font-size: 0.9em;
        padding: 8px 0;
    }
}


@media (max-width: 768px)  {
    
    .nav-links  {
    display: none;
}

.hamburger-btn  {
    display: block;
}
}


@media (max-width: 480px)  {
    
    .tag-line  {
    font-size: 0.8em;
}

h1  {
    font-size: 2em;
}

.section-title  {
    font-size: 2em;
}

.products-grid  {
    grid-template-columns: 1fr;
}

.product-card  {
    max-width: 100%;
}
}


@media (max-width: 768px)  {
    
    .card  {
    padding: 20px;
}

.card-title  {
    font-size: 1.5em;
}

.price  {
    font-size: 1.8em;
}
}


@media (max-width: 768px)  {
    
    .swiper-slide  {
    width: 280px;
    min-height: 400px;
    transform: none !important;
}

.swiper-slide:not(.swiper-slide-active)  {
    opacity: 0.8;
    transform: scale(0.95) !important;
}

.swiper-slide-active  {
    transform: scale(1) !important;
    opacity: 1;
}

.card  {
    padding: 15px;
    box-shadow: 0 0 10px rgba(255,215,0,0.1);
}
}


@media (max-width: 480px)  {
    
    .swiper-slide  {
    width: 260px;
    min-height: 380px;
}

.card  {
    padding: 15px;
}

.card-title  {
    font-size: 1.2em;
}

.price  {
    font-size: 1.4em;
}
}

body {
    background: linear-gradient(120deg, #2d2500 0%, #4c3a00 60%, #181406 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

/* Hafif ışık ve bloom efekti */
body::before {
    content: "";
    position: fixed;
    left: 50%;
    top: 0;
    width: 120vw;
    height: 60vh;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(255,215,0,0.13) 0%, rgba(255,215,0,0.03) 60%, transparent 100%);
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
    filter: blur(12px);
    opacity: 0.12;

}
.decorative-bg {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    width: 420px;
    height: 420px;
    opacity: 0.7;
    filter: blur(0.5px);
}

@media (max-width: 600px) {
    .decorative-bg {
        width: 220px;
        height: 220px;
        top: 20px;
    }
    .decorative-bg svg {
        width: 220px;
        height: 220px;
    }
}
@media (max-width: 768px)  {
    
    body::before, body::after  {
    background-size: 150px 150px;
}
}

.glitch-text  {
    position: relative;
    animation: glitch 3s infinite;
    color: #ffd700;
    text-shadow: 2px 2px 10px rgba(255,215,0,0.5);
}

@keyframes glitch  {
    0%  {
    transform: translate(0);
}

20%  {
    transform: translate(-2px, 2px);
}

40%  {
    transform: translate(-2px, -2px);
}

60%  {
    transform: translate(2px, 2px);
}

80%  {
    transform: translate(2px, -2px);
}

100%  {
    transform: translate(0);
}
}

.neon-text  {
    color: #fff;
    text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 8px #ffd700, 0 0 12px #ffd700;
    animation: neon-pulse 1.5s ease-in-out infinite alternate;
}

@keyframes neon-pulse  {
    from  {
    text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 8px #ffd700, 0 0 12px #ffd700;
}

to  {
    text-shadow: 0 0 3px #fff, 0 0 6px #fff, 0 0 10px #ffd700, 0 0 14px #ffd700;
}
}

.cyber-text  {
    background: linear-gradient(90deg, #ffd700, #ffeb3b, #ffd700);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cyber-flow 3s linear infinite;
}

@keyframes cyber-flow  {
    0%  {
    background-position: 0% center;
}

100%  {
    background-position: 200% center;
}
}

.matrix-text  {
    color: #0f0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: matrix-scan 4s linear infinite;
}

.matrix-text::before  {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( to right, transparent 0%, rgba(0,255,0,0.4) 50%, transparent 100% );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: matrix-scan-line 3s linear infinite;
}

@keyframes matrix-scan  {
    0%, 100%  {
    text-shadow: 0 0 2px #0f0;
}

50%  {
    text-shadow: 0 0 5px #0f0;
}
}

@keyframes matrix-scan-line  {
    0%  {
    transform: translateX(-100%);
}

100%  {
    transform: translateX(100%);
}
}

.cyber-glitch  {
    color: #ffd700;
    font-weight: bold;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: cyber-flicker 3s linear infinite;
}

.cyber-glitch::before  {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient( 90deg, transparent, #fff6a3, transparent );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: cyber-shine 3s linear infinite;
    transform: translateX(-100%);
}

@keyframes cyber-flicker  {
    0%, 100%  {
    text-shadow: 0 0 1px #ffd700, 0 0 2px #ffd700, 0 0 3px #ffb300;
}

33%  {
    text-shadow: 0 0 1px #ffd700, 0 0 2px #ffd700, 0 0 3px #ffb300, 0 0 5px #ff8f00;
}

66%  {
    text-shadow: 0 0 1px #ffd700;
}
}

@keyframes cyber-shine  {
    0%  {
    transform: translateX(-100%);
}

100%  {
    transform: translateX(100%);
}
}

.cyber-box  {
    position: relative;
    padding: 8px 20px;
    background: rgba(0,0,0,0.2);
    border: 1px solid #ffd700;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
    overflow: hidden;
    transition: 0.5s;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255,215,0,0.2);
    max-width: 400px;
    margin: 0 auto;
}

.cyber-box:before  {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, rgba(255,215,0,0.2), transparent );
    animation: cyber-scan 3s linear infinite;
}

.cyber-box:after  {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
}

.cyber-box:hover  {
    box-shadow: 0 0 25px rgba(255,215,0,0.4);
}

@keyframes cyber-scan  {
    0%  {
    left: -100%;
}

100%  {
    left: 100%;
}
}

.cyber-box span  {
    position: relative;
    z-index: 1;
    display: block;
    animation: cyber-pulse 2s infinite;
}

@keyframes cyber-pulse  {
    0%, 100%  {
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

50%  {
    text-shadow: 0 0 20px rgba(255,215,0,0.8);
}
}

.premium-title  {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    background: linear-gradient( 90deg, #ffd700, #fff6a9, #ffd700 );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: premium-flow 3s linear infinite;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.solutions-title  {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    background: linear-gradient( 90deg, #ffd700, #fff6a9, #ffd700 );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: premium-flow 3s linear infinite;
    animation-delay: 0.5s;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

@keyframes premium-flow  {
    0%  {
    background-position: 0% center;
    opacity: 0.9;
}

50%  {
    background-position: 100% center;
    opacity: 1;
}

100%  {
    background-position: 0% center;
    opacity: 0.9;
}
}

.side-panel  {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 1rem;
    pointer-events: none;
    z-index: -1;
    animation: panelFloat 6s ease-in-out infinite;
}

.side-panel.left  {
    left: 0;
    transform: translateY(-50%) rotate(-15deg);
    animation: leftPanelFloat 6s ease-in-out infinite;
}

.side-panel.right  {
    right: 0;
    transform: translateY(-50%) rotate(15deg);
    animation: rightPanelFloat 6s ease-in-out infinite;
}

.feature-box  {
    position: relative;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,215,0,0.1);
    animation: featureBoxGlow 4s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes leftPanelFloat  {
    0%, 100%  {
    transform: translateY(-50%) rotate(-15deg) translateX(0);
}

50%  {
    transform: translateY(-50%) rotate(-15deg) translateX(10px);
}
}

@keyframes rightPanelFloat  {
    0%, 100%  {
    transform: translateY(-50%) rotate(15deg) translateX(0);
}

50%  {
    transform: translateY(-50%) rotate(15deg) translateX(-10px);
}
}

.side-panel.left .feature-box:nth-child(1)  {
    animation: featureBoxGlow 4s ease-in-out infinite, featureBoxFloat 4s ease-in-out infinite;
    animation-delay: 0s;
}

.side-panel.left .feature-box:nth-child(2)  {
    animation: featureBoxGlow 4s ease-in-out infinite, featureBoxFloat 4s ease-in-out infinite;
    animation-delay: 2s;
}

.side-panel.right .feature-box:nth-child(1)  {
    animation: featureBoxGlow 4s ease-in-out infinite, featureBoxFloat 4s ease-in-out infinite;
    animation-delay: 1s;
}

.side-panel.right .feature-box:nth-child(2)  {
    animation: featureBoxGlow 4s ease-in-out infinite, featureBoxFloat 4s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes featureBoxFloat  {
    0%, 100%  {
    transform: translateY(0) scale(1);
}

50%  {
    transform: translateY(-5px) scale(1.02);
}
}

@keyframes featureBoxGlow  {
    0%, 100%  {
    filter: blur(3px) brightness(1);
    border-color: rgba(255,215,0,0.1);
    background: rgba(0,0,0,0.2);
}

50%  {
    filter: blur(2px) brightness(1.2);
    border-color: rgba(255,215,0,0.2);
    background: rgba(0,0,0,0.3);
}
}

.feature-box i  {
    font-size: 2rem;
    color: rgba(255,215,0,0.7);
    text-shadow: 0 0 30px rgba(255,215,0,0.3);
    margin-bottom: 1rem;
    animation: iconGlow 4s ease-in-out infinite;
}

.feature-box h3  {
    color: rgba(255,215,0,0.7);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.feature-box p  {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

@keyframes iconGlow  {
    0%, 100%  {
    color: rgba(255,215,0,0.7);
    text-shadow: 0 0 30px rgba(255,215,0,0.3);
}

50%  {
    color: rgba(255,215,0,0.9);
    text-shadow: 0 0 40px rgba(255,215,0,0.5);
}
}


@media (max-width: 1200px)  {
    
    .side-panel  {
    display: none;
}
}



.product-rating .rating-value  {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    margin-left: 8px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(255,215,0,0.4);
}

@keyframes starShine  {
    0%  {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255,215,0,0.4);
}

20%  {
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,215,0,0.6);
}

40%  {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255,215,0,0.4);
}
}


@media (max-width: 768px)  {
    
    .card-header .product-rating  {
    padding: 2px 6px;
    margin: 8px auto;
}

.card-header .product-rating .stars i  {
    font-size: 12px;
}

.card-header .product-rating .rating-value  {
    font-size: 11px;
}

.price  {
    font-size: 1.2em;
}

.old-price  {
    font-size: 0.8em;
}
}



.quick-buy-btn:disabled  {
    background: rgba(80,80,80,0.7);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}

.quick-buy-btn:disabled:hover  {
    background: rgba(80,80,80,0.7);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.7;
}


@media (max-width: 768px)  {
    
    .stock-row  {
    padding: 4px 8px;
}

.stock-label, .stock-value  {
    font-size: 12px;
}
}

.card-header  {
    position: relative;
    padding-bottom: 10px;
}

.card-title-group  {
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.card-header .product-rating  {
    position: relative;
    margin: 10px auto;
    padding: 3px 8px;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-container  {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 5px;
}


.price  {
    font-size: 1.4em;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255,215,0,0.4);
}

.card-header .product-rating .stars  {
    display: flex;
    gap: 3px;
}

.card-header .product-rating .stars i  {
    font-size: 14px;
}

.card-header .product-rating .rating-value  {
    margin-left: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #ffd700;
}


@media (max-width: 768px)  {
    
    .card-header .product-rating  {
    padding: 2px 6px;
    margin: 8px auto;
}

.card-header .product-rating .stars i  {
    font-size: 12px;
}

.card-header .product-rating .rating-value  {
    font-size: 11px;
}

.price  {
    font-size: 1.2em;
}

.old-price  {
    font-size: 0.8em;
}
}

.modal  {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content  {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
}

.close  {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover  {
    color: #000;
}

.quantity-btn  {
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(136,117,0,0.7);
    color: #ffd700;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
    border-radius: 50%;
}

.quantity-input  {
    width: 40px;
    text-align: center;
    border: none;
    background: rgba(0,0,0,0.3);
    color: #ffd700;
    font-size: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    padding: 2px 0;
    border-radius: 3px;
    margin: 0 4px;
    box-sizing: border-box;
    -moz-appearance: textfield;
    appearance: textfield;
    flex-shrink: 0;
}

.quantity-input::-webkit-inner-spin-button, .quantity-input::-webkit-outer-spin-button  {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input:focus  {
    border-color: rgba(255,215,0,0.5);
    outline: none;
}
.quick-buy-container  {
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}






@media (max-width: 768px)  {
    

}

.stat-item:not(:last-child)::after  {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--color-primary), transparent);
}


@media (max-width: 768px)  {
    .stat-item:not(:last-child)::after  {
        display: none;
    }
}

/* Modern Card Styles */
/* Products Grid styles will be designed by you */

/* Fiyat etiketi için yeni stil */
.price-tag {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%,
        rgba(255, 215, 0, 0.05) 100%
    );
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: fit-content;
    backdrop-filter: blur(5px);
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.1),
        inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.price-tag .old-price {
    font-size: 0.85em;
    color: #FF6B00;
    text-decoration: line-through;
    opacity: 0.8;
    margin-bottom: -2px;
    position: relative;
    text-shadow: 0 0 5px rgba(255, 107, 0, 0.4);
}

.price-tag .current-price {
    color: #FFD700;
    font-size: 1.3em;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 2;
}

.price-tag::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.2) 25%, 
        rgba(255, 215, 0, 0.4) 50%,
        rgba(255, 215, 0, 0.2) 75%,
        transparent 100%
    );
    opacity: 0;
    animation: priceShine 2s infinite;
    filter: blur(3px);
}

.price-tag::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(90deg, 
        rgba(255, 215, 0, 0.5),
        rgba(255, 246, 169, 0.8),
        rgba(255, 215, 0, 0.5)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes priceShine {
    0% {
        opacity: 0;
        transform: translateX(-100%) skewX(-15deg);
    }
    50% {
        opacity: 0.75;
    }
    100% {
        opacity: 0;
        transform: translateX(100%) skewX(-15deg);
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
        filter: blur(2px);
    }
    50% {
        opacity: 0.6;
        filter: blur(1px);
    }
}

.card:hover .price-tag {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
    animation: priceHover 1.5s ease-in-out infinite;
}

.card:hover .price-tag::after {
    opacity: 0.5;
    animation: borderGlow 1.5s ease-in-out infinite;
}

@keyframes priceHover {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.03) translateY(-1px);
    }
}
