@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
:root {
  --move-x: 0deg;
  --move-y: 0deg;
  --transition: 1.5s cubic-bezier(.05,.5,0,1);
}
.catalog-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--color-white);
  font-size: 2em;
  text-align: center;
  margin: 30px 0 0;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.47);
}
.product-list {
  display: flex;
  flex-direction: column;
  gap: 128px;          
  margin: 25px 0 50px;
  padding: 0;
  list-style: none;
  margin-bottom: 48px;
}
.product-card {
  display: flex;
  align-items: center;     
  gap: 24px;
  padding: 0;
  background: none;
  box-shadow: none;
}

.product-card__left {
  flex: 0 0 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 700px; 
}


.product-name {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(5rem, 10vw, 10rem);         
  line-height: 1;
   background: linear-gradient(
    to bottom,
    var(--text-grad-from) 0%,
    var(--text-grad-to)   100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 1px 1px rgba(0,0,0,0.15);
  filter: drop-shadow(0 0 6px var(--text-glow-color));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform var(--transition);
  transform:
    rotateX(var(--move-y))
    rotateY(var(--move-x));
}
.product-name::after {
  content: attr(data-name);
  position: absolute;
  top: 0; left: 0;
  z-index: -1;
  color: rgba(0,0,0,0.25);
  transform: translateZ(-6px);
  filter: blur(2px);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform var(--transition);
  transform:
    rotateX(var(--move-y))
    rotateY(var(--move-x));
}
.product-card__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-desc {
  margin: 0;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.4);      
  border-radius: 12px;                  
  color: rgba(255, 255, 255, 0.9);      
  font-size: 1.05em;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);           
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}

.product-desc:hover {
  background: rgba(0, 0, 0, 0.55);
}
.product-prices {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}


.price-option .buy-button {

  background: linear-gradient(
    45deg,
    rgba(255, 0, 146, 0.4),
    rgba(0, 191, 255, 0.4)
  );
  background-size: 200% 200%;

  animation: gradientBG 4s ease infinite;

  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1em;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.price-option .buy-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
@keyframes gradientBG {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}

.price-option .buy-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.5);
}
.price-option .buy-button.monthly {
  position: relative;
  border: 2px solid rgba(255, 0, 146, 0.8);
  border-radius: 30px;
  background: linear-gradient(
    45deg,
    rgba(139, 100, 238, 0.379)
    rgba(0, 191, 255, 0.4)
  );
  animation: gradientBG 4s ease infinite;
  color: #ff0092;
  font-weight: 700;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.2),
    inset 0 0 8px rgba(255,0,146,0.3);
  transition:
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.price-option .buy-button.monthly:hover {
  box-shadow:
    0 6px 16px rgba(0,0,0,0.25),
    inset 0 0 10px rgba(255,0,146,0.5);
  transform: translateY(-2px) scale(1.05);
}
.price-option .buy-button.monthly:active {
  background: rgba(36, 199, 227, 0.08);
  box-shadow:
    0 2px 8px rgba(13, 166, 213, 0.15),
    inset 0 0 6px rgba(255,0,146,0.3);
  transform: translateY(0) scale(0.98);
}
.purchase-notif {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  padding: 1.5rem 2.5rem;
  max-width: 90%;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 146, 0.85) 0%,
    rgba(0, 191, 255, 0.85) 100%
  );
  border-radius: 16px;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.4;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 60px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(.2,.8,.2,1),
    opacity 0.4s ease;
  z-index: 10000;
  pointer-events: none;
}

.purchase-notif.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.notif-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.notif-backdrop.visible {
  opacity: 1;
}
.purchase-notif {
  background: linear-gradient(
    135deg,
    rgba(255, 0, 146, 0.25),
    rgba(0, 191, 255, 0.25)
  );
  border: 2px solid rgba(255, 0, 146, 0.8);
  border-radius: 16px;
  
  padding: 1.5rem 2.5rem;
  max-width: 90%;
  text-align: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 0 20px rgba(255, 0, 146, 0.6),
    0 0 40px rgba(0, 191, 255, 0.6),
    inset 0 0 30px rgba(255,255,255,0.1);
  
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1),
              opacity 0.4s ease;
  pointer-events: none;
  z-index: 10000;
}

.purchase-notif.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);

  animation: neonPulse 2s ease-in-out infinite alternate;
}


@keyframes neonPulse {
  from {
    box-shadow:
      0 0 15px rgba(255, 0, 146, 0.5),
      0 0 30px rgba(0, 191, 255, 0.5),
      inset 0 0 20px rgba(255,255,255,0.05);
  }
  to {
    box-shadow:
      0 0 30px rgba(255, 0, 146, 0.8),
      0 0 60px rgba(0, 191, 255, 0.8),
      inset 0 0 40px rgba(255,255,255,0.15);
  }
}
.deposit-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1em;
  color: #fff;
  text-decoration: none;

  background: linear-gradient(
    45deg,
    rgba(255, 0, 146, 0.4),
    rgba(0, 191, 255, 0.4)
  );
  background-size: 200% 200%;
  animation: gradientBG 4s ease infinite;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deposit-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.site-footer {
  position: relative;
  z-index: 9999; 
}

.footer-bg {
  background-color: #000; 
  padding: 40px 0;
}
.footer-container {
  max-width: 1200px; 
  margin: 0 auto;    
  display: flex;
  flex-wrap: wrap;   
  gap: 40px;         
  justify-content: space-between; 
  color: #fff;
}
.footer-column {
  flex: 1 1 200px; 
}
.footer-left h2 {
  margin-bottom: 10px;
  font-size: 24px;
}
.footer-left p {
  line-height: 1.4;
  font-size: 15px;
}
.footer-column h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-column li {
  margin-bottom: 6px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-column a:hover {
  color: #ff0092;
}
.footer-games .unavailable {
	color: gray;
}
.footer-games .unavailable:hover {
	
  color: rgb(0, 191, 255);
}
@media (max-width: 768px) { /* адаптация под мобилки */
  .footer-container {
    flex-direction: column;
    align-items: center;      
    gap: 24px;               
    padding: 0 20px;          
  }

  .footer-column {
    flex: 1 1 100%;           
    max-width: 100%;          
    text-align: center;       
  }

  .footer-left p,
  .footer-column ul {
    margin: 0 auto;           
  }

  
  .footer-left h2 {
    font-size: 20px;
  }
  .footer-column h3 {
    font-size: 16px;
  }
  .footer-column li {
    font-size: 14px;
  }
   .product-card {
    flex-direction: column;
    gap: 12px;
  }
  .product-card__left {
    margin-bottom: 12px;
  }
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes gradientBG {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10000;
}
.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: rgba(0, 0, 0, 0.85);
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  text-align: center;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}
.modal-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.modal-product-name {
  color: #fff;
  margin-bottom: 1.5rem;
}
.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@keyframes gradientShift {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}

.modal-button {
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: 0.75rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);         
  backdrop-filter: blur(10px);                  
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.modal-button::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0.6;
  animation: gradientShift 5s ease infinite;
}
.modal-button.seller::before {
  background-image:
    linear-gradient(45deg,
      rgba(0,198,255,0.7) 0%,
      rgba(0,114,255,0.7) 50%,
      rgba(0,198,255,0.7) 100%
    );
}
.modal-button.seller:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.modal-button.bsc::before {
  background-image:
    linear-gradient(45deg,
      rgba(255,0,146,0.7) 0%,
      rgba(255,102,196,0.7) 50%,
      rgba(255,0,146,0.7) 100%
    );
}
.modal-button.bsc:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.product-status {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5ch;
  padding: 0.35em 0.8em;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  
  color: #fff;
  cursor: default;
  
  transition: 
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.product-status::before {
  content: '';
  flex-shrink: 0;
  width: 0.6em;
  height: 0.6em;
  border-radius: 50%;
  background: currentColor;
}
.product-status:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.product-status.status-undetected {
  color: #28a745;
}
.product-status.status-use-at-own-risk {
  color: #ffc107;
}
.product-status.status-detected {
  color: #dc3545;
}
.notif-pill {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-120%);
  padding: 1rem 2.5rem;
  max-width: 240px;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(20, 20, 20, 0.65) 100%
  );
  border: 2px solid #ff0092;
  border-radius: 30px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 10px rgba(255,0,146,0.8),
    0 0 20px rgba(0,191,255,0.8),
    inset 0 0 6px rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 4px rgba(0,0,0,0.5);
  opacity: 0;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation:
    slideIn 0.5s ease-out forwards,
    slideOut 0.5s ease-in forwards 3s;
}

@keyframes slideIn {
  from {
    transform: translateX(-50%) translateY(-120%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(30px); 
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(-50%) translateY(30px);
    opacity: 1;
  }
  to {
    transform: translateX(-50%) translateY(-120%);
    opacity: 0;
  }
}
.notif-progress {
  width: 100%;
  max-width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.notif-progress-bar {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.95);
  transform-origin: left;
  animation: shrinkProgress 3s linear forwards;
}
@keyframes shrinkProgress {
  from { width: 100%; }
  to   { width:   0%; }
}