:root {
  --bg-main: #090a0f;
  --bg-card: rgba(18, 20, 31, 0.78);
  --bg-card-hover: rgba(25, 28, 44, 0.85);
  --bg-input: rgba(11, 13, 20, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(229, 9, 20, 0.55);
  --primary: #e50914;
  --primary-hover: #f40612;
  --primary-glow: rgba(229, 9, 20, 0.35);
  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.25);
  --warning: #f59e0b;
  --danger: #ef4444;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* Dynamic Glowing Background Mesh */
.background-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mesh-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  animation: pulseMesh 10s ease-in-out infinite alternate;
}

.mesh-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.35), transparent 70%);
  top: -150px;
  left: 20%;
}

.mesh-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(168, 17, 26, 0.25), transparent 70%);
  bottom: 5%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes pulseMesh {
  0% { transform: scale(1) translate(0, 0); opacity: 0.35; }
  100% { transform: scale(1.18) translate(30px, 20px); opacity: 0.55; }
}

/* App Container */
.app-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

/* Header */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-badge {
  background: linear-gradient(135deg, #e50914, #990000);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 16px var(--primary-glow);
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.brand-accent {
  color: var(--primary);
  margin-right: 4px;
}

.brand-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 12px;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--danger);
}

.status-indicator.online {
  background-color: var(--success);
  box-shadow: 0 0 8px var(--success-glow);
}

/* URL Param Banner */
.url-param-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, rgba(229, 9, 20, 0.2), rgba(229, 9, 20, 0.05));
  border: 1px solid rgba(229, 9, 20, 0.35);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 24px;
  animation: slideDown 0.35s ease;
}

.url-param-banner.hidden {
  display: none;
}

.banner-icon {
  font-size: 20px;
}

.banner-content {
  flex: 1;
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.banner-content strong {
  color: #fff;
}

.banner-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
}

.banner-close:hover {
  color: #fff;
}

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

/* Nav Tabs */
.nav-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: rgba(14, 16, 24, 0.6);
  padding: 6px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.25), rgba(229, 9, 20, 0.08));
  color: #fff;
  border: 1px solid rgba(229, 9, 20, 0.4);
  box-shadow: 0 4px 16px rgba(229, 9, 20, 0.15);
}

.tab-icon {
  font-size: 16px;
}

/* Card General */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}

.format-pill {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-actions {
  display: flex;
  gap: 8px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Textarea Input */
.textarea-wrapper {
  position: relative;
  margin-bottom: 12px;
}

.cookie-textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #e2e8f0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12.5px;
  padding: 14px;
  resize: vertical;
  min-height: 110px;
  line-height: 1.45;
  transition: var(--transition);
}

.cookie-textarea:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15);
}

.input-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 8px;
}

.detection-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.detection-badge {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
}

.detection-badge.valid {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.input-options {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.auto-redirect-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  font-size: 12px;
  color: var(--text-main);
  background: rgba(229, 9, 20, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(229, 9, 20, 0.3);
  transition: var(--transition);
}

.auto-redirect-toggle:hover {
  background: rgba(229, 9, 20, 0.2);
  border-color: rgba(229, 9, 20, 0.5);
}

.auto-redirect-toggle input[type="checkbox"] {
  accent-color: var(--primary);
  width: 14px;
  height: 14px;
  cursor: pointer;
}

/* Redirect Countdown Bar */
.redirect-countdown-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.28), rgba(229, 9, 20, 0.12));
  border: 1px solid rgba(229, 9, 20, 0.55);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 24px;
  box-shadow: 0 0 24px rgba(229, 9, 20, 0.25);
  animation: slideDown 0.3s ease;
  flex-wrap: wrap;
  gap: 12px;
}

.redirect-countdown-bar.hidden {
  display: none;
}

.redirect-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.redirect-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.redirect-text-wrap {
  display: flex;
  flex-direction: column;
}

.redirect-text-wrap strong {
  font-size: 14px;
  color: #fff;
}

.redirect-text-wrap span {
  font-size: 12px;
  color: var(--text-muted);
}

.redirect-actions {
  display: flex;
  gap: 8px;
}

.btn-redirect-now {
  background: var(--primary);
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-redirect-now:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 12px var(--primary-glow);
}

.btn-redirect-cancel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-redirect-cancel:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-text-action {
  background: transparent;
  border: none;
  color: #38bdf8;
  font-size: 12px;
  cursor: pointer;
  padding: 2px 4px;
  text-decoration: underline;
  transition: var(--transition);
}

.btn-text-action:hover {
  color: #7dd3fc;
}

/* Action Button */
.action-bar {
  margin-bottom: 24px;
}

.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #e50914, #b20710);
  color: #ffffff;
  border: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 8px 24px var(--primary-glow);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover), #c90812);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(229, 9, 20, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.spinner.hidden {
  display: none;
}

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

/* Tab Panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* Result Cards */
.result-card.hidden {
  display: none;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 10px;
}

.result-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 999px;
}

.result-badge.success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}

.expiry-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* 1-Click Launch Grid */
.launch-section {
  margin-bottom: 24px;
}

.section-title {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.launch-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.launch-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(229, 9, 20, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.launch-icon {
  font-size: 26px;
}

.launch-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.launch-details strong {
  font-family: var(--font-heading);
  font-size: 14px;
}

.launch-details span {
  font-size: 11px;
  color: var(--text-muted);
}

.launch-arrow {
  color: var(--text-dim);
  font-size: 16px;
  transition: var(--transition);
}

.launch-card:hover .launch-arrow {
  color: var(--primary);
  transform: translateX(4px);
}

/* Token Detail Box */
.token-detail-box {
  background: rgba(10, 11, 18, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 24px;
}

.token-label-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.btn-copy-sm {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-copy-sm:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
}

.token-code-view {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  color: #38bdf8;
  word-break: break-all;
  user-select: all;
  line-height: 1.5;
}

/* QR Code Section */
.qr-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  gap: 20px;
}

.qr-info h4 {
  font-size: 14px;
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.qr-info p {
  font-size: 12px;
  color: var(--text-muted);
}

.qr-box {
  width: 110px;
  height: 110px;
  background: #ffffff;
  border-radius: 8px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-img.hidden {
  display: none;
}

.qr-placeholder {
  font-size: 11px;
  color: #333;
  text-align: center;
}

/* Account Checker Details */
.account-overview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.account-status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.account-status-badge.expired {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
  border-color: rgba(239, 68, 68, 0.3);
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.account-plan-badge {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.25), rgba(229, 9, 20, 0.1));
  border: 1px solid rgba(229, 9, 20, 0.35);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 8px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.info-tile {
  background: rgba(10, 11, 18, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-tile.full-width {
  grid-column: span 2;
}

.tile-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tile-value {
  font-size: 14px;
  color: #f1f5f9;
  word-break: break-word;
}

.profiles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.profile-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
}

/* TV Tab */
.tv-card {
  text-align: center;
  padding: 32px 24px;
}

.tv-instructions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.tv-icon-big {
  font-size: 48px;
  animation: floatIcon 3s ease-in-out infinite alternate;
}

@keyframes floatIcon {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

.tv-code-input-group {
  max-width: 400px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.input-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.tv-code-field {
  width: 100%;
  background: var(--bg-input);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 8px;
  text-align: center;
  padding: 12px;
  transition: var(--transition);
}

.tv-code-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.input-hint {
  font-size: 11px;
  color: var(--text-dim);
}

.tv-result {
  max-width: 420px;
  margin: 20px auto 0;
  padding: 20px;
  border-radius: var(--radius-md);
}

.tv-result-icon {
  font-size: 36px;
  margin-bottom: 8px;
}

/* Cookie Cleaner Tab */
.cleaner-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.cleaner-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.cleaner-tab-btn.active {
  background: rgba(229, 9, 20, 0.2);
  color: #fff;
  border-color: rgba(229, 9, 20, 0.4);
}

.cleaner-output-box {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
}

.output-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.output-btn-group {
  display: flex;
  gap: 8px;
}

.cleaned-textarea {
  width: 100%;
  background: transparent;
  border: none;
  color: #38bdf8;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  line-height: 1.45;
  resize: vertical;
}

.cleaned-textarea:focus {
  outline: none;
}

/* Footer */
.app-footer {
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: rgba(20, 22, 34, 0.95);
  backdrop-filter: blur(16px);
  color: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s ease;
  min-width: 260px;
}

.toast.success {
  border-left: 4px solid var(--success);
}

.toast.error {
  border-left: 4px solid var(--danger);
}

.toast.info {
  border-left: 4px solid #38bdf8;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .launch-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-tile.full-width {
    grid-column: span 1;
  }

  .qr-section {
    flex-direction: column;
    text-align: center;
  }
}
