/* Custom styles for AIMuse app */
:root {
  --primary-color: #7c4dff;
  --secondary-color: #b388ff;
  --dark-color: #1a1a1a;
  --light-color: #f5f5f5;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --danger-color: #f44336;
}

body {
  font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--dark-color);
  color: var(--light-color);
  margin: 0;
  padding: 0;
}

.iphone-frame {
  width: 375px;
  height: 812px;
  background-color: var(--dark-color);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  margin: 20px;
  border: 10px solid #111;
}

.status-bar {
  height: 44px;
  background-color: var(--dark-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.status-bar-left {
  display: flex;
  align-items: center;
}

.status-bar-right {
  display: flex;
  align-items: center;
}

.notch {
  position: absolute;
  width: 180px;
  height: 30px;
  background-color: #000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 11;
}

.tab-bar {
  height: 83px;
  background-color: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 10px;
  width: 60px;
  height: 60px;
}

.tab-item.active {
  color: var(--light-color);
}

.tab-item i {
  font-size: 24px;
  margin-bottom: 4px;
}

.content {
  height: calc(812px - 44px - 83px);
  overflow-y: auto;
  position: relative;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--light-color);
  border: 1px solid var(--light-color);
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.card {
  background-color: rgba(40, 40, 40, 0.8);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.mini-player {
  position: absolute;
  bottom: 83px;
  left: 0;
  right: 0;
  height: 60px;
  background-color: rgba(40, 40, 40, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-player-img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  margin-right: 12px;
}

.mini-player-info {
  flex: 1;
}

.mini-player-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.mini-player-artist {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}

.mini-player-controls {
  display: flex;
  align-items: center;
}

.mini-player-controls i {
  font-size: 24px;
  margin-left: 16px;
  color: var(--light-color);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* AI Creation specific styles */
.ai-option {
  background-color: rgba(40, 40, 40, 0.8);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.ai-option:hover, .ai-option.selected {
  border-color: var(--primary-color);
  background-color: rgba(124, 77, 255, 0.1);
}

/* VIP badge */
.vip-badge {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

/* Prototype display grid */
.prototype-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background-color: #f0f0f0;
}

.prototype-item {
  margin: 20px;
}

.prototype-label {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

/* Animation for music waves */
.music-wave {
  display: flex;
  align-items: center;
  height: 20px;
}

.music-wave span {
  display: inline-block;
  width: 3px;
  height: 100%;
  margin-right: 2px;
  background-color: var(--primary-color);
  animation: wave 1.2s infinite ease-in-out;
}

.music-wave span:nth-child(2) {
  animation-delay: 0.2s;
}

.music-wave span:nth-child(3) {
  animation-delay: 0.4s;
}

.music-wave span:nth-child(4) {
  animation-delay: 0.6s;
}

.music-wave span:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes wave {
  0%, 100% {
    height: 6px;
  }
  50% {
    height: 18px;
  }
} 