:root {
  --color-bg: #13111C;
  --color-primary: rgb(61, 106, 255);
  --color-secondary: #6200ff;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.7);
  --gradient: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

* {
	cursor: none;
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--color-text-muted);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

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

.custom__cursor {
  width: 20px;
  height: 20px;
  background: var(--gradient);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.2s;
}

.custom__cursor.active {
  transform: scale(1.5);
}

@media only screen and (max-width: 320px) {
  .custom__cursor {
    display: none !important;
  }
  * {
    cursor: auto !important;
  }
}

@media only screen and (max-width: 480px) {
  .custom__cursor {
    display: none !important;
  }
  * {
    cursor: auto !important;
  }
}

@media only screen and (max-width: 600px) {
  .custom__cursor {
    display: none !important;
  }
  * {
    cursor: auto !important;
  }
}

@media only screen and (max-width: 768px) {
  .custom__cursor {
    display: none !important;
  }
  * {
    cursor: auto !important;
  }
}

@media only screen and (max-width: 900px) {
  .custom__cursor {
    display: none !important;
  }
  * {
    cursor: auto !important;
  }
}

@media only screen and (max-width: 1024px) {
  .custom__cursor {
    display: none !important;
  }
  * {
    cursor: auto !important;
  }
}