

:root {
  --bg-dark: #070d09;
  --bg-card: #0f1812;
  --bg-card-hover: #16241b;
  --border-card: rgba(52, 211, 153, 0.16);
  --border-card-hover: rgba(0, 255, 136, 0.4);
  
  --text-primary: #ffffff;
  --text-secondary: #9ab8a3;
  --text-muted: #526e5b;
  --text-highlight: #34d399;
  
  --accent-blue: #10b981;
  --accent-cyan: #059669;
  --accent-orange: #f59e0b;
  --accent-red: #ef4444;
  --accent-green: #00ff88;
  --accent-yellow: #fbbf24;
  
  --btn-gradient: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
  --btn-gradient-hover: linear-gradient(135deg, #047857 0%, #059669 50%, #10b981 100%);

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

/* ==========================================================================
   CUSTOM SLEEK THIN DESKTOP SCROLLBAR ("mala linijica")
   ========================================================================== */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(52, 211, 153, 0.4) transparent;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(52, 211, 153, 0.35);
  border-radius: 99px;
  border: 1px solid rgba(0, 255, 136, 0.1);
  transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(52, 211, 153, 0.75);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
}

::-webkit-scrollbar-thumb:active {
  background: rgba(0, 255, 136, 0.9);
}

::-webkit-scrollbar-corner {
  background: transparent;
}


body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}


.bg-glow {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(7, 13, 9, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}


.app-container {
  width: 100%;
  max-width: 580px;
  min-height: 100vh;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}


.app-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 32px;
}

.logo-container {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, #15291e 0%, #0a140d 100%);
  border: 1.5px solid rgba(52, 211, 153, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.35);
  overflow: hidden;
  padding: 4px;
}

.logo-harvester-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(52, 211, 153, 0.6));
}



.nav-calc-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--text-highlight);
  padding: 8px 14px;
  border-radius: 20px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-calc-btn:hover {
  background: #192136;
  border-color: var(--text-highlight);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
  transform: translateY(-50%) scale(1.03);
}


.main-content {
  width: 100%;
}

.view {
  display: none;
  width: 100%;
  animation: fadeIn 0.25s ease-out forwards;
}

.view-active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}


.view-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 8px;
}

.back-btn {
  position: absolute;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.back-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--border-card-hover);
}

.view-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.highlight-text {
  color: var(--text-highlight);
}

.view-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  text-align: center;
}



.hero-section {
  text-align: center;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.hero-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.home-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.home-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.home-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}


.home-card.card-featured {
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.18);
}

.home-card.card-featured:hover {
  box-shadow: 0 0 28px rgba(249, 115, 22, 0.3);
}

.top-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-orange);
  color: var(--text-primary);
  font-size: 9px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 5px;
  letter-spacing: 0.5px;
}

.card-icon-wrapper {
  color: var(--text-primary);
  margin-bottom: 14px;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.card-desc {
  font-size: 11px;
  color: var(--text-secondary);
}

.card-arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.home-card:hover .card-arrow {
  transform: translateX(3px);
  color: var(--text-primary);
}


.home-card.card-full {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  min-height: 80px;
  padding: 16px 20px;
}

.home-card.card-full .card-icon-wrapper {
  margin-bottom: 0;
}



.servers-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.server-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.server-item-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.server-item-header:hover {
  background: var(--bg-card-hover);
}

.server-item.active-region {
  border-color: var(--accent-red);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.15);
}

.server-region {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flag-icon {
  font-size: 20px;
}

.region-name {
  font-size: 14px;
  font-weight: 700;
}

.server-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ping-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 10px;
  border-radius: 12px;
}

.ping-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.ping-green .ping-dot { background: var(--accent-green); box-shadow: 0 0 6px var(--accent-green); }
.ping-yellow .ping-dot { background: var(--accent-yellow); box-shadow: 0 0 6px var(--accent-yellow); }
.ping-red .ping-dot { background: var(--accent-red); box-shadow: 0 0 6px var(--accent-red); }

.expand-arrow {
  font-size: 10px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.server-item.open .expand-arrow {
  transform: rotate(180deg);
}


.server-details-panel {
  display: none;
  padding: 0 20px 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.15);
}

.server-item.open .server-details-panel {
  display: block;
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.servers-sub-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.sub-server-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-card);
}

.sub-server-info {
  display: flex;
  flex-direction: column;
}

.server-num {
  font-size: 12px;
  font-weight: 700;
}

.player-count {
  font-size: 10px;
  color: var(--text-secondary);
}

.btn-join-server {
  background: var(--btn-gradient);
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-join-server:hover {
  background: var(--btn-gradient-hover);
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}



.trade-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.trade-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 16px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.panel-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.value-badge {
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 12px;
}

.slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.slot-item {
  aspect-ratio: 1;
  background: #0d1220;
  border: 1.5px dashed rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.slot-item:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: #131b2e;
}

.plus-icon {
  font-size: 20px;
  color: var(--text-muted);
  font-weight: 300;
}

.slot-item:hover .plus-icon {
  color: var(--text-primary);
}


.slot-item.has-item {
  border-style: solid;
  border-color: rgba(52, 211, 153, 0.5);
  background: radial-gradient(circle, #19233d 0%, #0d1220 100%);
  padding: 8px;
}

.slot-weapon-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.7));
  transition: transform 0.2s ease;
}

.slot-item:hover .slot-weapon-img {
  transform: scale(1.08);
}

.slot-weapon-name {
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-top: 4px;
}

.slot-weapon-val {
  font-size: 9px;
  color: var(--accent-cyan);
  font-weight: 700;
}

.slot-remove-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.8);
  color: #fff;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.slot-item:hover .slot-remove-btn {
  opacity: 1;
}


.action-btn {
  width: 100%;
  background: var(--btn-gradient);
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 14px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
}

.action-btn:hover {
  background: var(--btn-gradient-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(6, 182, 212, 0.4);
}


.fairness-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fairness-slider-track {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ef4444 0%, #f59e0b 50%, #10b981 100%);
  position: relative;
  margin: 12px 0 8px 0;
}

.slider-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 2px 6px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thumb-pill {
  position: absolute;
  bottom: -28px;
  background: #151d30;
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: var(--accent-cyan);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.fairness-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 700;
}



.bottom-left-floating {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 10;
}

.lock-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.lock-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--text-highlight);
  transform: scale(1.05);
}

.watermark {
  position: fixed;
  bottom: 16px;
  right: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-align: right;
  line-height: 1.3;
  pointer-events: none;
  z-index: 5;
}

.watermark-sub {
  font-size: 10px;
}



body.modal-open,
body.lock {
  overflow: hidden !important;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  background: rgba(4, 6, 12, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
  animation: fadeIn 0.2s ease-out;
}

.modal-backdrop.modal-open {
  display: flex;
}

.modal-card {
  background: #111728;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  animation: modalScale 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--text-primary);
}


.spin-modal {
  width: 100%;
  max-width: 440px;
}

.modal-header-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.modal-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}


.reel-viewport {
  width: 100%;
  height: 110px;
  background: #090d18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.center-pointer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: #00f2fe;
  box-shadow: 0 0 12px #00f2fe, 0 0 20px #00f2fe;
  z-index: 10;
}

.center-pointer::before, .center-pointer::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.center-pointer::before {
  top: 0;
  border-top: 8px solid #00f2fe;
}

.center-pointer::after {
  bottom: 0;
  border-bottom: 8px solid #00f2fe;
}

.reel-track {
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
}

.reel-item {
  min-width: 90px;
  height: 90px;
  margin: 0 5px;
  background: #131929;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.reel-item-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.reel-item-val {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 4px;
}

.spin-action-btn {
  width: 100%;
  background: var(--btn-gradient);
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 14px;
  border-radius: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
  transition: all 0.2s ease;
}

.spin-action-btn:hover {
  background: var(--btn-gradient-hover);
  box-shadow: 0 6px 28px rgba(6, 182, 212, 0.5);
  transform: scale(1.02);
}


.picker-modal {
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  max-height: 85dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  touch-action: auto;
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-touch-callout: none !important;
}

.picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.picker-search {
  flex-shrink: 0;
}

.picker-search input {
  width: 100%;
  background: #090d18;
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  margin-bottom: 16px;
  user-select: auto;
  -webkit-user-select: auto;
}

.picker-search input:focus {
  border-color: var(--text-highlight);
}

.picker-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
  height: 380px;
  max-height: 55vh;
  max-height: 55dvh;
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: pan-y !important;
  overscroll-behavior-y: contain;
  padding-right: 4px;
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-touch-callout: none !important;
  box-sizing: border-box;
}

.picker-item-card {
  background: #0d1220;
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  touch-action: pan-y !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-touch-callout: none !important;
  -webkit-tap-highlight-color: transparent;
}

.picker-item-card * {
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-touch-callout: none !important;
}

.picker-item-card:hover {
  background: #172036;
  border-color: var(--text-highlight);
  transform: translateY(-2px);
}

.picker-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  pointer-events: none !important;
  -webkit-user-drag: none !important;
  user-select: none !important;
}

.picker-name {
  font-size: 11px;
  font-weight: 700;
  margin-top: 6px;
  text-align: center;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

.picker-val {
  font-size: 10px;
  color: var(--accent-cyan);
  font-weight: 800;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}


.status-modal, .lock-modal {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.status-icon-glow {
  font-size: 40px;
  margin-bottom: 12px;
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background: #090d18;
  border-radius: 4px;
  overflow: hidden;
  margin: 16px 0;
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--btn-gradient);
  transition: width 0.3s ease;
}

.bot-step-logs {
  width: 100%;
  background: #090d18;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 11px;
  color: var(--text-secondary);
  text-align: left;
  margin-bottom: 16px;
}

.lock-info-box {
  width: 100%;
  background: #090d18;
  border-radius: 12px;
  padding: 14px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
}

.info-row {
  display: flex;
  justify-content: space-between;
}



.swap-wizard-modal {
  max-width: 520px;
  width: 92%;
  padding: 24px;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-card-hover);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 185, 129, 0.2);
  transition: max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1), width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.swap-wizard-modal.step-5-active {
  max-width: 65vw;
  width: 65vw;
  min-width: 720px;
}


.browser-frame-container {
  width: 100%;
  background: #191b24;
  border-radius: 14px;
  border: 1px solid #2d3245;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.browser-frame-bar {
  display: flex;
  align-items: center;
  background: #232734;
  padding: 10px 14px;
  gap: 12px;
  border-bottom: 1px solid #2d3245;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots .red { background: #ff5f56; }
.browser-dots .yellow { background: #ffbd2e; }
.browser-dots .green { background: #27c93f; }

.browser-url-bar {
  flex: 1;
  background: #131620;
  border-radius: 8px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #718096;
  font-size: 12px;
  border: 1px solid #282d3d;
  overflow: hidden;
  position: relative;
}

#browser-url-text {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #a0aec0;
  text-align: left;
}

.browser-reload-btn {
  color: #a0aec0;
  font-size: 14px;
  cursor: pointer;
  padding: 0 4px;
}


.roblox-sim-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111217;
  padding: 10px 20px;
  border-bottom: 1px solid #232630;
}

.roblox-nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.roblox-nav-hamburger {
  color: #a0aec0;
  font-size: 18px;
  cursor: pointer;
}

.roblox-sim-logo {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.roblox-nav-links {
  display: flex;
  gap: 14px;
  margin-left: 8px;
}

.roblox-nav-links .nav-link {
  font-size: 13px;
  color: #a0aec0;
  font-weight: 600;
  cursor: pointer;
}

.roblox-nav-links .nav-link.active {
  color: #ffffff;
}

.roblox-sim-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1c1e28;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: #718096;
  width: 240px;
}

.roblox-sim-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.robux-pill {
  font-size: 12px;
  font-weight: 700;
  color: #e2e8f0;
  background: #1c1e28;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.robux-symbol {
  color: #34d399;
}

.roblox-icon-btn {
  color: #a0aec0;
  font-size: 14px;
  cursor: pointer;
}


.browser-frame-content {
  padding: 0;
  background: #171821;
}

.roblox-profile-container {
  padding: 0 0 20px 0;
}

.roblox-banner-header {
  height: 100px;
  background: linear-gradient(135deg, #0d2847 0%, #001e3d 50%, #10b981 100%);
  width: 100%;
}

.roblox-profile-main {
  display: flex;
  gap: 24px;
  padding: 0 28px;
  margin-top: -40px;
  align-items: flex-start;
  text-align: left;
}

.roblox-avatar-column {
  flex-shrink: 0;
}

.roblox-avatar-frame {
  position: relative;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  border: 4px solid #171821;
  background: #0e0f14;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.roblox-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roblox-status-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: #10b981;
  border: 3px solid #171821;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

.roblox-details-column {
  flex: 1;
  padding-top: 45px;
}

.roblox-user-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.roblox-bot-name {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.roblox-verified-icon {
  display: inline-flex;
  align-items: center;
}

.roblox-bot-handle {
  font-size: 13px;
  color: #a0aec0;
  margin: 4px 0 12px 0;
}

.badge-online {
  color: #34d399;
  font-weight: 700;
}

.roblox-stats-row {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #232634;
}

.stat-item {
  font-size: 12px;
  color: #a0aec0;
}

.stat-item strong {
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  margin-right: 4px;
}

.roblox-action-row {
  width: 100%;
}

.roblox-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #0066ff;
  color: #ffffff;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 0;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
  transition: all 0.2s ease;
}

.roblox-join-btn:hover {
  background: #0052cc;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}


.roblox-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 28px;
  margin-top: 18px;
  text-align: left;
}

.roblox-now-playing-card,
.roblox-about-card {
  background: #202330;
  border: 1px solid #2d3245;
  border-radius: 12px;
  padding: 14px 16px;
}

.card-header-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #718096;
  margin-bottom: 10px;
}

.playing-game-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.game-icon-square {
  width: 44px;
  height: 44px;
  background: #142118;
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.game-details-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.game-title {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
}

.game-by {
  font-size: 11px;
  color: #34d399;
}

.game-server-info {
  font-size: 11px;
  color: #a0aec0;
}

.about-text {
  font-size: 12px;
  color: #cbd5e0;
  line-height: 1.5;
}

.roblox-status-note {
  font-size: 12px;
  color: #8c9ab8;
  background: #111218;
  padding: 10px 16px;
  border-radius: 8px;
  margin: 16px 28px 0 28px;
  text-align: center;
}

@media (max-width: 1024px) {
  .swap-wizard-modal.step-5-active {
    max-width: 95vw;
    width: 95vw;
    min-width: unset;
  }
  .roblox-profile-grid {
    grid-template-columns: 1fr;
  }
  .roblox-nav-links, .roblox-sim-search {
    display: none;
  }

  /* Position Trade Calculator button higher and to the top right on mobile */
  .app-header {
    margin-top: 10px;
    margin-bottom: 28px;
  }

  .nav-calc-btn {
    top: -14px;
    right: 0;
    transform: none;
    padding: 6px 12px;
    font-size: 11px;
  }

  .nav-calc-btn:hover {
    transform: scale(1.03);
  }

  /* TabGUI Fake Tab / Iframe Browser Modal on Mobile & Tablets */
  .tabgui-card {
    width: 96vw;
    height: 93vh;
    height: 93dvh;
    max-height: none;
    border-radius: 12px;
  }

  .tabgui-header {
    padding: 8px 10px;
    gap: 8px;
  }

  /* Completely hide Mac OS dots (🔴🟡🟢) and navigation arrows (← →) on mobile/tablets */
  .tabgui-mac-dots,
  .tabgui-nav-btns {
    display: none !important;
  }

  .tabgui-top-tabs {
    padding: 6px 10px 0 10px;
  }

  .tabgui-new-tab {
    display: none;
  }

  .tabgui-address-bar {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 6px 12px !important;
    font-size: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .addr-host {
    display: block !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    flex: 1 !important;
    min-width: 0 !important;
    color: #ffffff !important;
  }

  .tabgui-right-actions {
    flex-shrink: 0 !important;
  }

  .tabgui-right-actions .nav-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  /* Step 5 browser bar optimization on mobile */
  .browser-dots {
    display: none !important;
  }

  .browser-frame-bar {
    padding: 8px 10px;
    gap: 8px;
  }

  .browser-url-bar {
    padding: 6px 8px;
    font-size: 11px;
  }

  /* Mobile item picker modal optimizations for iPhone/Android */
  .picker-modal {
    width: 95vw;
    max-height: 90vh;
    max-height: 90dvh;
    padding: 20px 16px;
    border-radius: 18px;
  }

  .picker-items-grid {
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 8px;
    max-height: 60vh;
    max-height: 60dvh;
  }
}

.wizard-step {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.wizard-step.step-active {
  display: flex;
  animation: fadeIn 0.2s ease-out forwards;
}

.wizard-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.wizard-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.wizard-input-group {
  width: 100%;
  margin-bottom: 18px;
}

.wizard-text-input {
  width: 100%;
  background: #142118;
  border: 1.5px solid rgba(52, 211, 153, 0.35);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  color: #ffffff;
  outline: none;
  transition: all 0.2s ease;
}

.wizard-text-input:focus {
  border-color: #34d399;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.3);
}

.secondary-action-btn {
  width: 100%;
  background: #142118;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.secondary-action-btn:hover {
  background: #1d2e22;
  border-color: rgba(255, 255, 255, 0.2);
}


.avatar-confirm-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.avatar-frame {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #10b981;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
  overflow: hidden;
  margin-bottom: 12px;
  background: #080d09;
}

.avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-info h4 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.avatar-info p {
  font-size: 13px;
  color: var(--text-secondary);
}


.kicked-alert-card {
  width: 100%;
  background: #23252b;
  border-radius: 14px;
  border: 1px solid #3c3f4a;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
}

.kicked-header {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  padding: 12px 16px;
  border-bottom: 1px solid #3c3f4a;
}

.kicked-body {
  padding: 20px 16px;
  text-align: center;
}

.kicked-body p {
  font-size: 13px;
  color: #b0b5c0;
  margin-bottom: 16px;
  line-height: 1.5;
}

.kicked-leave-btn {
  background: #ffffff;
  color: #111;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.level-warn-text {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.4;
}

.warn-user-highlight {
  color: #34d399;
  font-weight: 600;
}

.highlight-green {
  color: #10b981;
  font-weight: 700;
}


.bot-preview-container {
  width: 100%;
  height: 230px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1.5px solid rgba(52, 211, 153, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 14px rgba(16, 185, 129, 0.2);
}

.bot-waiting-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.browser-frame-container {
  width: 100%;
  background: #11151c;
  border-radius: 14px;
  border: 1px solid #282f3d;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.browser-frame-bar {
  display: flex;
  align-items: center;
  background: #1a202c;
  padding: 10px 14px;
  gap: 12px;
  border-bottom: 1px solid #282f3d;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots .red { background: #ff5f56; }
.browser-dots .yellow { background: #ffbd2e; }
.browser-dots .green { background: #27c93f; }

.browser-url-bar {
  flex: 1;
  background: #0f141d;
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8c9ab8;
  font-size: 11px;
  overflow: hidden;
}

#browser-url-text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #a0aec0;
}

.browser-frame-content {
  padding: 20px 16px;
  background: #171d28;
}

.roblox-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.roblox-avatar-3d {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: #0b0e14;
  border: 2px solid #2b3648;
  margin-bottom: 10px;
}

.roblox-avatar-3d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roblox-bot-name {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.verify-badge {
  color: #0084ff;
  font-size: 14px;
}

.roblox-bot-handle {
  font-size: 12px;
  color: #8c9ab8;
  margin-bottom: 14px;
}

.roblox-actions {
  width: 100%;
  margin-bottom: 14px;
}

.roblox-join-btn {
  display: block;
  width: 100%;
  background: #0055ff;
  color: #ffffff;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 0;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.roblox-join-btn:hover {
  background: #0044cc;
}

.roblox-status-note {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}


.tabgui-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 7, 12, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tabgui-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.tabgui-card {
  width: 82vw;
  height: 85vh;
  max-width: 1280px;
  max-height: 820px;
  background: #14151e;
  border-radius: 14px;
  border: 1px solid #282f3d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85), 0 0 35px rgba(16, 185, 129, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}


.tabgui-top-tabs {
  background: #12141c;
  padding: 8px 12px 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #1a1d29;
}

.tabgui-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #191b24;
  padding: 7px 16px;
  border-radius: 10px 10px 0 0;
  font-size: 13px;
  color: #8a94a6;
  cursor: pointer;
  border: 1px solid transparent;
  border-bottom: none;
  max-width: 180px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.tabgui-tab.active {
  background: #232634;
  color: #ffffff;
  border-color: #2b2e40;
  border-bottom: none;
}

.tabgui-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2dd4bf, #06b6d4);
  border-radius: 0 0 2px 2px;
}

.tab-dot {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #a855f7 0%, #3b82f6 50%, #06b6d4 100%);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(6, 182, 212, 0.4);
}

.tab-title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  font-size: 13px;
}

.tab-close-x {
  font-size: 11px;
  color: #718096;
  padding: 2px 4px;
  border-radius: 50%;
  transition: all 0.15s ease;
}

.tab-close-x:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.tabgui-new-tab {
  color: #718096;
  font-size: 16px;
  padding: 0 8px;
  cursor: pointer;
  transition: color 0.15s ease;
}

.tabgui-new-tab:hover {
  color: #e2e8f0;
}


.tabgui-header {
  display: flex;
  align-items: center;
  background: #171924;
  padding: 8px 16px;
  gap: 12px;
  border-bottom: 1px solid #232635;
}

.tabgui-mac-dots {
  display: flex;
  gap: 6px;
  margin-right: 4px;
}

.tabgui-mac-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  cursor: default;
  pointer-events: none;
}

.tabgui-mac-dots .red { background: #ff5f56; }
.tabgui-mac-dots .yellow { background: #ffbd2e; }
.tabgui-mac-dots .green { background: #27c93f; }

.tabgui-nav-btns {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tabgui-nav-btns .nav-btn {
  background: transparent;
  border: none;
  color: #525a6e;
  font-size: 14px;
  font-weight: 500;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: default;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.tabgui-address-bar {
  flex: 1;
  background: #090a0e;
  border-radius: 9999px;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  border: 1px solid #1a1c26;
  overflow: hidden;
  cursor: pointer;
  user-select: text;
  transition: all 0.2s ease;
}

.tabgui-address-bar:hover {
  border-color: #2e3346;
  background: #0c0d13;
}

.addr-lock {
  font-size: 12px;
}

.addr-scheme {
  color: #8a95a5;
  font-weight: 400;
  display: none;
}

.tabgui-address-bar.has-scheme .addr-scheme {
  display: inline;
}

.addr-host {
  color: #f1f5f9;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 400;
}

.tabgui-right-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tabgui-right-actions .nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1b1d28;
  border: 1px solid #282c3c;
  color: #a0aec0;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.tabgui-right-actions .nav-btn:hover {
  background: #282c3d;
  color: #ffffff;
  border-color: #383e54;
}

.tabgui-right-actions .nav-btn.close-x:hover {
  background: #3b1d24;
  color: #ff6b6b;
  border-color: #5c242e;
}

.tabgui-body {
  flex: 1;
  width: 100%;
  background: #0b0e14;
  position: relative;
}

.tabgui-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   DAILY SPIN WIN MODAL
   ========================================================================== */
.win-modal {
  width: 100%;
  max-width: 380px;
  background: #0c101c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
  position: relative;
}

.win-header-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(12, 16, 28, 0.8) 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.35);
}

.win-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.win-yellow {
  color: #fbbf24;
  text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.win-pink {
  color: #f472b6;
  text-shadow: 0 2px 10px rgba(244, 114, 182, 0.3);
}

.win-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 22px;
  font-weight: 500;
}

.win-item-card {
  width: 180px;
  height: 180px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 18px;
  box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.win-item-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}

.win-item-card:hover .win-item-img {
  transform: scale(1.06);
}

.win-item-name {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.win-value-pill {
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: #38bdf8;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 9999px;
  margin-bottom: 26px;
  letter-spacing: 0.3px;
}

.win-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.win-claim-btn {
  width: 100%;
  height: 50px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  border: none;
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.win-claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(6, 182, 212, 0.5);
  background: linear-gradient(135deg, #4f46e5 0%, #0891b2 100%);
}

.win-notnow-btn {
  width: 100%;
  height: 46px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.win-notnow-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}
