/* ===================================================
   Korefly — Social Media Growth Platform
   =================================================== */

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

:root {
  /* ----- Core Palette ----- */
  --bg-main:        #0b1120;
  --bg-card:        rgba(15, 23, 42, 0.75);
  --bg-card-hover:  rgba(15, 23, 42, 0.90);
  --border-color:   rgba(148, 163, 184, 0.12);
  --border-hover:   rgba(148, 163, 184, 0.25);

  --text-main:      #f1f5f9;
  --text-muted:     #94a3b8;
  --text-dim:       #64748b;

  /* ----- Accent (default: sky-blue) ----- */
  --accent:         #0ea5e9;
  --accent-glow:    rgba(14, 165, 233, 0.35);
  --accent-hover:   #38bdf8;
  --accent-dim:     rgba(14, 165, 233, 0.12);

  /* ----- Platform Accents ----- */
  --accent-ig:      linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --accent-ig-clr:  #e6683c;
  --accent-ig-glow: rgba(230, 104, 60, 0.35);

  --accent-tt:      #20d5ec;
  --accent-tt-glow: rgba(32, 213, 236, 0.35);

  --accent-sc:      #facc15;
  --accent-sc-glow: rgba(250, 204, 21, 0.35);

  /* ----- Blob colors (default) ----- */
  --blob1: radial-gradient(circle, rgba(14,165,233,0.22) 0%, transparent 65%);
  --blob2: radial-gradient(circle, rgba(139,92,246,0.20) 0%, transparent 65%);
}

/* ===== Platform Theme Overrides ===== */
body.theme-instagram {
  --accent:        #e6683c;
  --accent-glow:   rgba(230, 104, 60, 0.35);
  --accent-hover:  #f09433;
  --accent-dim:    rgba(230, 104, 60, 0.12);
  --blob1: radial-gradient(circle, rgba(230,104,60,0.22) 0%, transparent 65%);
  --blob2: radial-gradient(circle, rgba(188,24,136,0.20) 0%, transparent 65%);
}
body.theme-tiktok {
  --accent:        #20d5ec;
  --accent-glow:   rgba(32, 213, 236, 0.35);
  --accent-hover:  #67e8f9;
  --accent-dim:    rgba(32, 213, 236, 0.12);
  --blob1: radial-gradient(circle, rgba(32,213,236,0.22) 0%, transparent 65%);
  --blob2: radial-gradient(circle, rgba(0,0,0,0.20) 0%, transparent 65%);
}
body.theme-snapchat {
  --accent:        #facc15;
  --accent-glow:   rgba(250, 204, 21, 0.35);
  --accent-hover:  #fde047;
  --accent-dim:    rgba(250, 204, 21, 0.12);
  --blob1: radial-gradient(circle, rgba(250,204,21,0.20) 0%, transparent 65%);
  --blob2: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 65%);
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Base ===== */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
  position: relative;
  transition: background 0.5s ease;
  user-select: none;
  -webkit-user-select: none;
}
img {
  pointer-events: none;
  -webkit-user-drag: none;
}

/* ===== Background Blobs ===== */
body::before {
  content: '';
  position: fixed;
  top: -20vh;
  left: -20vw;
  width: 70vw;
  height: 70vw;
  background: var(--blob1);
  z-index: 0;
  filter: blur(90px);
  transition: background 0.6s ease;
  animation: blobFloat 12s ease-in-out infinite alternate;
}
body::after {
  content: '';
  position: fixed;
  bottom: -20vh;
  right: -20vw;
  width: 65vw;
  height: 65vw;
  background: var(--blob2);
  z-index: 0;
  filter: blur(90px);
  transition: background 0.6s ease;
  animation: blobFloat 14s ease-in-out infinite alternate-reverse;
}

@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4%, 4%) scale(1.06); }
}

/* ===== App Container ===== */
.app-container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
  padding: 2rem 0;
}

/* ===== Screens ===== */
.screen {
  position: absolute;
  inset: 0;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Changed from center to allow top-aligned scrolling */
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto; /* Ensure vertical scroll is allowed */
  min-height: 100%;
}
.screen.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.screen.exit {
  transform: translateX(-24px);
  opacity: 0;
}

/* ===== Width Constraint ===== */
.header,
.platforms,
.input-group,
.action-btn,
.quantity-grid,
.loading-container,
.verification-box {
  width: 100%;
  max-width: 440px;
}

@media (max-width: 480px) {
  .header, .platforms, .input-group, .action-btn, .quantity-grid, .loading-container, .verification-box {
    max-width: 100%;
  }
}

/* ===== Header ===== */
.header {
  text-align: center;
  margin-bottom: 2rem;
}

.guide-btn {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.8rem 1.5rem;
  background: #22c55e;
  border: none;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  transition: all 0.2s ease;
}
.guide-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
  color: white;
}

/* Top badge */
.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.4s, border-color 0.4s, color 0.4s;
}

.header h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== Platform Buttons ===== */
.platforms {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.platform-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.1rem 1.25rem;
  border-radius: 18px;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.platform-btn .btn-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.platform-btn .btn-subtitle {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.25s;
}

/* Shimmer */
.platform-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}
.platform-btn:hover::before { transform: translateX(100%); }

.platform-btn:hover {
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}

.platform-btn[data-platform="instagram"]:hover {
  border-color: var(--accent-ig-clr);
  box-shadow: 0 8px 30px -8px var(--accent-ig-glow), inset 0 0 0 1px rgba(230,104,60,0.15);
}
.platform-btn[data-platform="tiktok"]:hover {
  border-color: var(--accent-tt);
  box-shadow: 0 8px 30px -8px var(--accent-tt-glow), inset 0 0 0 1px rgba(32,213,236,0.15);
}
.platform-btn[data-platform="snapchat"]:hover {
  border-color: var(--accent-sc);
  box-shadow: 0 8px 30px -8px var(--accent-sc-glow), inset 0 0 0 1px rgba(250,204,21,0.15);
}

/* Arrow icon inside platform button */
.platform-btn .btn-arrow {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

/* ===== Social Icons ===== */
.icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.instagram-icon {
  /* Generic Camera Icon */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23e6683c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"></path><circle cx="12" cy="13" r="4"></circle></svg>');
}
.tiktok-icon {
  /* Generic Music Note Icon */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2320d5ec" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 18V5l12-2v13"></path><circle cx="6" cy="18" r="3"></circle><circle cx="18" cy="16" r="3"></circle></svg>');
}
.snapchat-icon {
  /* Generic Social/Message Icon */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23facc15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 1 1-7.6-11.7 8.5 8.5 0 0 1 8.5 7.9M12 2v2M20 12h2M12 20v2M4 12H2m3.3-6.7L4 4m16 0-1.3 1.3M4.7 19.3 6 18m12 0 1.3 1.3"></path></svg>');
}

/* ===== Input Fields ===== */
.input-group {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.input-group input {
  width: 100%;
  background: #f1f5f9; /* Light gray/white */
  border: 1px solid var(--border-color);
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  color: #0b1120; /* Dark text for contrast */
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.input-group input::placeholder { color: #64748b; }
.input-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow), 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

/* ===== Action Button ===== */
.action-btn {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s, opacity 0.25s;
  margin-top: auto;
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}
.action-btn:hover:not(:disabled) {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px var(--accent-glow);
}
.action-btn:active:not(:disabled) {
  transform: translateY(0);
}
.action-btn:disabled {
  background: rgba(148, 163, 184, 0.1);
  color: var(--text-dim);
  cursor: not-allowed;
  box-shadow: none;
}

/* ===== Quantity Grid ===== */
.quantity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.qty-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.4rem 1rem;
  border-radius: 18px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  cursor: pointer;
  color: var(--text-main);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.qty-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.qty-card.selected {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 24px -6px var(--accent-glow);
}

/* ===== Back Button ===== */
.back-btn {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 10;
}
.back-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  color: var(--text-main);
}

/* ===== Platform Indicator ===== */
.platform-indicator {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== Loading Screen ===== */
.loading-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  gap: 0;
}

.platform-logo-large {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 24px;
  background-size: 44px;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px var(--accent-glow);
  animation: logoPulse 2.4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow); transform: scale(1); }
  50%       { box-shadow: 0 0 40px var(--accent-glow); transform: scale(1.04); }
}

.loading-container h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.loading-status {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  height: 1.5rem;
  transition: opacity 0.3s;
}

.progress-container {
  width: 100%;
  max-width: 440px;
  height: 8px;
  background: rgba(148, 163, 184, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px var(--accent-glow);
}
.progress-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: shimmer 1.2s infinite;
}

.progress-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ===== Verification Screen ===== */
.verification-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding-top: 1rem;
}

.pulse-icon {
  width: 64px;
  height: 64px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #ef4444;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.pulse-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(239, 68, 68, 0.15);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

.verification-box h1 {
  color: #ef4444;
  margin-bottom: 0.75rem;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.verification-box p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.9rem;
}

.highlight {
  color: var(--text-main) !important;
  font-weight: 600;
  background: var(--accent-dim) !important;
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem !important;
  font-size: 0.9rem;
  width: 100%;
  max-width: 440px;
  transition: background 0.4s, border-color 0.4s;
}

/* ===== Offers List ===== */
.offers-list {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  overflow-y: auto;
  padding-bottom: 2rem;
}

.offers-list::-webkit-scrollbar { width: 4px; }
.offers-list::-webkit-scrollbar-track { background: transparent; }
.offers-list::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.2);
  border-radius: 999px;
}

/* Offer Item */
.offer-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #1e293b; /* Lighter navy for better contrast */
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1rem;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: left;
}
.offer-item:hover {
  background: #334155;
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3), 0 0 15px var(--accent-glow);
  transform: translateY(-2px);
}
.offer-icon-wrapper {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.1);
}
.offer-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-details {
  flex-grow: 1;
}
.offer-title {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.offer-desc {
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  align-self: flex-start;
  transition: background 0.2s, border-color 0.2s;
}
.offer-item:hover .offer-action {
  background: rgba(14, 165, 233, 0.18);
}

.offers-loading {
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  animation: fadeBreath 1.8s ease-in-out infinite;
}

/* ===== Animations ===== */
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

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

@keyframes fadeBreath {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ===== Theme-specific progress text colors ===== */
.theme-instagram .progress-text   { color: var(--accent-ig-clr); }
.theme-instagram .progress-bar    { background: linear-gradient(90deg, #f09433, #dc2743); }
.theme-tiktok    .progress-text   { color: var(--accent-tt); }
.theme-tiktok    .progress-bar    { background: var(--accent-tt); }
.theme-snapchat  .progress-text   { color: var(--accent-sc); }
.theme-snapchat  .progress-bar    { background: var(--accent-sc); }

/* ===== Offer Modal Styles ===== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: #1e293b; /* Lighter navy for better contrast */
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  width: 90%;
  max-width: 450px;
  padding: 1.8rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255,255,255,0.05);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.active .modal-content {
  transform: scale(1);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.modal-brand-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  border: 2px solid var(--accent);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.modal-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-close {
  background: rgba(255,255,255,0.05);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-body {
  margin-bottom: 1.8rem;
}
.modal-body h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
}
.modal-body p {
  color: #cbd5e1; /* Even lighter gray for readability */
  font-size: 1rem;
  line-height: 1.6;
}
.modal-footer {
  display: flex;
  justify-content: center;
}
.logo-icon {
  display: inline-block;
  vertical-align: middle;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.5rem;
  fill: currentColor;
  margin-top: -3px;
}
.modal-get-btn {
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 0.8rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--accent-glow-strong);
  transition: transform 0.2s;
}
.modal-get-btn:hover {
  transform: translateY(-2px);
}

/* ===== Live Activity Ticker ===== */
.live-ticker {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--accent);
  box-shadow: 0 4px 15px var(--accent-glow);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  z-index: 9999;
  transform: translateY(150px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
  pointer-events: none;
}
.live-ticker.show {
  transform: translateY(0);
  opacity: 1;
}
.ticker-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulseTicker 1.5s infinite;
}
@keyframes pulseTicker {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.ticker-name {
  color: var(--accent);
  font-weight: 800;
}
