.reports-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
  }

  .reports-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
      radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 99, 71, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(70, 130, 180, 0.07) 0%, transparent 50%);
  }

  .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-particle 20s infinite linear;
  }

  @keyframes float-particle {
    0% { transform: translate(0, 0); }
    25% { transform: translate(50px, 30px); }
    50% { transform: translate(100px, -20px); }
    75% { transform: translate(-30px, -60px); }
    100% { transform: translate(0, 0); }
  }

  .reports-title {
    color: #333;
    text-align: center;
    margin: 3rem 0 3rem 0;
    font-size: 3.5rem;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
  }

  body.dark-theme .reports-title {
    color: #e0e0e0;
    text-shadow: 0 2px 15px rgba(100, 150, 255, 0.3);
  }

  .reports-list {
    list-style: none;
    padding: 0;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .report-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
  }

  .report-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #66BB6A, #459E48);
  }

  body.dark-theme .report-item {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  body.dark-theme .report-item::before {
    background: linear-gradient(90deg, #66BB6A, #459E48);
  }

  .report-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
  }

  body.dark-theme .report-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .report-date {
    color: #333;
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
  }

  body.dark-theme .report-date {
    color: #e0e0e0;
  }

  .report-link {
    display: inline-flex;
    align-items: center;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    gap: 0.5rem;
    position: relative;
  }

  .report-link::before {
    content: "📄";
    font-size: 1.2rem;
  }

  .report-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
  }

  .report-link:hover {
    color: #0056b3;
  }

  .report-link:hover::after {
    width: 100%;
  }

  body.dark-theme .report-link {
    color: #00aaff;
  }

  body.dark-theme .report-link:hover {
    color: #007acc;
  }

  body.dark-theme .report-link::after {
    background: #00aaff;
  }

  /* Адаптивность */
  @media (max-width: 768px) {
    .reports-container {
      padding: 1rem;
    }

    .reports-title {
      font-size: 2.5rem;
      margin: 2rem 0 2rem 0;
    }

    .report-item {
      padding: 1.5rem;
    }

    .report-date {
      font-size: 1.2rem;
    }

  }