/* TEPA Mobile App Viewport & Floating Dock CSS */

.mobile-app-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  min-height: calc(100vh - 120px);
}

/* Smartphone Device Chassis Frame */
.mobile-device-frame {
  width: 380px;
  height: 760px;
  background: #040711;
  border-radius: 48px;
  border: 10px solid #1E293B;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px var(--accent-gold-glow);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Speaker Notch & Camera Island */
.mobile-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #000;
  border-radius: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-camera-dot {
  width: 10px;
  height: 10px;
  background: #111827;
  border-radius: 50%;
  border: 1px solid #374151;
}

/* Mobile Status Bar */
.mobile-status-bar {
  height: 44px;
  padding: 10px 24px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
  z-index: 90;
}

/* Mobile Content Screen Body */
.mobile-screen-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

/* Mobile Header Brand Bar */
.mobile-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-glass);
}

.mobile-app-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mobile-app-brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--primary-gold);
}

.mobile-app-brand span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-gold);
}

/* Mobile Tab Views */
.mobile-tab-view {
  display: none;
  animation: fadeIn 0.3s ease;
}

.mobile-tab-view.active {
  display: block;
}

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

/* Mobile Live Player Card */
.mobile-player-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(6, 11, 24, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.mobile-art-wrapper {
  width: 200px;
  height: 200px;
  margin: 0 auto 1rem auto;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--primary-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.mobile-art-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-track-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.mobile-track-speaker {
  font-size: 0.88rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

/* Mobile Floating Mini Player Dock */
.mobile-mini-player {
  position: absolute;
  bottom: 64px;
  left: 10px;
  right: 10px;
  background: rgba(11, 19, 37, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 80;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.mini-player-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow: hidden;
}

.mini-player-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.mini-player-info {
  display: flex;
  flex-direction: column;
}

.mini-player-info strong {
  font-size: 0.8rem;
  color: var(--text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.mini-player-info span {
  font-size: 0.7rem;
  color: var(--primary-gold);
}

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
  height: 60px;
  background: rgba(6, 11, 24, 0.98);
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 90;
}

.mobile-nav-item {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-item i {
  font-size: 1.15rem;
}

.mobile-nav-item.active {
  color: var(--primary-gold);
}

/* Lockscreen Notification Widget Preview */
.mobile-lockscreen-widget {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 0.85rem;
  margin-top: 1rem;
}

.lockscreen-header {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.lockscreen-body {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lockscreen-body img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}
