@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;800;900&family=Montserrat:wght@500;700&family=Rajdhani:wght@600;700&display=swap');

:root {
  --bg-dark: #0d0814;
  --card-bg: rgba(22, 11, 38, 0.75);
  --neon-pink: #ff007f;
  --neon-cyan: #00f0ff;
  --neon-purple: #9d00ff;
  --neon-gold: #ffcc00;
  --neon-green: #00ff88;
  --glass-border: rgba(255, 0, 127, 0.35);
  --metal-bg: linear-gradient(180deg, rgba(40,25,65,0.9) 0%, rgba(15,8,30,0.95) 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Rajdhani', -apple-system, sans-serif;
  user-select: none;
  touch-action: manipulation;
}

html, body {
  min-height: 100% !important;
  height: auto !important;
  background-color: var(--bg-dark) !important;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 0, 127, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
  background-attachment: fixed;
  color: #ffffff;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.hidden { display: none !important; }

/* Loader Screen */
#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--bg-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.fade-out {
  opacity: 0; visibility: hidden;
}

.loader-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 26px; font-weight: 900;
  color: #fff;
  text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-pink);
}

.loader-bar {
  width: 200px; height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px; margin: 18px 0; overflow: hidden;
}

.loader-progress {
  width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  animation: loadingAnim 2s infinite ease-in-out;
}

@keyframes loadingAnim {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.loader-text {
  font-size: 11px; color: #8f79b3; letter-spacing: 1px;
}

/* User Header */
.user-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: calc(20px + env(safe-area-inset-top, 0px)) 16px 12px 16px;
  width: 100%;
  background: linear-gradient(180deg, rgba(13, 8, 20, 0.95) 0%, rgba(13, 8, 20, 0) 100%);
  position: relative; z-index: 10;
}

body.platform-ios .user-header { padding-top: calc(50px + env(safe-area-inset-top, 0px)); }
body.platform-pc .user-header { padding-top: 16px; }
.tab-profile-active .user-header { display: none !important; }

.user-profile { display: flex; align-items: center; gap: 12px; }

.avatar-wrapper {
  position: relative; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
}

.progress-ring { position: absolute; top: 0; left: 0; transform: rotate(-90deg); }
.progress-ring__circle {
  stroke-dasharray: 157; stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.5s ease;
  filter: drop-shadow(0 0 4px var(--neon-pink));
}

.user-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }

.level-badge {
  position: absolute; bottom: -2px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff; font-size: 10px; font-weight: 800;
  padding: 2px 6px; border-radius: 10px;
  border: 1.5px solid var(--bg-dark);
  box-shadow: 0 0 8px rgba(255, 0, 127, 0.6); line-height: 1;
}

.user-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 16px; color: #fff; letter-spacing: 0.5px;
}

.balance-pill {
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px; padding: 4px 6px 4px 10px; gap: 8px;
  backdrop-filter: blur(8px); cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.currency-icon {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--neon-cyan), #4facfe);
  border-radius: 50%; color: #000; font-weight: 900;
  font-size: 11px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 6px var(--neon-cyan);
}

.balance-amount {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800; font-size: 14px; color: #fff;
}

.add-balance-btn {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  border: none; border-radius: 50%; color: #fff;
  font-size: 16px; font-weight: bold;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 0 8px rgba(255, 0, 127, 0.5);
  padding: 0; line-height: 1;
}

/* Main Content & Grid */
.main-content { padding: 10px 16px 140px 16px; }

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px; margin-top: 10px; margin-bottom: 16px;
  color: #fff; text-transform: uppercase; letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(255,255,255,0.3); padding-left: 4px;
}

.section-title.center-text { text-align: center; padding-left: 0; }

.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; width: 100%; }

.case-card {
  background: var(--card-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: 16px; padding: 16px 12px;
  text-align: center; position: relative; overflow: hidden;
  backdrop-filter: blur(8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(255, 0, 127, 0.05);
  cursor: pointer;
}

.case-card:active {
  transform: translateY(-2px) scale(0.97);
  border-color: var(--neon-cyan); box-shadow: 0 0 20px var(--neon-cyan);
}

.case-img { font-size: 46px; margin-bottom: 10px; filter: drop-shadow(0 0 10px rgba(255,0,127,0.5)); }

.case-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px; font-weight: 800; margin-bottom: 6px; letter-spacing: 0.5px;
}

.case-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px; color: var(--neon-gold); font-weight: 800;
  text-shadow: 0 0 6px rgba(255, 204, 0, 0.4);
}

/* Кнопки и блоки */
.back-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff; padding: 8px 16px; border-radius: 10px;
  font-family: 'Orbitron', sans-serif; font-size: 12px; font-weight: 700;
  cursor: pointer; margin-bottom: 12px; transition: all 0.2s ease;
}

.back-btn:active { background: rgba(255, 0, 127, 0.3); border-color: var(--neon-pink); }

.single-view-container {
  background: var(--card-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: 20px; padding: 20px 16px; backdrop-filter: blur(10px);
}

.sub-section-title {
  font-family: 'Orbitron', sans-serif; font-size: 14px;
  color: rgba(255, 255, 255, 0.8); margin: 24px 0 12px 0;
  text-align: center; letter-spacing: 1px;
}

.drops-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

.drop-item-card {
  background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px; padding: 10px; display: flex;
  flex-direction: column; align-items: center; text-align: center; position: relative;
}

.drop-item-emoji { font-size: 30px; margin-bottom: 4px; }
.drop-item-name { font-size: 12px; font-weight: 700; color: #fff; }
.drop-item-price { font-size: 11px; color: var(--neon-cyan); font-weight: 800; }
.drop-item-rarity { font-size: 9px; color: var(--neon-gold); text-transform: uppercase; }

.item-sell-btn {
  margin-top: 8px; width: 100%; padding: 6px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  border: none; border-radius: 8px; color: #fff;
  font-family: 'Orbitron', sans-serif; font-size: 10px; font-weight: 800; cursor: pointer;
}

/* Profile Tab */
#tab-profile { padding-top: calc(10px + env(safe-area-inset-top, 0px)); }

.profile-card, .ref-card, .history-card {
  background: rgba(23, 14, 34, 0.75); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px; padding: 16px; margin-bottom: 16px; backdrop-filter: blur(10px);
}

.profile-top { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.profile-details h3 { font-family: 'Orbitron', sans-serif; margin: 0; font-size: 20px; color: #fff; }
.profile-balance-text { margin: 6px 0 0 0; font-size: 14px; font-weight: 700; color: rgba(255, 255, 255, 0.8); }
.profile-balance-text span { color: var(--neon-cyan); font-weight: 800; }

.deposit-btn {
  width: 100%; padding: 12px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  border: none; border-radius: 12px; color: #fff;
  font-family: 'Orbitron', sans-serif; font-weight: 800; font-size: 14px;
  cursor: pointer; box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
}

.ref-header h4 { margin: 0 0 6px 0; font-size: 16px; color: #fff; }
.ref-header p { margin: 0 0 14px 0; font-size: 12px; color: rgba(255, 255, 255, 0.7); }
.ref-header p span { color: var(--neon-cyan); font-weight: 800; }

.ref-actions { display: flex; gap: 8px; margin-bottom: 16px; }
.invite-btn {
  flex: 1; padding: 12px;
  background: linear-gradient(135deg, var(--neon-cyan), #4facfe);
  border: none; border-radius: 12px; color: #000;
  font-family: 'Orbitron', sans-serif; font-weight: 800; cursor: pointer;
}

.copy-btn {
  width: 48px; background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px; color: #fff; font-size: 16px; cursor: pointer;
}

.ref-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  background: rgba(0, 0, 0, 0.2); padding: 10px; border-radius: 12px;
}

.stat-box { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: 'Orbitron', sans-serif; font-weight: 800; font-size: 14px; color: #fff; }
.stat-num.highlight { color: var(--neon-pink); }
.stat-label { font-size: 10px; color: rgba(255, 255, 255, 0.5); margin-top: 2px; }

.history-card h4 { margin: 0 0 12px 0; color: #fff; font-size: 15px; }
.history-empty { text-align: center; font-size: 12px; color: rgba(255, 255, 255, 0.4); padding: 12px 0; }

/* Roulette & Win Modals */
.modal {
  position: fixed; inset: 0;
  background: rgba(5, 2, 10, 0.85); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px; z-index: 10000;
}

.roulette-wrapper {
  position: relative; width: 100%; height: 95px;
  background: #05020a; border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3), inset 0 0 15px rgba(0,0,0,0.9);
  border-radius: 12px; overflow: hidden; margin: 18px 0;
}

.roulette-pointer {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 4px;
  background: var(--neon-pink);
  box-shadow: 0 0 12px var(--neon-pink), 0 0 25px var(--neon-pink);
  z-index: 10; transform: translateX(-50%);
}

.roulette-track { display: flex; gap: 12px; position: absolute; left: 0; top: 10px; }

.roulette-item {
  width: 75px; height: 75px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; font-size: 32px; flex-shrink: 0;
}

.case-actions { display: flex; gap: 10px; }

.btn {
  flex: 1; padding: 12px; border-radius: 10px; border: none;
  font-family: 'Orbitron', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: 0.5px; cursor: pointer; text-transform: uppercase;
  transition: transform 0.15s, opacity 0.15s;
}

.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primary {
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  color: #fff; box-shadow: 0 0 15px rgba(255, 0, 127, 0.5);
}

.btn-success {
  background: linear-gradient(90deg, var(--neon-green), #00b0ff);
  color: #000; box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.btn-secondary { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); color: #fff; }

/* Win Modal Styles */
.win-card {
  background: linear-gradient(180deg, #1f0b38 0%, #0a0414 100%);
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 35px var(--neon-cyan), inset 0 0 15px var(--neon-cyan);
  border-radius: 20px; width: 100%; max-width: 340px;
  padding: 24px 18px; text-align: center; position: relative;
  animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.win-card.state-win {
  border-color: var(--neon-green);
  box-shadow: 0 0 35px var(--neon-green), inset 0 0 15px var(--neon-green);
}
.win-card.state-win .win-tag { color: var(--neon-green); text-shadow: 0 0 8px var(--neon-green); }

.win-card.state-lose {
  border-color: var(--neon-pink);
  box-shadow: 0 0 35px var(--neon-pink), inset 0 0 15px var(--neon-pink);
}
.win-card.state-lose .win-tag { color: var(--neon-pink); text-shadow: 0 0 8px var(--neon-pink); }

.win-card.state-info {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 35px var(--neon-cyan), inset 0 0 15px var(--neon-cyan);
}

@keyframes popIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.win-tag {
  font-family: 'Orbitron', sans-serif; font-size: 11px; font-weight: 900;
  letter-spacing: 2px;
}

.win-emoji {
  font-size: 64px; margin: 15px 0 5px 0;
  filter: drop-shadow(0 0 15px var(--neon-pink));
  animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.win-item-name { font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.win-rarity { font-size: 12px; color: rgba(255, 255, 255, 0.8); letter-spacing: 0.5px; margin-bottom: 20px; }

.win-actions { display: flex; flex-direction: column; gap: 10px; }

/* Target Selection Modal */
.target-modal-card {
  background: linear-gradient(180deg, #1f0b38 0%, #0a0414 100%);
  border: 1.5px solid var(--neon-cyan); border-radius: 20px;
  width: 100%; max-width: 360px; max-height: 80vh;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.target-modal-header {
  padding: 16px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.target-modal-header h3 { font-family: 'Orbitron', sans-serif; font-size: 14px; color: #fff; }
.target-close-btn { background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; }

.target-gifts-list {
  padding: 12px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  overflow-y: auto; max-height: 60vh;
}

.target-gift-card {
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px; padding: 12px 8px; display: flex; flex-direction: column;
  align-items: center; cursor: pointer; transition: all 0.2s ease;
}

.target-gift-card:active { transform: scale(0.95); border-color: var(--neon-cyan); background: rgba(0, 240, 255, 0.1); }
.target-gift-card .target-emoji { font-size: 32px; margin-bottom: 4px; }
.target-gift-card .target-title { font-size: 12px; font-weight: 700; color: #fff; text-align: center; }
.target-gift-card .target-val { font-family: 'Orbitron', sans-serif; font-size: 11px; color: var(--neon-cyan); font-weight: 800; margin-top: 2px; }

/* Upgrade Game Styles */
.upgrade-container { display: flex; flex-direction: column; align-items: center; padding: 10px 14px; }

.upgrade-wheel-wrapper {
  position: relative; width: 210px; height: 210px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}

.upgrade-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.upgrade-bg { fill: none; stroke: rgba(255, 0, 85, 0.2); stroke-width: 10; }
.upgrade-arc {
  fill: none; stroke: #00ff88; stroke-width: 10; stroke-linecap: round;
  transition: stroke-dasharray 0.3s ease; filter: drop-shadow(0 0 8px #00ff88);
}

.upgrade-pointer {
  position: absolute; top: 5px; width: 4px; height: 24px;
  background: #ffffff; box-shadow: 0 0 10px #ffffff, 0 0 20px #00f2fe;
  border-radius: 2px; transform-origin: center 100px; transform: rotate(0deg); z-index: 5;
}

.upgrade-center-info { position: absolute; display: flex; flex-direction: column; align-items: center; }
.upgrade-percent {
  font-family: 'Orbitron', sans-serif; font-size: 32px; font-weight: 900;
  color: #00ff88; text-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}
.upgrade-label { font-size: 11px; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 1px; }

.upgrade-cards-grid {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; gap: 10px; margin-bottom: 20px;
}

.upgrade-card-box {
  flex: 1; background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px;
  padding: 12px 8px; display: flex; flex-direction: column; align-items: center; position: relative;
}

.upgrade-card-box.clickable { cursor: pointer; transition: all 0.2s ease; }
.upgrade-card-box.clickable:active { transform: scale(0.97); border-color: var(--neon-cyan); }

.upgrade-card-box.highlight {
  background: rgba(0, 242, 254, 0.05); border-color: rgba(0, 242, 254, 0.3);
  box-shadow: inset 0 0 15px rgba(0, 242, 254, 0.1);
}

.box-tag { font-size: 8px; font-weight: 800; color: rgba(255, 255, 255, 0.5); letter-spacing: 0.5px; margin-bottom: 6px; text-align: center; }
.box-icon { font-size: 36px; margin-bottom: 6px; }

.upgrade-input-wrapper {
  display: flex; align-items: center; gap: 4px;
  background: rgba(0, 0, 0, 0.4); padding: 4px 8px;
  border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.1);
}

.upgrade-input-wrapper input {
  width: 55px; background: transparent; border: none; outline: none;
  color: #fff; font-family: 'Orbitron', sans-serif; font-weight: 700;
  font-size: 13px; text-align: center;
}

.upgrade-arrow { font-size: 18px; color: rgba(255, 255, 255, 0.3); }
.target-name { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; text-align: center; }
.target-price { font-size: 11px; font-weight: 800; color: var(--neon-cyan); }

.upgrade-btn {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--neon-cyan) 0%, #4facfe 100%);
  border: none; border-radius: 14px; color: #000;
  font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 16px;
  letter-spacing: 1px; cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4); transition: transform 0.2s, box-shadow 0.2s;
}

.upgrade-btn:active { transform: scale(0.97); }
.upgrade-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Bottom Navigation */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 68px; background: rgba(13, 8, 20, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 0, 127, 0.3);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 6px calc(env(safe-area-inset-bottom, 0px) / 2); gap: 4px; z-index: 1000;
}

.nav-item { background: none; border: none; flex: 1; min-width: 0; padding: 2px; cursor: pointer; }

.nav-btn-inner {
  background: linear-gradient(180deg, rgba(60, 25, 90, 0.6) 0%, rgba(20, 10, 35, 0.8) 100%);
  border: 1px solid rgba(255, 0, 127, 0.3); border-radius: 10px;
  padding: 6px 2px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px; color: #8f79b3;
  transition: all 0.2s ease; box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 2px 8px rgba(0,0,0,0.5);
}

.nav-btn-inner span {
  font-family: 'Orbitron', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 0.3px; text-transform: uppercase; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}

.nav-icon-svg {
  width: 18px; height: 18px; stroke: #8f79b3;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.8)); transition: all 0.2s ease;
}

.nav-item.active .nav-btn-inner {
  background: linear-gradient(180deg, rgba(255, 0, 127, 0.3) 0%, rgba(40, 10, 60, 0.95) 100%);
  border: 1.5px solid var(--neon-pink);
  box-shadow: 0 0 12px rgba(255, 0, 127, 0.4), inset 0 0 6px rgba(255, 0, 127, 0.2);
  color: #ffffff;
}

.nav-item.active .nav-icon-svg { stroke: var(--neon-cyan); filter: drop-shadow(0 0 6px var(--neon-cyan)); }
/* Кнопки в карточке инвентаря */
.inventory-card-actions {
  display: flex;
  gap: 6px;
  width: 100%;
  margin-top: 8px;
}

.item-sell-btn {
  flex: 1;
  padding: 6px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.item-withdraw-btn {
  flex: 1;
  padding: 6px;
  background: linear-gradient(90deg, var(--neon-cyan), #4facfe);
  border: none;
  border-radius: 8px;
  color: #000;
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.item-status-pending {
  width: 100%;
  margin-top: 8px;
  padding: 6px;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--neon-cyan);
  border-radius: 8px;
  color: var(--neon-cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}