/* ==========================================================================
   YACINE TV - AUTHENTIC MOBILE APP THEME & RESPONSIVE DESKTOP/MOBILE UI
   100% Exact Replica of Yacine TV Android App + Fully Responsive Web Experience
   ========================================================================== */

:root {
  /* Yacine TV Color Palette */
  --ytv-red-darkest: #5b0000;
  --ytv-red-bottom: #6e0000;
  --ytv-red-border: #8e0000;
  --ytv-red-primary: #9b0000;
  --ytv-red-header: #960404;
  --ytv-red-accent: #c41212;
  --ytv-red-text: #8e0000;
  
  /* Neutral Palette */
  --ytv-white: #ffffff;
  --ytv-text-gray: #687182;
  --ytv-text-dark: #1e293b;
  --ytv-pill-bg: #edf2f7;
  --ytv-pill-text: #2d3748;
  
  /* Geometry & Shadows */
  --ytv-card-radius: 14px;
  --ytv-border-width: 2.5px;
  --ytv-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  --ytv-shadow-hover: 0 6px 18px rgba(0, 0, 0, 0.18);
  
  --font-main: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-en: 'Montserrat', sans-serif;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  
  /* Full page authentic Yacine Red Low-Poly / Faceted Background */
  background-color: #920606;
  background-image: 
    radial-gradient(circle at 50% 15%, rgba(239, 68, 68, 0.35) 0%, transparent 65%),
    linear-gradient(135deg, #ba1313 0%, #9e0b0b 35%, #800000 70%, #680000 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cpath d='M0 0 L200 100 L0 200 Z' fill='%23ffffff' fill-opacity='0.03'/%3E%3Cpath d='M200 100 L400 0 L400 200 Z' fill='%23ffffff' fill-opacity='0.02'/%3E%3Cpath d='M0 200 L200 300 L0 400 Z' fill='%23000000' fill-opacity='0.04'/%3E%3Cpath d='M200 300 L400 200 L400 400 Z' fill='%23ffffff' fill-opacity='0.02'/%3E%3Cpath d='M200 100 L200 300 L0 200 Z' fill='%23ffffff' fill-opacity='0.015'/%3E%3Cpath d='M200 100 L400 200 L200 300 Z' fill='%23000000' fill-opacity='0.03'/%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover, cover, 300px 300px;
}

/* App Wrapper */
.app-viewport {
  width: 100%;
  max-width: 1280px; /* Responsive wide container for desktop and tablets */
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   1. TOP APP BAR (HEADER)
   ========================================================================== */
.app-topbar {
  height: 60px;
  background: var(--ytv-red-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  direction: ltr; /* Keeps Menu/Back strictly on the Left, Title in the center, and Search on the Right */
}

.topbar-btn {
  background: transparent;
  border: none;
  color: var(--ytv-white);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.15s ease, background-color 0.15s ease;
  flex-shrink: 0;
}

.topbar-btn:active {
  transform: scale(0.9);
  background-color: rgba(255, 255, 255, 0.15);
}

.topbar-title {
  color: var(--ytv-white);
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  flex: 1;
  margin: 0 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
}

/* Search Dropdown / Overlay */
.search-overlay {
  max-height: 0;
  overflow: hidden;
  background: var(--ytv-red-darkest);
  transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s ease;
  padding: 0 20px;
  position: sticky;
  top: 60px;
  z-index: 99;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.search-overlay.active {
  max-height: 72px;
  padding: 12px 20px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background: var(--ytv-white);
  border-radius: 25px;
  padding: 4px 16px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.search-input-wrap .search-icon {
  color: var(--ytv-red-primary);
  font-size: 16px;
  margin-left: 8px;
}

.search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ytv-text-dark);
  padding: 8px 4px;
  background: transparent;
}

.search-clear-btn {
  background: transparent;
  border: none;
  color: var(--ytv-text-gray);
  font-size: 15px;
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================================
   2. MAIN CONTENT & VIEW SYSTEM
   ========================================================================== */
.app-content {
  flex: 1;
  padding: 20px 20px 85px 20px;
  position: relative;
  min-height: calc(100vh - 125px);
  width: 100%;
}

.view-screen {
  display: none;
  animation: fadeIn 0.2s ease forwards;
}

.view-screen.active {
  display: block;
}

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

/* Loading Box */
.loading-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  gap: 14px;
  color: var(--ytv-white);
  font-size: 16px;
  font-weight: 700;
}

.custom-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--ytv-white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.empty-state-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border: var(--ytv-border-width) solid var(--ytv-red-border);
  border-radius: var(--ytv-card-radius);
  padding: 35px 20px;
  color: var(--ytv-red-text);
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--ytv-shadow);
  max-width: 600px;
  margin: 20px auto;
}

/* ==========================================================================
   3. SCREEN 1: CATEGORIES LIST (LIVE TV MAIN VIEW)
   ========================================================================== */
.categories-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 100%;
}

/* On tablet & desktop screens, expand categories into a responsive grid! */
@media (min-width: 680px) {
  .categories-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .categories-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.category-card-btn {
  width: 100%;
  background: var(--ytv-white);
  border: var(--ytv-border-width) solid var(--ytv-red-border);
  border-radius: var(--ytv-card-radius);
  padding: 18px 24px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--ytv-shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--ytv-shadow-hover);
}

.category-card-btn:active {
  transform: scale(0.98);
  background-color: #fdf2f2;
}

.category-card-title {
  color: var(--ytv-red-text);
  font-family: var(--font-en), var(--font-main);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* ==========================================================================
   4. SCREEN 2 & 3: GRID LAYOUT (COUNTRIES & CHANNELS)
   ========================================================================== */
.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns by default matching phone screenshot */
  gap: 12px;
}

/* Responsive grid for tablets and desktops */
@media (min-width: 640px) {
  .items-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

@media (min-width: 900px) {
  .items-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1100px) {
  .items-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }
}

/* Grid Item Card (Country / Channel) */
.grid-item-card {
  background: var(--ytv-white);
  border: var(--ytv-border-width) solid var(--ytv-red-border);
  border-radius: var(--ytv-card-radius);
  padding: 14px 8px 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 132px;
  cursor: pointer;
  box-shadow: var(--ytv-shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  text-decoration: none;
}

.grid-item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ytv-shadow-hover);
}

.grid-item-card:active {
  transform: scale(0.96);
  background-color: #fdf2f2;
}

/* Item Image / Flag Wrapper */
.grid-item-img-wrap {
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  overflow: hidden;
}

/* 3D Button Square Flag */
.grid-flag-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease;
}

/* Channel Official Logo */
.grid-channel-logo {
  max-width: 85%;
  max-height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

/* Item Text Label */
.grid-item-title {
  color: var(--ytv-text-gray);
  font-family: var(--font-en), var(--font-main);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ==========================================================================
   5. SCREEN 4: LIVE MATCHES / EVENTS (LIVE EVENT)
   ========================================================================== */
.events-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .events-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

.match-event-card {
  background: var(--ytv-white);
  border: var(--ytv-border-width) solid var(--ytv-red-border);
  border-radius: var(--ytv-card-radius);
  padding: 16px 14px 14px 14px;
  box-shadow: var(--ytv-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.match-event-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--ytv-shadow-hover);
}

.match-event-card:active {
  transform: scale(0.99);
}

/* Top Section: Team 1 VS Team 2 */
.match-teams-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.match-team-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 38%;
}

.match-team-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.12));
}

.match-team-name {
  color: var(--ytv-red-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

/* Center Status Badge Pill */
.match-status-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

.match-status-pill {
  background: var(--ytv-pill-bg);
  color: var(--ytv-pill-text);
  font-size: 13px;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 6px;
}

.match-status-pill.live-now {
  background: #fee2e2;
  color: #b91c1c;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 1.4s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 1; }
}

/* Middle Section: Championship / Tournament */
.match-championship-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ytv-text-gray);
  font-size: 13px;
  font-weight: 700;
  padding: 2px 0;
}

.match-championship-row i {
  color: var(--ytv-text-gray);
  font-size: 14px;
}

/* Bottom Section: Channel & Commentator */
.match-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid #f1f5f9;
  font-size: 12.5px;
  color: var(--ytv-text-gray);
  font-weight: 700;
}

.match-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.match-meta-item i {
  font-size: 14px;
  color: var(--ytv-text-gray);
}

/* Search results header */
.search-results-header {
  color: var(--ytv-white);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   6. SCREEN 5: SIDE NAVIGATION DRAWER (MENU)
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 290px;
  max-width: 85vw;
  background: var(--ytv-red-primary);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 25px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
}

.nav-drawer.active {
  transform: translateX(0);
}

/* Drawer Logo Header */
.drawer-header {
  padding: 34px 22px 26px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-logo-wrap {
  width: 100%;
  display: flex;
  align-items: center;
}

.drawer-logo-img {
  height: 50px;
  max-width: 100%;
  object-fit: contain;
}

/* Drawer Menu Links */
.drawer-menu {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.drawer-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  color: var(--ytv-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.15s ease;
  direction: ltr;
  text-align: left;
}

.drawer-item:hover, .drawer-item:active {
  background-color: rgba(255, 255, 255, 0.12);
}

.drawer-icon {
  font-size: 20px;
  width: 28px;
  text-align: center;
  color: var(--ytv-white);
}

.drawer-label {
  font-family: var(--font-en), var(--font-main);
  letter-spacing: 0.3px;
}

/* ==========================================================================
   7. BOTTOM NAVIGATION BAR
   ========================================================================== */
.app-bottombar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 62px;
  background: var(--ytv-red-bottom);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 90;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.35);
  direction: ltr; /* Keeps LIVE TV on Left and LIVE EVENT on Right */
}

.bottombar-tab {
  flex: 1;
  max-width: 300px;
  height: 100%;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.1s ease;
}

.bottombar-tab:active {
  transform: scale(0.95);
}

.bottombar-tab.active {
  color: var(--ytv-white);
}

.bottombar-tab .tab-icon {
  font-size: 20px;
}

.bottombar-tab .tab-label {
  font-family: var(--font-en), var(--font-main);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
}

/* ==========================================================================
   8. VIDEO PLAYER MODAL (LARGE FULL VIEWPORT & CINEMA THEATRE)
   ========================================================================== */
.player-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 0;
}

.player-modal.active {
  opacity: 1;
  visibility: visible;
}

.player-dialog {
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background: #000000;
  border: none;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 850px) {
  .player-modal {
    padding: 20px;
  }
  .player-dialog {
    width: 95vw;
    max-width: 1300px;
    height: 90vh;
    max-height: 90vh;
    border: 2px solid var(--ytv-red-border);
    border-radius: var(--ytv-card-radius);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.95);
  }
}

.player-topbar {
  height: 54px;
  background: var(--ytv-red-primary);
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ytv-white);
  direction: ltr;
  flex-shrink: 0;
}

.player-back-btn {
  background: transparent;
  border: none;
  color: var(--ytv-white);
  font-size: 22px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 50%;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.player-back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.player-back-btn:active {
  transform: scale(0.9);
}

.player-title {
  font-size: 17.5px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  text-align: center;
  margin: 0 16px;
  direction: rtl;
}

.player-live-tag {
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-pulse {
  animation: pulseDot 1.2s infinite;
}

.player-screen-container {
  width: 100%;
  height: calc(100% - 54px);
  flex: 1;
  background: #000000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.player-loader {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.75);
  padding: 18px 28px;
  border-radius: 14px;
}

.player-error {
  position: absolute;
  text-align: center;
  color: #fca5a5;
  padding: 24px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  max-width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.player-error i {
  font-size: 38px;
  margin-bottom: 10px;
  color: #ef4444;
}

.player-error-action-btn {
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.35);
}

.player-error-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.5);
}

/* ==========================================================================
   9. GENERIC MODALS (CONTACT & PRIVACY)
   ========================================================================== */
.info-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  padding: 20px;
}

.info-modal.active {
  opacity: 1;
  visibility: visible;
}

.info-dialog {
  width: 100%;
  max-width: 480px;
  background: var(--ytv-white);
  border-radius: var(--ytv-card-radius);
  border: 2px solid var(--ytv-red-border);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.info-header {
  background: var(--ytv-red-primary);
  color: var(--ytv-white);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-header h3 {
  font-size: 16.5px;
  font-weight: 800;
}

.info-close-btn {
  background: transparent;
  border: none;
  color: var(--ytv-white);
  font-size: 20px;
  cursor: pointer;
}

.info-body {
  padding: 20px;
  font-size: 14.5px;
  color: var(--ytv-text-dark);
  line-height: 1.65;
  max-height: 65vh;
  overflow-y: auto;
}

/* Toast */
.app-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: rgba(30, 41, 59, 0.96);
  color: #fff;
  padding: 11px 22px;
  border-radius: 25px;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.app-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
