@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg-main: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a26;
  --primary-red: #e63946;
  --primary-red-glow: rgba(230, 57, 70, 0.4);
  --secondary-gold: #f5bb27;
  --tertiary-blue: #29abf7;
  --text-main: #f0f0f5;
  --text-muted: #8e8e9e;
  
  --rarity-godly: #e63946;
  --rarity-ancient: #9b59b6;
  --rarity-unique: #e67e22;
  --rarity-legendary: #f1c40f;
  --rarity-vintage: #2ecc71;
  
  --font-main: 'Rubik', sans-serif;
  --font-heading: 'Fredoka', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
  min-height: 100vh;
}

.is-ready {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.main-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background Effects */
.weapon-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(10, 10, 15, 0.8) 0%, var(--bg-main) 100%);
}

.weapon-bg::before, .weapon-bg::after {
  content: '🔪';
  position: absolute;
  font-size: 2rem;
  opacity: 0.05;
  animation: float 15s infinite linear;
}

.weapon-bg::after {
  content: '🔫';
  left: 70%;
  animation-duration: 20s;
  animation-delay: -5s;
}

/* Language Switcher */
.lang-switcher {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 50;
}

.lang-button {
  background: rgba(18, 18, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.lang-button:hover {
  border-color: var(--primary-red);
  box-shadow: 0 0 10px var(--primary-red-glow);
}

.lang-icon {
  font-size: 1.2rem;
}

.lang-label {
  font-weight: 500;
  font-size: 0.9rem;
}

.lang-select {
  display: none;
}

/* iOS Popup */
.ios-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.ios-popup-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.ios-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid var(--primary-red);
  box-shadow: 0 0 30px rgba(230, 57, 70, 0.3);
  text-align: center;
  max-width: 90%;
  width: 400px;
}

.ios-instruction-gif {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.ios-instruction-text {
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Page Hero */
.page-hero {
  text-align: center;
  padding: 4rem 0 2rem;
  position: relative;
}

.hero-logo {
  max-width: 200px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 15px rgba(230, 57, 70, 0.5));
}

.hero-text {
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 5s ease infinite;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(18, 18, 26, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  font-size: 0.9rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--rarity-vintage);
  box-shadow: 0 0 8px var(--rarity-vintage);
  animation: pulse 2s infinite;
}

/* Shop Panel */
.shop-panel {
  background: rgba(18, 18, 26, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.shop-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.shop-header.store-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 1rem;
}

.store-title-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.store-banner-tabs {
  display: flex;
  gap: 1rem;
}

.store-tab {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.store-tab.active {
  background: var(--primary-red);
  color: white;
  box-shadow: 0 0 15px var(--primary-red-glow);
}

/* Shop Items Grid */
.shop-items-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.shop-item {
  background: rgba(10, 10, 15, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.shop-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 15px var(--primary-red-glow);
}

.shop-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  pointer-events: none;
}

.shop-item-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  padding: 1rem;
}

.shop-item-img-box img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.shop-item:hover .shop-item-img-box img {
  transform: scale(1.1) rotate(5deg);
}

.shop-item-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.shop-item-name {
  color: white;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-align: center;
}

.shop-item-stock {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
}

.shop-item-rarity {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  align-self: center;
  margin-top: auto;
}

.rarity-godly { background: rgba(230, 57, 70, 0.2); color: var(--rarity-godly); border: 1px solid var(--rarity-godly); }
.rarity-ancient { background: rgba(155, 89, 182, 0.2); color: var(--rarity-ancient); border: 1px solid var(--rarity-ancient); }
.rarity-unique { background: rgba(230, 126, 34, 0.2); color: var(--rarity-unique); border: 1px solid var(--rarity-unique); }
.rarity-legendary { background: rgba(241, 196, 15, 0.2); color: var(--rarity-legendary); border: 1px solid var(--rarity-legendary); }
.rarity-vintage { background: rgba(46, 204, 113, 0.2); color: var(--rarity-vintage); border: 1px solid var(--rarity-vintage); }

.roblox-claim-btn {
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.roblox-claim-btn:hover {
  background: #ff4a5a;
  box-shadow: 0 0 15px var(--primary-red-glow);
}

.fire-effect {
  border-color: var(--secondary-gold);
  animation: glow 2s infinite alternate;
}

/* Generator Modal */
.gen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gen-modal.open {
  opacity: 1;
  pointer-events: all;
}

.gen-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.gen-box {
  position: relative;
  background: var(--bg-card);
  width: 90%;
  max-width: 450px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--primary-red);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.gen-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.gen-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gen-logo-img {
  height: 30px;
}

.gen-label {
  font-family: var(--font-heading);
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.gen-screen {
  display: none;
  padding: 2rem 1.5rem;
}

.gen-screen.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* Gen Screen 1 */
.gen-item-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gen-item-thumb {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.gen-item-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gen-item-name {
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

.gen-item-badge {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  background: rgba(230, 57, 70, 0.2);
  color: var(--primary-red);
  border: 1px solid var(--primary-red);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  width: max-content;
}

.gen-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-align: center;
}

.gen-input-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.gen-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.gen-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1rem 1rem 2.5rem;
  border-radius: 8px;
  color: white;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.gen-input:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.2);
}

.gen-error-msg {
  color: var(--primary-red);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-align: center;
  display: none;
}

.gen-btn-primary {
  width: 100%;
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gen-btn-primary:hover {
  background: #ff4a5a;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
  transform: translateY(-2px);
}

.gen-security-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.gen-security-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rarity-vintage);
  box-shadow: 0 0 5px var(--rarity-vintage);
  animation: pulse 2s infinite;
}

/* Gen Screen 2 */
.gen-progress-header {
  text-align: center;
  margin-bottom: 2rem;
}

.avatar-scanner-container {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scanner-avatar-img {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.5s;
}

.avatar-scanner-container.scanning .scanner-avatar-img {
  opacity: 1;
}

.scanner-laser {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-red);
  box-shadow: 0 0 10px var(--primary-red), 0 20px 20px rgba(230,57,70,0.4);
  animation: scan 2s linear infinite;
  display: none;
}

.avatar-scanner-container.scanning .scanner-laser {
  display: block;
}

.gen-progress-label {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
}

.gen-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gen-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.gen-step.active {
  opacity: 1;
}

.gen-step.done {
  opacity: 0.7;
}

.gen-step-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  color: white;
}

.gen-step.active .gen-step-icon {
  background: var(--primary-red);
  box-shadow: 0 0 10px rgba(230,57,70,0.5);
}

.gen-step.done .gen-step-icon {
  background: var(--rarity-vintage);
}

.gen-step-title {
  color: white;
  font-weight: 500;
}

.gen-step-sub {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.gen-progress-bar-wrap {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin-top: 2rem;
  overflow: hidden;
}

.gen-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-red), #ff4a5a);
  border-radius: 3px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(230,57,70,0.5);
}

/* Gen Screen 3 */
.gen-transfer-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  background: rgba(0,0,0,0.3);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.transfer-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 80px;
}

.transfer-avatar-wrap, .transfer-item-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid rgba(255,255,255,0.1);
}

.transfer-avatar-img, .transfer-item-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  border-radius: 50%;
}

.transfer-item-img {
  border-radius: 0;
}

.transfer-status-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
}

.transfer-status-indicator.online { background: var(--rarity-vintage); }
.transfer-status-indicator.pending { background: var(--rarity-unique); }

.transfer-username, .transfer-item-name {
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.transfer-badge {
  font-size: 0.7rem;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-weight: bold;
}

.online-badge { background: rgba(46,204,113,0.2); color: var(--rarity-vintage); border: 1px solid var(--rarity-vintage); }
.pending-badge { background: rgba(230,126,34,0.2); color: var(--rarity-unique); border: 1px solid var(--rarity-unique); }

.transfer-path {
  flex-grow: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  margin: 0 1rem;
  transform: translateY(-15px);
}

.transfer-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--primary-red);
  box-shadow: 0 0 8px var(--primary-red);
}

.transfer-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px white, 0 0 20px var(--primary-red);
  animation: transferPulse 2s infinite;
  display: none;
}

.gen-success-sub {
  color: var(--text-muted);
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* CPA Offers */
.offers-loading {
  text-align: center;
  padding: 1rem;
}

.spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--primary-red);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.offer-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-card {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.4);
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 4px solid var(--primary-red);
  gap: 1rem;
  transition: all 0.3s ease;
}

.offer-card:hover {
  background: rgba(230,57,70,0.1);
  border-color: rgba(230,57,70,0.3);
}

.offer-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-grow: 1;
  min-width: 0;
}

.offer-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.offer-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.offer-title {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-desc {
  color: var(--text-muted);
  font-size: 0.8rem;
  display: block;
}

.offer-action {
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.offer-action:hover {
  background: #ff4a5a;
  box-shadow: 0 0 10px rgba(230,57,70,0.4);
}

.success-message-box {
  background: rgba(46,204,113,0.1);
  border: 1px solid var(--rarity-vintage);
  color: var(--rarity-vintage);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 1rem;
  display: none;
}

.cpa-modal-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.secure-footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.status-dot.pulsing {
  width: 6px;
  height: 6px;
  background: var(--rarity-vintage);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.gen-expire-note {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem 0;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-keywords {
  color: rgba(255,255,255,0.2);
  font-size: 0.7rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.05; }
  90% { opacity: 0.05; }
  100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

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

@keyframes scan {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@keyframes glow {
  from { box-shadow: 0 0 5px var(--secondary-gold); }
  to { box-shadow: 0 0 20px var(--secondary-gold), 0 0 30px var(--secondary-gold); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes transferPulse {
  0% { left: 0%; opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes bloodDrip {
  0% { height: 0; opacity: 1; }
  100% { height: 50px; opacity: 0; }
}

/* Responsive */
@media (min-width: 480px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 768px) {
  .shop-items-list { grid-template-columns: repeat(3, 1fr); }
  .hero-title { font-size: 4rem; }
  .shop-panel { padding: 2rem; }
}

@media (min-width: 1024px) {
  .shop-items-list { grid-template-columns: repeat(4, 1fr); }
}
