/* Masjids.Live Dashboard — Settings Page
   Loaded AFTER landing.css + subpages.css.
   Only dashboard-specific styles live here.
   Design language: Matches pair.html — dark hero, light content, dark footer */

/* ============================================================
   DASHBOARD VARIABLES (supplement landing.css :root)
   ============================================================ */
:root {
  --color-fajr: #3b82f6;
  --color-dhuhr: #f59e0b;
  --color-asr: #f97316;
  --color-maghrib: #ec4899;
  --color-isha: #6366f1;
  --color-jummah: #22c55e;
}

/* ============================================================
   DASHBOARD AUTH (hero sign-in buttons)
   ============================================================ */
.dash-auth {
  margin-top: 24px;
  text-align: center;
}
.dash-auth__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.dash-auth__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Nav user indicator */
.nav__user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.nav__user-avatar--amazon { background: #232f3e; color: #ff9900; }
.nav__user-avatar--google { background: #4285F4; color: white; }
.nav__user-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.nav__signout {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.nav__signout:hover {
  border-color: #e63946;
  color: #e63946;
}
.nav__mobile-link--signout {
  color: #e63946 !important;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 8px;
  padding-top: 16px;
}

.btn--amazon {
  background: #232f3e;
  color: #ff9900;
  border: none;
}
.btn--amazon:hover {
  background: #37475a;
}

.btn--google {
  background: white;
  color: #333;
  border: 1px solid var(--c-border);
}
.btn--google:hover {
  background: #f8f8f8;
}

/* ============================================================
   DASHBOARD MAIN (light content area — matches pair.html)
   ============================================================ */
.dash-main {
  padding: 40px 0 80px;
  min-height: 50vh;
  position: relative;
  background: var(--c-bg);
}

.dash-main .container {
  max-width: 760px;
  position: relative;
}

/* ============================================================
   CARDS (white on cream — matches pair.html card style)
   ============================================================ */
.card {
  background: var(--c-card);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  padding: 0;
  margin-bottom: 16px;
  overflow: hidden;
  animation: cardReveal 0.5s ease both;
}
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.card:nth-child(2) { animation-delay: 0.06s; }
.card:nth-child(3) { animation-delay: 0.12s; }
.card:nth-child(4) { animation-delay: 0.18s; }
.card:nth-child(5) { animation-delay: 0.24s; }
.card:nth-child(6) { animation-delay: 0.30s; }

.card--global {
  padding: 24px;
}
.card--global h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--c-text);
}

/* ============================================================
   PRAYER CARDS (white cards with color accents)
   ============================================================ */
.prayer-card {
  border-left: 3px solid var(--c-green);
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.prayer-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.prayer-card--fajr    { border-left-color: var(--color-fajr); }
.prayer-card--dhuhr   { border-left-color: var(--color-dhuhr); }
.prayer-card--asr     { border-left-color: var(--color-asr); }
.prayer-card--maghrib { border-left-color: var(--color-maghrib); }
.prayer-card--isha    { border-left-color: var(--color-isha); }
.prayer-card--jummah  { border-left-color: var(--color-jummah); }

.prayer-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.prayer-card__header:hover {
  background: rgba(0,0,0,0.015);
}

.prayer-card__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prayer-card__emoji {
  font-size: 24px;
}

.prayer-card__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text);
}

.prayer-card__time {
  font-size: 14px;
  color: var(--c-text-muted);
}

.prayer-card__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prayer-card__body {
  padding: 0 20px 20px;
  display: none;
  border-top: 1px solid var(--c-border-light);
  padding-top: 16px;
}
.prayer-card__body.open {
  display: block;
  animation: bodySlideDown 0.25s ease;
}
@keyframes bodySlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TOGGLE SWITCH
   ============================================================ */
.toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle__slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  cursor: pointer;
  transition: 0.2s;
}
.toggle__slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.2s;
}
.toggle input:checked + .toggle__slider {
  background: var(--c-green);
}
.toggle input:checked + .toggle__slider::before {
  transform: translateX(22px);
}

/* ============================================================
   SETTING ROW
   ============================================================ */
.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}
.setting-row + .setting-row {
  border-top: 1px solid var(--c-border-light);
}
.setting-row label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
  color: var(--c-text);
}
.setting-row .sub-label {
  font-size: 12px;
  color: var(--c-text-light);
  display: block;
  font-weight: 400;
}

/* ============================================================
   INPUTS & SELECTS
   ============================================================ */
.dash-main .input,
.dash-main .select {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  background: var(--c-card);
  color: var(--c-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dash-main .input:focus,
.dash-main .select:focus {
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(26,86,50,0.1);
}
.dash-main .select {
  min-width: 180px;
}

/* ============================================================
   TIMING ADJUSTER
   ============================================================ */
.timing-adjust {
  display: flex;
  align-items: center;
  gap: 6px;
}
.timing-adjust button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  background: var(--c-card);
  color: var(--c-text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.timing-adjust button:hover {
  background: var(--c-bg-warm);
  border-color: var(--c-green);
}
.timing-adjust input {
  width: 48px;
  text-align: center;
  padding: 4px;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  font-size: 14px;
  background: var(--c-card);
  color: var(--c-text);
}

/* ============================================================
   RANGE SLIDER
   ============================================================ */
.range-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}
.range-slider {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 6px;
  background: var(--c-border);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--c-green);
  border-radius: 50%;
  cursor: pointer;
}
.range-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--c-green);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.range-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  min-width: 48px;
  text-align: right;
  white-space: nowrap;
  color: var(--c-green);
}

/* ============================================================
   SEARCH BOX
   ============================================================ */
.search-box {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.search-box .input {
  flex: 1;
}

.dash-setup .card {
  padding: 32px;
}
.dash-setup h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--c-text);
}
.dash-setup p {
  color: var(--c-text-muted);
}

/* ============================================================
   MOSQUE RESULTS
   ============================================================ */
.mosque-results {
  margin-top: 16px;
}
.mosque-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--c-border-light);
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s;
  animation: cardReveal 0.3s ease both;
}
.mosque-result:hover {
  border-color: var(--c-green);
  background: var(--c-green-pale);
}
.mosque-result__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text);
}
.mosque-result__address {
  font-size: 13px;
  color: var(--c-text-muted);
}
.mosque-result__status {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
}
.mosque-result__status--online {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
}

/* ============================================================
   MOSQUE SELECTOR & SETTINGS HEADER
   ============================================================ */
.mosque-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}

.settings__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.settings__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--c-text);
}
.settings__header-right {
  display: flex;
  gap: 10px;
  align-items: center;
}
.settings__mosque-name {
  font-size: 15px;
  color: var(--c-text-muted);
  margin-top: 2px;
}

/* ============================================================
   LIVE INDICATOR
   ============================================================ */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.live-indicator::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #dc2626;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================================
   DASHBOARD BUTTON OVERRIDES
   ============================================================ */
.dash-main .btn--primary {
  background: var(--c-green);
  color: white;
  border: none;
}
.dash-main .btn--primary:hover {
  background: var(--c-green-light);
}
.dash-main .btn--outline {
  background: transparent;
  color: var(--c-green);
  border: 1px solid var(--c-green);
}
.dash-main .btn--outline:hover {
  background: var(--c-green-pale);
}

/* ============================================================
   STREAM STATUS (inline in settings header)
   ============================================================ */
.stream-status {
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
}
.stream-status::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.stream-status--online { color: #16a34a; }
.stream-status--online::before { background: #16a34a; box-shadow: 0 0 6px rgba(22,163,74,0.4); }
.stream-status--offline { color: #dc2626; }
.stream-status--offline::before { background: #dc2626; }
.stream-status--unknown, .stream-status--none { color: var(--c-text-light); }
.stream-status--unknown::before, .stream-status--none::before { background: var(--c-text-light); }

/* ============================================================
   PLAYER BAR (fixed bottom — dark themed)
   ============================================================ */
.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-navy);
  color: white;
  z-index: 1000;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

.player-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.player-bar__info {
  flex: 1;
  min-width: 0;
}

.player-bar__status {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.player-bar__status--live { color: #22c55e; }
.player-bar__status--offline { color: #f59e0b; }
.player-bar__status--scheduled { color: #60a5fa; }

.player-bar__mosque {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-bar__next {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.player-bar__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.player-bar__btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.player-bar__btn:hover {
  background: rgba(255,255,255,0.2);
}

.player-bar__btn--play,
.player-bar__btn--pause {
  width: 48px;
  height: 48px;
  background: var(--c-green);
}
.player-bar__btn--play:hover,
.player-bar__btn--pause:hover {
  background: var(--c-green-light);
}

.player-bar__volume {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
}

.player-bar__vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.player-bar__vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
}
.player-bar__vol-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.player-bar__btn--cast {
  color: rgba(255,255,255,0.7);
}
.player-bar__btn--cast.casting {
  color: #60a5fa;
  background: rgba(96,165,250,0.15);
}

body.player-active {
  padding-bottom: 80px;
}

/* ============================================================
   AUTO-AZAN CARD (dark accent card — stands out on light bg)
   ============================================================ */
.auto-azan-card {
  background: linear-gradient(135deg, var(--c-navy) 0%, #1b2d44 100%);
  color: white;
  padding: 20px 24px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(13,27,42,0.2);
}
.auto-azan-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 4px;
  color: white;
}
.auto-azan-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.auto-azan-card .setting-row {
  border-color: rgba(255,255,255,0.1);
}
.auto-azan-card .setting-row label {
  color: rgba(255,255,255,0.9);
}
.auto-azan-card .setting-row span {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   MY DEVICES — Connected device status
   ============================================================ */
.my-devices__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.my-devices__header h3 { margin-bottom: 0; }
.my-devices__browse {
  font-size: 13px;
  color: var(--c-green);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.my-devices__browse:hover { opacity: 0.8; }

.my-devices__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Device card (rendered by JS) */
.device-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--c-bg);
  border: 1px solid var(--c-border-light);
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s;
  animation: cardReveal 0.3s ease both;
}
.device-card:hover {
  border-color: var(--c-green);
  background: var(--c-green-pale);
}
.device-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.device-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  background: var(--c-green-pale);
  color: var(--c-green);
  flex-shrink: 0;
}
.device-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  font-family: 'DM Sans', sans-serif;
}
.device-card__type {
  font-size: 12px;
  color: var(--c-text-light);
}
.device-card__actions {
  flex-shrink: 0;
}

.my-devices__preview-link {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border-light);
}
.my-devices__see-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--c-green-pale);
  border: 1px solid rgba(26,86,50,0.15);
  border-radius: 12px;
  color: var(--c-green);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.my-devices__see-preview:hover {
  background: rgba(26,86,50,0.12);
  border-color: rgba(26,86,50,0.3);
}
.my-devices__see-preview svg:last-child {
  margin-left: auto;
}

.my-devices__footer {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border-light);
}
.my-devices__add-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid rgba(0,202,255,0.3);
  background: rgba(0,202,255,0.05);
  color: #0891b2;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.my-devices__add-btn:hover {
  background: rgba(0,202,255,0.1);
  border-color: rgba(0,202,255,0.5);
}
.my-devices__add-btn--google {
  border-color: rgba(13,148,136,0.3);
  background: rgba(13,148,136,0.05);
  color: #0d9488;
}
.my-devices__add-btn--google:hover {
  background: rgba(13,148,136,0.1);
  border-color: rgba(13,148,136,0.5);
}

/* ============================================================
   EMPTY STATE (when no devices / no mosque)
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 32px 16px;
  color: var(--c-text-muted);
}
.empty-state__hint {
  font-size: 13px;
  color: var(--c-text-light);
  margin-top: 4px;
}

/* ============================================================
   LOADING SKELETON
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, var(--c-border-light) 25%, var(--c-bg-warm) 50%, var(--c-border-light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton--device {
  height: 64px;
  margin-bottom: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .nav__user-name { display: none; }
}

@media (max-width: 600px) {
  .dash-main { padding: 24px 0 40px; }
  .dash-auth__buttons { flex-direction: column; align-items: center; }
  .settings__header { flex-direction: column; }
  .settings__header-right { width: 100%; justify-content: flex-end; }
  .setting-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .dash-main .select { min-width: 100%; }
  .range-wrap { min-width: 100%; }
  .dash-setup .card { padding: 20px; }

  .player-bar__inner { padding: 10px 16px; gap: 12px; }
  .player-bar__volume { display: none; }
  .player-bar__btn--play,
  .player-bar__btn--pause { width: 42px; height: 42px; }
}

/* ── Toast Notifications ── */

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 400px;
}

.toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.toast--visible {
  opacity: 1;
  transform: translateX(0);
}

.toast--success {
  background: linear-gradient(135deg, #1a5632, #22804a);
  border-left: 4px solid #4ade80;
}

.toast--error {
  background: linear-gradient(135deg, #7f1d1d, #991b1b);
  border-left: 4px solid #ef4444;
}

.toast--info {
  background: linear-gradient(135deg, #1e3a5f, #1e4d8c);
  border-left: 4px solid #60a5fa;
}

.toast__msg {
  flex: 1;
  line-height: 1.4;
}

.toast__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.toast__close:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* ── Install Skill Onboarding ────────────────────────── */
.install-skill__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.install-skill__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.install-skill__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.install-skill__btn--alexa {
  background: linear-gradient(135deg, #232f3e, #31475e);
  border: 1px solid rgba(255,255,255,0.08);
}
.install-skill__btn--google {
  background: linear-gradient(135deg, #1a3a2a, #1e5036);
  border: 1px solid rgba(255,255,255,0.08);
}

.install-skill__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
}

.install-skill__btn strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}
.install-skill__btn small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
