* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  background: #eef2f6;
  padding: 30px;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 18px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
}
.logo-area img {
  height: 42px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #2563eb;
}
.header-actions button {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.dashboard {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card {
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.profile-card {
  background: linear-gradient(135deg, #009ee3, #0066cc);
  color: #fff;
  padding: 30px;
}
.profile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.profile-name h2 {
  font-size: 32px;
  margin-bottom: 8px;
}
.profile-name p {
  font-size: 16px;
  opacity: 0.95;
}
.profile-status {
  background: rgba(255, 255, 255, 0.18);
  padding: 18px 24px;
  border-radius: 14px;
  min-width: 280px;
}
.profile-bottom {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-box {
  padding: 24px;
  border-radius: 18px;
  min-height: 150px;
}
.stat-box.white {
  background: #fff;
  color: #222;
}
.stat-box.blue {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
}
.stat-box.light {
  background: #f8fbff;
  color: #222;
  border: 1px solid #dbeafe;
}
.stat-title {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 14px;
}
.stat-value {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}
.stat-sub {
  font-size: 14px;
  opacity: 0.85;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.sales-card,
.notice-card {
  background: #fff;
  padding: 28px;
}
.sales-card h3,
.notice-card h3 {
  margin-bottom: 18px;
  font-size: 24px;
}
.sales-value {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
}
.growth {
  color: #16a34a;
  margin-top: 10px;
  font-size: 16px;
}
.notice-list li {
  margin-bottom: 12px;
  color: #475569;
}

.achievement-section {
  margin-top: 10px;
}
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.achievement-box {
  padding: 28px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.blue-box {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
}
.white-box {
  background: #fff;
  color: #1e293b;
}
.icon {
  font-size: 34px;
  margin-bottom: 14px;
}
.achievement-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.achievement-box p {
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .profile-bottom,
  .achievement-grid {
    grid-template-columns: 1fr 1fr;
  }
  .analytics-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    gap: 15px;
  }
}
@media (max-width: 576px) {
  body {
    padding: 15px;
  }
  .profile-name h2 {
    font-size: 24px;
  }
  .sales-value {
    font-size: 32px;
  }
  .profile-bottom,
  .achievement-grid {
    grid-template-columns: 1fr;
  }
}
