@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 {
  /* Steal An Egg Vibrant Game Theme */
  --bg-main: #090c15;
  --bg-card: #111625;
  --bg-card-hover: #192238;
  --bg-glass: rgba(17, 22, 37, 0.75);
  
  --primary-egg: #10b981;
  --primary-egg-glow: rgba(16, 185, 129, 0.45);
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.45);
  --accent-gold: #fbbf24;
  --accent-gold-glow: rgba(251, 191, 36, 0.45);
  --accent-purple: #a855f7;
  --accent-purple-glow: rgba(168, 85, 247, 0.45);
  --accent-pink: #ec4899;
  --accent-pink-glow: rgba(236, 72, 153, 0.45);
  
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  
  /* Egg Rarity Palette */
  --rarity-godly: #ef4444;
  --rarity-ancient: #a855f7;
  --rarity-unique: #f97316;
  --rarity-legendary: #fbbf24;
  --rarity-vintage: #10b981;
  --rarity-eternal: #06b6d4;
  --rarity-divine: #ffd700;
  --rarity-secret: #ec4899;
  --rarity-cosmic: #8b5cf6;
  
  --font-main: 'Rubik', sans-serif;
  --font-heading: 'Fredoka', cursive, sans-serif;
}

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

body {
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 20% 15%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 60%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(251, 191, 36, 0.12) 0%, transparent 45%);
  background-attachment: fixed;
  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: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

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

/* Background floating particles */
.weapon-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

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

.lang-button {
  background: rgba(17, 22, 37, 0.85);
  border: 1.5px solid rgba(6, 182, 212, 0.3);
  padding: 0.5rem 1.1rem;
  border-radius: 99px;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(6, 182, 212, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-button:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 18px var(--accent-cyan-glow);
  transform: translateY(-2px);
}

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

.lang-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.lang-select {
  display: none;
}

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

.hero-logo {
  max-width: 130px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 10px 20px rgba(16, 185, 129, 0.4)) drop-shadow(0 0 35px rgba(6, 182, 212, 0.3));
  animation: eggFloat 3.5s ease-in-out infinite alternate;
}

@keyframes eggFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, #fef08a 0%, #fbbf24 35%, #10b981 75%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(17, 22, 37, 0.85);
  padding: 0.55rem 1.25rem;
  border-radius: 99px;
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  backdrop-filter: blur(8px);
  font-size: 0.95rem;
  font-family: var(--font-heading);
  color: #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(16, 185, 129, 0.2);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 12px #10b981, 0 0 20px #10b981;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* Shop Panel */
.shop-panel {
  background: rgba(17, 22, 37, 0.85);
  border-radius: 24px;
  border: 1.5px solid rgba(6, 182, 212, 0.25);
  padding: 1.75rem;
  backdrop-filter: blur(16px);
  margin-bottom: 3.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(6, 182, 212, 0.15), 0 0 20px rgba(16, 185, 129, 0.1);
  position: relative;
  overflow: hidden;
}

.shop-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #06b6d4, #a855f7, #fbbf24, #10b981);
  background-size: 200% 100%;
  animation: rainbowBar 4s linear infinite;
}

@keyframes rainbowBar {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

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

.store-title-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #ffffff 0%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.store-title-text::before {
  content: '🥚';
  font-size: 1.6rem;
  -webkit-text-fill-color: initial;
}

/* Shop Items Grid */
.shop-items-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.35rem;
}

.shop-item {
  background: linear-gradient(180deg, rgba(26, 33, 56, 0.9) 0%, rgba(15, 20, 35, 0.95) 100%);
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.shop-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(6, 182, 212, 0.6);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(6, 182, 212, 0.3);
}

.shop-item.fire-effect {
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(251, 191, 36, 0.15);
}

.shop-item.fire-effect:hover {
  border-color: #fbbf24;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(251, 191, 36, 0.4);
}

.shop-item-img-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.15) 0%, rgba(16, 185, 129, 0.05) 50%, transparent 80%);
  padding: 1.25rem;
  position: relative;
}

.shop-item-img-box img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.6));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.shop-item-info {
  padding: 0.85rem 1.1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex-grow: 1;
  text-align: center;
}

.shop-item-name {
  color: #ffffff;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.3px;
  line-height: 1.25;
}

.shop-item-stock {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
}

.shop-item-rarity {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  align-self: center;
  margin-top: auto;
  margin-bottom: 0.5rem;
}

/* Rarity Styles */
.rarity-godly { background: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1.5px solid #ef4444; box-shadow: 0 0 12px rgba(239, 68, 68, 0.3); }
.rarity-ancient { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1.5px solid #a855f7; box-shadow: 0 0 12px rgba(168, 85, 247, 0.3); }
.rarity-unique { background: rgba(249, 115, 22, 0.15); color: #fb923c; border: 1.5px solid #f97316; box-shadow: 0 0 12px rgba(249, 115, 22, 0.3); }
.rarity-legendary { background: rgba(251, 191, 36, 0.15); color: #fbbf24; border: 1.5px solid #fbbf24; box-shadow: 0 0 12px rgba(251, 191, 36, 0.3); }
.rarity-vintage { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1.5px solid #10b981; box-shadow: 0 0 12px rgba(16, 185, 129, 0.3); }
.rarity-eternal { background: rgba(6, 182, 212, 0.15); color: #22d3ee; border: 1.5px solid #06b6d4; box-shadow: 0 0 14px rgba(6, 182, 212, 0.4); }
.rarity-divine { background: rgba(255, 215, 0, 0.15); color: #ffd700; border: 1.5px solid #ffd700; box-shadow: 0 0 14px rgba(255, 215, 0, 0.4); }
.rarity-secret { background: rgba(236, 72, 153, 0.18); color: #f472b6; border: 1.5px solid #ec4899; box-shadow: 0 0 15px rgba(236, 72, 153, 0.45); }
.rarity-cosmic { background: rgba(139, 92, 246, 0.18); color: #a78bfa; border: 1.5px solid #8b5cf6; box-shadow: 0 0 15px rgba(139, 92, 246, 0.45); }

/* Tactile 3D Roblox Claim Button */
.roblox-claim-btn {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 14px;
  margin: 0 0.85rem 0.85rem 0.85rem;
  box-shadow: 0 5px 0 #047857, 0 10px 20px rgba(16, 185, 129, 0.35);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.roblox-claim-btn:hover {
  background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
  box-shadow: 0 5px 0 #047857, 0 12px 25px rgba(16, 185, 129, 0.55);
}

.roblox-claim-btn:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #047857, 0 5px 12px rgba(16, 185, 129, 0.4);
}

/* 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;
  padding: 1rem;
  box-sizing: border-box;
}

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

.gen-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 7, 15, 0.88);
  backdrop-filter: blur(12px);
}

.gen-box {
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.15) 0%, rgba(17, 22, 37, 0.98) 60%), #0d1220;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 24px;
  border: 1.5px solid rgba(6, 182, 212, 0.4);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 40px rgba(6, 182, 212, 0.25), 0 0 20px rgba(16, 185, 129, 0.2);
  overflow: hidden;
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.gen-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}

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

.gen-logo-img {
  height: 36px;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.4));
}

.gen-label {
  font-family: var(--font-heading);
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #ffffff 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

/* Gen Screen 1 */
.gen-item-preview {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(26, 33, 56, 0.6);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  margin-bottom: 1.4rem;
  border: 1.5px solid rgba(6, 182, 212, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

.gen-item-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid #10b981;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  width: max-content;
  letter-spacing: 0.5px;
}

.gen-desc {
  color: #94a3b8;
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
  text-align: center;
  line-height: 1.4;
}

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

.gen-input-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #22d3ee;
  font-size: 1.1rem;
}

.gen-input {
  width: 100%;
  background: rgba(8, 12, 22, 0.75);
  border: 1.5px solid rgba(6, 182, 212, 0.35);
  padding: 0.95rem 1rem 0.95rem 2.8rem;
  border-radius: 14px;
  color: white;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.4);
}

.gen-input:focus {
  outline: none;
  border-color: #22d3ee;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4), inset 0 2px 5px rgba(0,0,0,0.4);
}

.gen-error-msg {
  color: #f87171;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  text-align: center;
  display: none;
  font-weight: 500;
}

.gen-btn-primary {
  width: 100%;
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 0 #047857, 0 10px 25px rgba(16, 185, 129, 0.4);
}

.gen-btn-primary:hover {
  background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
  box-shadow: 0 5px 0 #047857, 0 12px 30px rgba(16, 185, 129, 0.6);
}

.gen-btn-primary:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #047857, 0 5px 15px rgba(16, 185, 129, 0.4);
}

.gen-security-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 500;
}

.gen-security-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 2s infinite;
}

/* Gen Screen 2 */
#gen-screen-2 .gen-progress-header {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center;
  margin-bottom: 1.4rem;
  width: 100%;
}

.avatar-scanner-container {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid rgba(6, 182, 212, 0.5);
  position: relative;
  overflow: hidden;
  background: rgba(8, 12, 22, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.25);
  transition: all 0.5s;
  flex-shrink: 0;
}

.avatar-scanner-container.scanning {
  border-color: #22d3ee;
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.55), 0 0 15px rgba(16, 185, 129, 0.4);
}

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

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

.scanner-laser {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #22d3ee, #10b981, transparent);
  box-shadow: 0 0 12px #22d3ee, 0 0 25px rgba(6, 182, 212, 0.7);
  animation: scan 2s linear infinite;
  display: none;
}

@keyframes scan {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

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

#scanner-username {
  display: block !important;
  width: 100%;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 0.5px;
  text-align: center;
}

#gen-progress-label {
  display: block !important;
  width: 100%;
  color: #22d3ee !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.3px;
  text-align: center;
}

.gen-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(12, 16, 28, 0.7);
  border-radius: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.gen-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  opacity: 0.4;
  transition: opacity 0.3s, background 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gen-step:last-child {
  border-bottom: none;
}

.gen-step.active {
  opacity: 1;
  background: rgba(6, 182, 212, 0.12);
}

.gen-step.done {
  opacity: 0.85;
  background: transparent;
}

.gen-step-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
  color: white;
  transition: background 0.3s, box-shadow 0.3s;
}

.gen-step.active .gen-step-icon {
  background: #06b6d4;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
}

.gen-step.done .gen-step-icon {
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.gen-step-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gen-step-title {
  color: white;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.gen-step-sub {
  color: #94a3b8;
  font-size: 0.8rem;
}

.gen-progress-bar-wrap {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  margin-top: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gen-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #10b981, #06b6d4, #a855f7);
  background-size: 200% 100%;
  border-radius: 99px;
  transition: width 0.4s ease;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
  animation: barShimmer 2s linear infinite;
}

/* Gen Screen 3 */
.gen-transfer-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  background: rgba(12, 16, 28, 0.7);
  padding: 1.4rem;
  border-radius: 18px;
  border: 1.5px solid rgba(6, 182, 212, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

.transfer-avatar-wrap, .transfer-item-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid rgba(6, 182, 212, 0.4);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

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

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

.transfer-status-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2.5px solid #0d1220;
}

.transfer-status-indicator.online { background: #10b981; box-shadow: 0 0 8px #10b981; }
.transfer-status-indicator.pending { background: #fbbf24; box-shadow: 0 0 8px #fbbf24; }

.transfer-username, .transfer-item-name {
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.transfer-badge {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.4px;
}

.online-badge { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid #10b981; }
.pending-badge { background: rgba(251, 191, 36, 0.2); color: #fbbf24; border: 1px solid #fbbf24; }

.transfer-path {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
}

.transfer-line {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 99px;
}

.transfer-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #22d3ee, #10b981, transparent);
  animation: transferPulse 1.6s ease-in-out infinite;
}

@keyframes transferPulse {
  0% { left: -35%; }
  100% { left: 100%; }
}

/* Offers Container */
.offer-container {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.offer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(26, 33, 56, 0.9) 0%, rgba(15, 20, 35, 0.95) 100%);
  border: 1.5px solid rgba(6, 182, 212, 0.3);
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.offer-card:hover {
  transform: translateY(-3px);
  border-color: #22d3ee;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(6, 182, 212, 0.35);
  background: linear-gradient(135deg, rgba(33, 43, 72, 0.95) 0%, rgba(20, 26, 45, 0.98) 100%);
}

.offer-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  overflow: hidden;
  padding-right: 0.75rem;
}

.offer-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(6, 182, 212, 0.4);
  background: #090c15;
  flex-shrink: 0;
}

.offer-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  overflow: hidden;
}

.offer-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-desc {
  color: #94a3b8;
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-action {
  background: linear-gradient(180deg, #06b6d4 0%, #0891b2 100%);
  color: white;
  padding: 0.55rem 1.1rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 0 #0e7490, 0 6px 15px rgba(6, 182, 212, 0.35);
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.offer-card:hover .offer-action {
  background: linear-gradient(180deg, #22d3ee 0%, #06b6d4 100%);
  box-shadow: 0 4px 0 #0e7490, 0 8px 20px rgba(6, 182, 212, 0.55);
}

.offer-card:active .offer-action {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #0e7490;
}

.offers-loading {
  text-align: center;
  padding: 1.5rem;
  color: #22d3ee;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(6, 182, 212, 0.2);
  border-top-color: #22d3ee;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 0.75rem auto;
}

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

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fbbf24;
  margin-right: 6px;
}

.status-dot.pulsing {
  box-shadow: 0 0 8px #fbbf24;
  animation: pulse 1.5s infinite;
}

.gen-expire-note {
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 500;
}

.success-message-box {
  background: rgba(16, 185, 129, 0.15);
  border: 1.5px solid #10b981;
  color: #34d399;
  padding: 1rem;
  border-radius: 14px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

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

.footer-keywords {
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .shop-items-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .shop-item-name {
    font-size: 1.05rem;
  }
  .roblox-claim-btn {
    font-size: 0.95rem;
    padding: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  .shop-items-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .shop-panel {
    padding: 1rem;
    border-radius: 18px;
  }
  .shop-item-info {
    padding: 0.5rem;
  }
  .shop-item-name {
    font-size: 0.95rem;
  }
  .roblox-claim-btn {
    font-size: 0.85rem;
    padding: 0.6rem 0.5rem;
    margin: 0 0.5rem 0.5rem 0.5rem;
  }
  .gen-box {
    border-radius: 18px;
  }
}
