* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  color: #1c1c1c;
  padding-bottom: 80px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-left {
  font-weight: 600;
  font-size: 20px;
  color: #7c3aed;
}

.header-right {
  display: flex;
  align-items: center;
}

.profile-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 12px;
}

.notif-icon {
  font-size: 20px;
}

main {
  padding: 16px;
}

.greeting h2 {
  font-size: 20px;
  margin-bottom: 5px;
}

.status {
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.status.verified {
  color: #10b981;
}

.quick-actions {
  display: flex;
  overflow-x: auto;
  margin: 18px 0;
  gap: 12px;
}

.action-card {
  min-width: 120px;
  background: #fff;
  border-radius: 14px;
  text-align: center;
  padding: 16px 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  font-size: 22px;
  color: #4b5563;
  flex-shrink: 0;
  transition: 0.3s;
}

.action-card span {
  display: block;
  font-size: 13px;
  margin-top: 6px;
}

.action-card:hover {
  background: #f3f4f6;
}

.reels-carousel h3,
.auditions h3,
.snapshot h3,
.tips h3 {
  margin: 22px 0 10px;
  font-size: 17px;
  color: #111827;
}

.reels-scroll {
  display: flex;
  overflow-x: auto;
  gap: 12px;
}

.reel-preview {
  width: 120px;
  height: 200px;
  background: #e0e0e0;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #555;
}

.audition-card {
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.audition-card h4 {
  font-size: 16px;
  font-weight: 600;
}

.audition-card p {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

.audition-card button {
  margin-top: 10px;
  padding: 7px 14px;
  border: none;
  background: #7c3aed;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.audition-card button:hover {
  background: #5b21b6;
}

.snapshot ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.snapshot li {
  font-size: 14px;
  margin-bottom: 8px;
}

.tips p {
  font-size: 14px;
  margin: 6px 0;
  color: #4b5563;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  box-shadow: 0 -1px 3px rgba(0,0,0,0.05);
  z-index: 50;
}

.nav-item {
  text-align: center;
  font-size: 18px;
  color: #6b7280;
}

.nav-item span {
  display: block;
  font-size: 12px;
}

.nav-item.active {
  color: #7c3aed;
  font-weight: 600;
}
.profile-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
  border: 2px solid #e5e7eb;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  box-shadow: 0 -1px 3px rgba(0,0,0,0.05);
  z-index: 100;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  color: #6b7280;
  width: 20%;
  transition: color 0.2s ease;
}

.nav-item span:first-child {
  font-size: 20px;
}

.nav-item.active,
.nav-item:hover {
  color: #7c3aed;
  font-weight: 600;
}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8f8ff;
  color: #222;
  padding-bottom: 70px;
}
h1, h2 {
  font-weight: 600;
}

/* Header */
.app-header {
  background: linear-gradient(135deg, #5e17eb, #9f5fff);
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 0 0 16px 16px;
}
.title {
  font-size: 1.5rem;
}

/* Stepper */
.stepper {
  display: flex;
  justify-content: space-between;
  margin: 20px;
}
.step {
  text-align: center;
  flex: 1;
  position: relative;
  font-size: 0.8rem;
  color: #999;
}
.step::before {
  content: '';
  width: 16px;
  height: 16px;
  background: #ccc;
  border-radius: 50%;
  display: block;
  margin: 0 auto 4px;
}
.step.active {
  color: #5e17eb;
}
.step.active::before {
  background: #5e17eb;
}
.step + .step::after {
  content: '';
  position: absolute;
  top: 7px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: #ccc;
  z-index: -1;
}
.step.active + .step::after {
  background: #5e17eb;
}

/* Form */
.form-section {
  padding: 20px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease;
}
.form-group input:focus,
.form-group select:focus {
  border-color: #5e17eb;
  outline: none;
}

/* Button */
.btn {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.btn.primary {
  background: linear-gradient(135deg, #5e17eb, #9f5fff);
  color: #fff;
  box-shadow: 0 4px 10px rgba(94, 23, 235, 0.3);
}
.btn.primary:hover {
  opacity: 0.95;
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 999;
}
.nav-item {
  text-align: center;
  font-size: 0.75rem;
  color: #777;
  text-decoration: none;
  flex: 1;
}
.nav-item .icon {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.nav-item.active {
  color: #5e17eb;
}

/* Responsive */
@media (min-width: 768px) {
  body {
    max-width: 420px;
    margin: auto;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
  }
}
