main {
  overflow-x: hidden;
}


.cyberhero {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
  max-height: 1000px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
}

.cyberhero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(106, 0, 244, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 209, 255, 0.1) 0%, transparent 50%);
  animation: bgPulse 6s ease-in-out infinite;
}

.cyberhero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.cyberhero__title {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 4rem;
  line-height: 1.1;
}

.cyberhero__title-main {
  display: block;
  background: linear-gradient(45deg, var(--main-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cyberhero__title-sub {
  display: block;
  color: var(--text-color);
  text-shadow: 0 0 20px var(--main-color);
}

.cyberhero__glitch {
  position: relative;
  display: block;
  color: var(--accent-color);
  font-size: 2rem;
  animation: glitchAnimation 3s infinite;
}

.cyberhero__glitch::before,
.cyberhero__glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cyberhero__glitch::before {
  color: var(--secondary-color);
  animation: glitchTop 1s linear infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.cyberhero__glitch::after {
  color: var(--main-color);
  animation: glitchBottom 1.5s linear infinite;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

.cyberhero__description {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.6;
}

.cyberhero__description i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.cyberhero__stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.cyberhero__stat {
  border: 1px solid rgba(106, 0, 244, 0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background: rgba(26, 26, 31, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cyberhero__stat:hover {
  border-color: var(--main-color);
  box-shadow: 0 10px 30px rgba(106, 0, 244, 0.3);
  transform: translateY(-5px);
}

.cyberhero__stat i {
  display: block;
  margin-bottom: 8px;
  color: var(--main-color);
  font-size: 1.5rem;
}

.cyberhero__stat span {
  display: block;
  margin-bottom: 5px;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.8rem;
}

.cyberhero__stat small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cyberhero__actions {
  display: flex;
  gap: 20px;
}

.cyberhero__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  overflow: hidden;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cyberhero__btn--primary {
  box-shadow: 0 4px 15px rgba(106, 0, 244, 0.4);
  color: white;
  background: linear-gradient(45deg, var(--main-color), var(--secondary-color));
}

.cyberhero__btn--primary:hover {
  box-shadow: 0 8px 25px rgba(106, 0, 244, 0.6);
  transform: translateY(-2px);
}

.cyberhero__btn--secondary {
  border: 2px solid var(--main-color);
  color: var(--text-color);
  background: transparent;
}

.cyberhero__btn--secondary:hover {
  box-shadow: 0 8px 25px rgba(106, 0, 244, 0.4);
  background: var(--main-color);
  transform: translateY(-2px);
}

.cyberhero__pc-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cyberhero__pc-image {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cyberhero__pc-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 120%;
  height: 120%;
  opacity: 0.3;
  background: radial-gradient(circle, var(--main-color) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: pulseGlow 3s ease-in-out infinite;
}

.cyberhero__floating-elements {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  pointer-events: none;
}

.cyberhero__float-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--main-color);
  border-radius: 8px;
  padding: 10px 15px;
  box-shadow: 0 4px 15px rgba(106, 0, 244, 0.3);
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(26, 26, 31, 0.9);
  animation: float 4s ease-in-out infinite;
}

.cyberhero__float-item:nth-child(1) {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.cyberhero__float-item:nth-child(2) {
  bottom: 30%;
  left: -15%;
  animation-delay: 1s;
}

.cyberhero__float-item:nth-child(3) {
  top: 60%;
  right: -5%;
  animation-delay: 2s;
}

.cyberhero__float-item i {
  color: var(--secondary-color);
}


.blazedeals {
  position: relative;
  padding: 80px 0;
  background: var(--secondary-bg-color);
}

.blazedeals::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  animation: scanLine 4s linear infinite;
}

.blazedeals__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.blazedeals__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-color);
  font-weight: bold;
  font-size: 2.5rem;
}

.blazedeals__title i {
  color: var(--accent-color);
  animation: flicker 2s infinite;
}

.blazedeals__subtitle {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: normal;
  font-size: 1rem;
}

.blazedeals__timer {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  padding: 15px 20px;
  color: var(--accent-color);
  font-weight: 600;
  background: rgba(255, 45, 117, 0.1);
  animation: pulse 2s infinite;
}

.blazedeals__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blazedeals__card {
  position: relative;
  border: 1px solid rgba(106, 0, 244, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-color);
  transition: all 0.3s ease;
}

.blazedeals__card:hover {
  border-color: var(--main-color);
  box-shadow: 0 20px 40px rgba(106, 0, 244, 0.3);
  transform: translateY(-10px);
}

.blazedeals__card--featured {
  border-color: var(--accent-color);
  box-shadow: 0 0 30px rgba(255, 45, 117, 0.2);
}

.blazedeals__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  padding: 8px 12px;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  background: var(--main-color);
}

.blazedeals__badge--sale {
  background: var(--accent-color);
}

.blazedeals__badge--new {
  background: var(--secondary-color);
}

.blazedeals__image {
  position: relative;
  overflow: hidden;
}

.blazedeals__image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blazedeals__card:hover .blazedeals__image img {
  transform: scale(1.05);
}

.blazedeals__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.3s ease;
}

.blazedeals__card:hover .blazedeals__overlay {
  opacity: 1;
}

.blazedeals__quick-view {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  color: white;
  font-weight: 600;
  background: var(--main-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blazedeals__quick-view:hover {
  background: var(--secondary-color);
  transform: scale(1.05);
}

.blazedeals__info {
  padding: 25px;
}

.blazedeals__name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: bold;
  font-size: 1.3rem;
}

.blazedeals__name i {
  color: var(--secondary-color);
}

.blazedeals__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.blazedeals__specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(106, 0, 244, 0.3);
  border-radius: 20px;
  padding: 5px 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  background: rgba(106, 0, 244, 0.1);
}

.blazedeals__specs i {
  color: var(--main-color);
}

.blazedeals__pricing {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.blazedeals__old-price {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  text-decoration: line-through;
}

.blazedeals__new-price {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.5rem;
}

.blazedeals__discount {
  border-radius: 4px;
  padding: 4px 8px;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  background: var(--accent-color);
}

.blazedeals__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 15px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  background: linear-gradient(45deg, var(--main-color), var(--secondary-color));
  transition: all 0.3s ease;
  cursor: pointer;
}

.blazedeals__btn:hover {
  box-shadow: 0 10px 20px rgba(106, 0, 244, 0.4);
  transform: translateY(-2px);
}


.nexuscategories {
  padding: 80px 0;
  background: var(--bg-color);
}

.nexuscategories__header {
  margin-bottom: 50px;
  text-align: center;
}

.nexuscategories__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: bold;
  font-size: 2.5rem;
}

.nexuscategories__title i {
  color: var(--main-color);
}

.nexuscategories__subtitle {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-weight: normal;
  font-size: 1.1rem;
}

.nexuscategories__grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(3, 300px);
  gap: 20px;
}

.nexuscategories__item {
  position: relative;
  border: 1px solid rgba(106, 0, 244, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background: var(--secondary-bg-color);
  transition: all 0.3s ease;
}

.nexuscategories__item--large {
  grid-column: span 6;
  grid-row: span 2;
}

.nexuscategories__item--wide {
  grid-column: span 6;
  grid-row: span 1;
}

.nexuscategories__item:not(.nexuscategories__item--large):not(.nexuscategories__item--wide) {
  grid-column: span 4;
  grid-row: span 1;
}

.nexuscategories__item:hover {
  border-color: var(--main-color);
  box-shadow: 0 15px 35px rgba(106, 0, 244, 0.3);
  transform: translateY(-5px);
}

.nexuscategories__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.nexuscategories__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.nexuscategories__item:hover .nexuscategories__bg img {
  opacity: 0.1;
}

.nexuscategories__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 25px;
}

.nexuscategories__icon {
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 2rem;
}

.nexuscategories__name {
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: bold;
  font-size: 1.3rem;
}

.nexuscategories__desc {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.nexuscategories__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.nexuscategories__stats span {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(106, 0, 244, 0.4);
  border-radius: 15px;
  padding: 5px 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  background: rgba(106, 0, 244, 0.2);
}

.nexuscategories__stats i {
  color: var(--main-color);
}

.nexuscategories__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  border: 2px solid var(--secondary-color);
  border-radius: 6px;
  padding: 10px 20px;
  color: var(--secondary-color);
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nexuscategories__btn:hover {
  color: var(--bg-color);
  background: var(--secondary-color);
  transform: translateX(5px);
}


.pixelnews {
  position: relative;
  padding: 80px 0;
  background: var(--secondary-bg-color);
}

.pixelnews__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.pixelnews__title {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-color);
  font-weight: bold;
  font-size: 2.5rem;
}

.pixelnews__title i {
  color: var(--secondary-color);
}

.pixelnews__subtitle {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: normal;
  font-size: 1rem;
}

.pixelnews__view-all {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--main-color);
  border-radius: 6px;
  padding: 12px 20px;
  color: var(--main-color);
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pixelnews__view-all:hover {
  color: white;
  background: var(--main-color);
  transform: translateY(-2px);
}

.pixelnews__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.pixelnews__featured {
  border: 1px solid rgba(106, 0, 244, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-color);
  transition: all 0.3s ease;
}

.pixelnews__featured:hover {
  border-color: var(--main-color);
  box-shadow: 0 15px 35px rgba(106, 0, 244, 0.2);
}

.pixelnews__image {
  position: relative;
  overflow: hidden;
}

.pixelnews__image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pixelnews__featured:hover .pixelnews__image img {
  transform: scale(1.05);
}

.pixelnews__category {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  padding: 8px 12px;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  background: var(--main-color);
}

.pixelnews__category--esports {
  background: var(--accent-color);
}

.pixelnews__category--tech {
  background: var(--secondary-color);
}

.pixelnews__category--review {
  background: #FFA500;
}

.pixelnews__content {
  padding: 30px;
}

.pixelnews__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.pixelnews__meta i {
  margin-right: 5px;
  color: var(--main-color);
}

.pixelnews__headline {
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.3;
}

.pixelnews__excerpt {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.pixelnews__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pixelnews__read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  color: white;
  font-weight: 600;
  background: linear-gradient(45deg, var(--main-color), var(--secondary-color));
  transition: all 0.3s ease;
  cursor: pointer;
}

.pixelnews__read-more:hover {
  box-shadow: 0 8px 20px rgba(106, 0, 244, 0.4);
  transform: translateY(-2px);
}

.pixelnews__social {
  display: flex;
  gap: 15px;
}

.pixelnews__social button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pixelnews__social button:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.pixelnews__sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pixelnews__card {
  display: flex;
  gap: 15px;
  border: 1px solid rgba(106, 0, 244, 0.2);
  border-radius: 12px;
  padding: 15px;
  overflow: hidden;
  background: var(--bg-color);
  transition: all 0.3s ease;
}

.pixelnews__card:hover {
  border-color: var(--main-color);
  transform: translateX(5px);
}

.pixelnews__thumb {
  position: relative;
  flex-shrink: 0;
}

.pixelnews__thumb img {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.pixelnews__thumb .pixelnews__category {
  top: 5px;
  left: 5px;
  padding: 4px 8px;
  font-size: 0.7rem;
}

.pixelnews__info {
  flex: 1;
}

.pixelnews__title-small {
  margin-bottom: 8px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
}

.pixelnews__snippet {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.4;
}


.eliteproducts {
  padding: 80px 0;
  background: var(--bg-color);
}

.eliteproducts__header {
  margin-bottom: 50px;
}

.eliteproducts__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: bold;
  font-size: 2.5rem;
}

.eliteproducts__title i {
  color: #FFD700;
}

.eliteproducts__subtitle {
  display: block;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: normal;
  font-size: 1.1rem;
  text-align: center;
}

.eliteproducts__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.eliteproducts__filter {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(106, 0, 244, 0.3);
  border-radius: 25px;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.eliteproducts__filter:hover,
.eliteproducts__filter--active {
  border-color: var(--main-color);
  color: white;
  background: var(--main-color);
  transform: translateY(-2px);
}

.eliteproducts__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.eliteproducts__product--featured {
  position: relative;
  border: 2px solid var(--main-color);
  border-radius: 16px;
  overflow: hidden;
  background: var(--secondary-bg-color);
  transition: all 0.3s ease;
}

.eliteproducts__product--featured:hover {
  box-shadow: 0 25px 50px rgba(106, 0, 244, 0.3);
  transform: translateY(-10px);
}

.eliteproducts__rank {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  padding: 8px 12px;
  color: var(--bg-color);
  font-weight: bold;
  font-size: 0.9rem;
  background: #FFD700;
}

.eliteproducts__image {
  position: relative;
  overflow: hidden;
}

.eliteproducts__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.eliteproducts__product:hover .eliteproducts__image img {
  transform: scale(1.05);
}

.eliteproducts__badges {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eliteproducts__badge {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 15px;
  padding: 6px 10px;
  font-weight: 600;
  font-size: 0.7rem;
}

.eliteproducts__badge--bestseller {
  color: white;
  background: var(--accent-color);
}

.eliteproducts__badge--editor {
  color: var(--bg-color);
  background: #FFD700;
}

.eliteproducts__badge--new {
  color: white;
  background: var(--secondary-color);
}

.eliteproducts__badge--popular {
  color: white;
  background: #32CD32;
}

.eliteproducts__badge--value {
  color: white;
  background: #FF8C00;
}

.eliteproducts__badge--compact {
  color: white;
  background: var(--main-color);
}

.eliteproducts__hover-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
}

.eliteproducts__product:hover .eliteproducts__hover-actions {
  opacity: 1;
}

.eliteproducts__action {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  padding: 10px;
  color: white;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}

.eliteproducts__action:hover {
  background: var(--main-color);
  transform: scale(1.1);
}

.eliteproducts__details {
  padding: 25px;
}

.eliteproducts__category-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
  border-radius: 15px;
  padding: 4px 12px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.8rem;
  background: rgba(106, 0, 244, 0.1);
}

.eliteproducts__name {
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: bold;
  font-size: 1.4rem;
}

.eliteproducts__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.eliteproducts__spec {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(106, 0, 244, 0.2);
  border-radius: 8px;
  padding: 10px;
  font-size: 0.9rem;
  background: rgba(26, 26, 31, 0.5);
}

.eliteproducts__spec i {
  color: var(--secondary-color);
}

.eliteproducts__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.eliteproducts__stars {
  color: #FFD700;
}

.eliteproducts__rating-count {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.eliteproducts__price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.eliteproducts__current-price {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.8rem;
}

.eliteproducts__original-price {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  text-decoration: line-through;
}

.eliteproducts__actions {
  display: flex;
  gap: 10px;
}

.eliteproducts__btn {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.eliteproducts__btn--primary {
  color: white;
  background: linear-gradient(45deg, var(--main-color), var(--secondary-color));
}

.eliteproducts__btn--secondary {
  border: 2px solid var(--main-color);
  color: var(--main-color);
  background: transparent;
}

.eliteproducts__btn:hover {
  transform: translateY(-2px);
}

.eliteproducts__btn--primary:hover {
  box-shadow: 0 8px 20px rgba(106, 0, 244, 0.4);
}

.eliteproducts__btn--secondary:hover {
  color: white;
  background: var(--main-color);
}

.eliteproducts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.eliteproducts__grid .eliteproducts__product {
  border: 1px solid rgba(106, 0, 244, 0.2);
  border-radius: 12px;
  overflow: hidden;
  background: var(--secondary-bg-color);
  transition: all 0.3s ease;
}

.eliteproducts__grid .eliteproducts__product:hover {
  border-color: var(--main-color);
  box-shadow: 0 15px 30px rgba(106, 0, 244, 0.2);
  transform: translateY(-5px);
}

.eliteproducts__grid .eliteproducts__image img {
  height: 200px;
}

.eliteproducts__grid .eliteproducts__details {
  padding: 20px;
}

.eliteproducts__grid .eliteproducts__name {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.eliteproducts__btn--compact {
  width: 100%;
  padding: 10px;
  color: white;
  font-size: 0.9rem;
  background: var(--main-color);
}

.eliteproducts__btn--compact:hover {
  background: var(--secondary-color);
}


@keyframes bgPulse {

  0%,
  100% {
    opacity: 0.1;
  }

  50% {
    opacity: 0.2;
  }
}

@keyframes glitchAnimation {

  0%,
  90%,
  100% {
    transform: translate(0);
  }

  20% {
    transform: translate(-1px, 1px);
  }

  40% {
    transform: translate(-1px, -1px);
  }

  60% {
    transform: translate(1px, 1px);
  }

  80% {
    transform: translate(1px, -1px);
  }
}

@keyframes glitchTop {

  0%,
  90%,
  100% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, -2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, -2px);
  }

  80% {
    transform: translate(2px, -2px);
  }
}

@keyframes glitchBottom {

  0%,
  90%,
  100% {
    transform: translate(0);
  }

  20% {
    transform: translate(2px, 2px);
  }

  40% {
    transform: translate(2px, 2px);
  }

  60% {
    transform: translate(-2px, 2px);
  }

  80% {
    transform: translate(-2px, 2px);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(1deg);
  }

  50% {
    transform: translateY(-5px) rotate(-1deg);
  }

  75% {
    transform: translateY(-15px) rotate(0.5deg);
  }
}

@keyframes flicker {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes scanLine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}


@media (max-width: 1024px) {
  .cyberhero__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cyberhero__title {
    font-size: 3rem;
  }

  .cyberhero__stats {
    justify-content: center;
  }

  .nexuscategories__grid {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(4, 300px);
  }

  .nexuscategories__item--large {
    grid-column: span 8;
    grid-row: span 2;
  }

  .nexuscategories__item:not(.nexuscategories__item--large):not(.nexuscategories__item--wide) {
    grid-column: span 4;
    grid-row: span 1;
  }

  .pixelnews__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .eliteproducts__showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cyberhero {
    min-height: 80vh;
    padding: 40px 0;
  }

  .cyberhero__title {
    font-size: 2.5rem;
  }

  .cyberhero__stats {
    flex-direction: column;
    gap: 15px;
  }

  .cyberhero__actions {
    flex-direction: column;
  }

  .cyberhero__floating-elements {
    display: none;
  }

  .blazedeals__header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .blazedeals__grid {
    grid-template-columns: 1fr;
  }

  .nexuscategories__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 300px);
  }

  .nexuscategories__item,
  .nexuscategories__item--large,
  .nexuscategories__item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .pixelnews__header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .pixelnews__card {
    flex-direction: column;
  }

  .pixelnews__thumb img {
    width: 100%;
    height: 150px;
  }

  .eliteproducts__filters {
    grid-template-columns: repeat(2, 1fr);
  }

  .eliteproducts__specs {
    grid-template-columns: 1fr;
  }

  .eliteproducts__actions {
    flex-direction: column;
  }

  .eliteproducts__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cyberhero__title {
    font-size: 2rem;
  }

  .cyberhero__btn {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .blazedeals__title,
  .nexuscategories__title,
  .pixelnews__title,
  .eliteproducts__title {
    flex-direction: column;
    gap: 10px;
    font-size: 2rem;
  }

  .eliteproducts__filters {
    flex-direction: column;
  }

  .eliteproducts__filter {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .cyberhero {
    padding-top: 120px;
  }

  .cyberhero__actions {
    justify-content: center;
    text-align: center;
  }

  .cyberhero__visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .nexuscategories__item--wide {
    grid-column: span 4;
  }
}

@media (max-width: 768px) {
  .nexuscategories__item--large {
    grid-column: span 4 !important;
    grid-row: span 1 !important;
  }
}

@media (max-width: 480px) {
  .pixelnews__actions {
    flex-direction: column;
    gap: 15px;
  }
}