* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M4 4L14 28L17.5 17.5L28 14L4 4Z" fill="%23ffffff" stroke="%23ff3333" stroke-width="2"/></svg>') 4 4, auto !important;
}

a, button, [role="button"], input[type="submit"], input[type="button"], .btn, .nav-links a, .mobile-menu-toggle, .interactable, .logo-container, .nav-menu a, .nav-btn, .footer-right a, .logo-container * {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M4 4L14 28L17.5 17.5L28 14L4 4Z" fill="%23ff3333" stroke="%23ffcc00" stroke-width="2.5"/></svg>') 4 4, pointer !important;
}

.module-card, .category-card, .command-item {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M4 4L14 28L17.5 17.5L28 14L4 4Z" fill="%23ffffff" stroke="%23ff3333" stroke-width="2"/></svg>') 4 4, auto !important;
}

.promo-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.promo-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.promo-popup {
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  border-radius: 24px;
  border: 1px solid rgba(91, 124, 255, 0.3);
  max-width: 420px;
  width: calc(100% - 40px);
  position: relative;
  box-shadow: 0 25px 80px rgba(91, 124, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.promo-popup-overlay.active .promo-popup {
  transform: scale(1) translateY(0);
}

.promo-popup::before {
  display: none;
}

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

.promo-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  z-index: 2;
}

.promo-popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  transform: rotate(90deg);
}

.promo-popup-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.5rem 1.25rem;
  text-align: center;
}

.promo-popup-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: white;
  box-shadow: 0 10px 40px rgba(91, 124, 255, 0.4);
  animation: popupIconPulse 2s ease-in-out infinite;
}

.promo-popup-icon svg {
  width: 32px;
  height: 32px;
}

@keyframes popupIconPulse {
  0%, 100% {
    box-shadow: 0 10px 40px rgba(91, 124, 255, 0.4);
  }
  50% {
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.6);
  }
}

.promo-popup-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.promo-popup-badge span {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
  animation: badgeShine 2s ease-in-out infinite;
}

@keyframes badgeShine {
  0%, 100% {
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
  }
}

.promo-popup-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo-popup-description {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.promo-popup-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1rem;
  padding: 0;
}

.promo-popup-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  color: var(--text-primary);
  font-size: 0.8rem;
}

.promo-popup-features li svg {
  width: 14px;
  height: 14px;
  color: #22c55e;
  flex-shrink: 0;
}

.promo-popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.promo-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #5B7CFF 0%, #7C3AED 100%);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(91, 124, 255, 0.4);
}

.promo-btn-primary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.promo-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(91, 124, 255, 0.5);
}

.promo-btn-secondary {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 0.4rem;
  transition: color 0.3s ease;
}

.promo-btn-secondary:hover {
  color: var(--text-primary);
}

@media (max-width: 600px) {
  .promo-popup-overlay {
    padding: 10px;
    align-items: center;
  }
  
  .promo-popup {
    width: calc(100% - 20px);
    max-width: 100%;
    border-radius: 18px;
  }
  
  .promo-popup-content {
    padding: 1.2rem 1rem;
  }
  
  .promo-popup-close {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
  }
  
  .promo-popup-close svg {
    width: 18px;
    height: 18px;
  }
  
  .promo-popup-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.6rem;
  }
  
  .promo-popup-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .promo-popup-badge {
    margin-bottom: 0.5rem;
  }
  
  .promo-popup-badge span {
    font-size: 0.65rem;
    padding: 0.35rem 0.8rem;
  }
  
  .promo-popup-title {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
  }
  
  .promo-popup-description {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
  }
  
  .promo-popup-features {
    margin-bottom: 0.8rem;
  }
  
  .promo-popup-features li {
    font-size: 0.75rem;
    padding: 0.3rem 0;
    gap: 0.4rem;
  }
  
  .promo-popup-features li svg {
    width: 12px;
    height: 12px;
  }
  
  .promo-popup-buttons {
    gap: 0.5rem;
  }
  
  .promo-btn-primary {
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
    border-radius: 8px;
  }
  
  .promo-btn-primary svg {
    width: 16px;
    height: 16px;
  }
  
  .promo-btn-secondary {
    font-size: 0.75rem;
    padding: 0.4rem;
  }
}

@media (max-width: 400px) {
  .promo-popup-overlay {
    padding: 8px;
  }
  
  .promo-popup {
    width: calc(100% - 16px);
    border-radius: 14px;
  }
  
  .promo-popup-content {
    padding: 1rem 0.8rem;
  }
  
  .promo-popup-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
  }
  
  .promo-popup-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .promo-popup-badge span {
    font-size: 0.6rem;
    padding: 0.3rem 0.7rem;
  }
  
  .promo-popup-title {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  
  .promo-popup-description {
    font-size: 0.72rem;
    line-height: 1.35;
    margin-bottom: 0.5rem;
  }
  
  .promo-popup-features li {
    font-size: 0.7rem;
    padding: 0.25rem 0;
  }
  
  .promo-popup-features li svg {
    width: 10px;
    height: 10px;
  }
  
  .promo-btn-primary {
    padding: 0.55rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .promo-btn-primary svg {
    width: 14px;
    height: 14px;
  }
  
  .promo-btn-secondary {
    font-size: 0.7rem;
  }
}

@media (max-height: 700px) {
  .promo-popup-content {
    padding: 1rem 0.9rem;
  }
  
  .promo-popup-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0.5rem;
  }
  
  .promo-popup-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .promo-popup-badge {
    margin-bottom: 0.4rem;
  }
  
  .promo-popup-badge span {
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
  }
  
  .promo-popup-title {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
  }
  
  .promo-popup-description {
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
  }
  
  .promo-popup-features {
    margin-bottom: 0.6rem;
  }
  
  .promo-popup-features li {
    padding: 0.25rem 0;
    font-size: 0.72rem;
  }
  
  .promo-popup-features li svg {
    width: 11px;
    height: 11px;
  }
  
  .promo-popup-buttons {
    gap: 0.4rem;
  }
  
  .promo-btn-primary {
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
  }
  
  .promo-btn-secondary {
    font-size: 0.72rem;
    padding: 0.35rem;
  }
}

@media (max-height: 550px) {
  .promo-popup-content {
    padding: 0.8rem 0.8rem;
  }
  
  .promo-popup-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.35rem;
  }
  
  .promo-popup-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .promo-popup-badge {
    margin-bottom: 0.3rem;
  }
  
  .promo-popup-badge span {
    font-size: 0.55rem;
    padding: 0.25rem 0.6rem;
  }
  
  .promo-popup-title {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }
  
  .promo-popup-description {
    font-size: 0.68rem;
    margin-bottom: 0.35rem;
    line-height: 1.3;
  }
  
  .promo-popup-features {
    margin-bottom: 0.4rem;
  }
  
  .promo-popup-features li {
    padding: 0.15rem 0;
    font-size: 0.65rem;
  }
  
  .promo-popup-features li svg {
    width: 9px;
    height: 9px;
  }
  
  .promo-popup-buttons {
    gap: 0.3rem;
  }
  
  .promo-btn-primary {
    padding: 0.5rem 0.8rem;
    font-size: 0.7rem;
  }
  
  .promo-btn-primary svg {
    width: 12px;
    height: 12px;
  }
  
  .promo-btn-secondary {
    font-size: 0.65rem;
    padding: 0.25rem;
  }
}

:root {
  --bg-primary: #171A24;
  --bg-secondary: #1E2230;
  --bg-card: #252936;
  --text-primary: #FFFFFF;
  --text-secondary: #B4B9C8;
  --accent-primary: #5B7CFF;
  --accent-secondary: #7C3AED;
  --accent-gradient: linear-gradient(135deg, #5B7CFF 0%, #7C3AED 100%);
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

html {
  scroll-behavior: smooth;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M4 4L14 28L17.5 17.5L28 14L4 4Z" fill="%23ffffff" stroke="%23ff3333" stroke-width="2"/></svg>') 4 4, auto;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M4 4L14 28L17.5 17.5L28 14L4 4Z" fill="%23ffffff" stroke="%23ff3333" stroke-width="2"/></svg>') 4 4, auto;
  width: 100%;
  max-width: 100vw;
}

a, button, .btn, .nav-links a, .mobile-menu-toggle {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M4 4L14 28L17.5 17.5L28 14L4 4Z" fill="%23ff3333" stroke="%23ffcc00" stroke-width="2.5"/></svg>') 4 4, pointer;
}

/* VIP Icon Styling */
.vip-crown {
    color: #ffcc00;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}
