  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      background: #0a0a0a;
      color: #fff;
      font-family: 'Poppins', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
      perspective: 1000px;
  }

  .admin-container {
      display: flex;
      min-height: 100vh;
  }



  /* Main Content */
  .admin-main {
      flex: 1;
      margin-left: 250px;
      transition: all 0.3s ease;
  }


  /* Content Area */
  .admin-content {
      padding: 30px;
      min-height: calc(100vh - 70px - 60px);
  }

  .content-header {
      margin-bottom: 30px;
  }

  .content-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 10px;
      background: linear-gradient(90deg, #4da6ff, #0066cc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
  }

  .content-subtitle {
      color: #bbbbbb;
      font-size: 1.1rem;
      font-weight: 300;
  }

  /* Dashboard Cards */
  .dashboard-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
  }

  .dashboard-card {
      background: rgba(15, 15, 15, 0.7);
      border: 1px solid rgba(77, 166, 255, 0.2);
      border-radius: 15px;
      padding: 25px;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
  }

  .dashboard-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: #4da6ff;
  }

  .dashboard-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(77, 166, 255, 0.3);
  }

  .card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
  }

  .card-icon {
      width: 60px;
      height: 60px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
  }

  .card-icon.posts {
      background: rgba(77, 166, 255, 0.15);
      color: #4da6ff;
  }

  .card-icon.users {
      background: rgba(46, 204, 113, 0.15);
      color: #2ecc71;
  }

  .card-icon.comments {
      background: rgba(243, 156, 18, 0.15);
      color: #f39c12;
  }

  .card-icon.views {
      background: rgba(155, 89, 182, 0.15);
      color: #9b59b6;
  }

  .card-icon.engagement {
      background: rgba(231, 76, 60, 0.15);
      color: #e74c3c;
  }

  .card-icon.revenue {
      background: rgba(52, 152, 219, 0.15);
      color: #3498db;
  }

  .card-stats {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      background: linear-gradient(90deg, #4da6ff, #0066cc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .card-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 10px;
  }

  .card-desc {
      color: #bbbbbb;
      font-size: 0.95rem;
      line-height: 1.6;
  }

  .card-trend {
      display: flex;
      align-items: center;
      margin-top: 15px;
      font-size: 0.9rem;
      font-weight: 500;
  }

  .card-trend.positive {
      color: #2ecc71;
  }

  .card-trend.negative {
      color: #e74c3c;
  }

  .card-trend i {
      margin-right: 5px;
  }

  /* Charts Section */
  .charts-section {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 25px;
      margin-bottom: 40px;
  }

  .chart-container {
      background: rgba(15, 15, 15, 0.7);
      border: 1px solid rgba(77, 166, 255, 0.2);
      border-radius: 15px;
      padding: 25px;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .chart-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
  }

  .chart-title {
      font-size: 1.3rem;
      font-weight: 600;
  }

  .chart-actions button {
      background: rgba(77, 166, 255, 0.1);
      color: #4da6ff;
      border: none;
      padding: 8px 15px;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .chart-actions button:hover {
      background: rgba(77, 166, 255, 0.2);
  }

  .chart-placeholder {
      height: 300px;
      background: rgba(20, 20, 20, 0.4);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #bbbbbb;
      font-size: 1.1rem;
  }

  .chart-placeholder i {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #4da6ff;
  }

  .chart-placeholder div {
      text-align: center;
  }

  /* Recent Activity */
  .activity-container {
      background: rgba(15, 15, 15, 0.7);
      border: 1px solid rgba(77, 166, 255, 0.2);
      border-radius: 15px;
      padding: 25px;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .activity-header {
      margin-bottom: 20px;
  }

  .activity-title {
      font-size: 1.3rem;
      font-weight: 600;
  }

  .activity-list {
      list-style: none;
  }

  .activity-item {
      display: flex;
      padding: 15px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .activity-item:last-child {
      border-bottom: none;
  }

  .activity-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(77, 166, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #4da6ff;
      margin-right: 15px;
      flex-shrink: 0;
  }

  .activity-content {
      flex: 1;
  }

  .activity-title {
      font-weight: 500;
      margin-bottom: 5px;
  }

  .activity-desc {
      color: #bbbbbb;
      font-size: 0.9rem;
      line-height: 1.5;
  }

  .activity-time {
      color: #bbbbbb;
      font-size: 0.8rem;
      margin-top: 5px;
      display: block;
  }


  /* Responsive */
  @media (max-width: 1200px) {
      .charts-section {
          grid-template-columns: 1fr;
      }
  }

  @media (max-width: 992px) {


      .admin-main {
          margin-left: 0;
      }


  }

  @media (max-width: 768px) {
      .dashboard-cards {
          grid-template-columns: 1fr;
      }

  }