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

      body {
        background-color: #f9f9f9;
        font-family:
          "Inter",
          system-ui,
          -apple-system,
          "Segoe UI",
          Roboto,
          Helvetica,
          sans-serif;
        color: #0a1927;
        line-height: 1.45;
      }

      .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 2rem 2rem 4rem;
        min-height: 100vh;
      }

      /* Хлебные крошки */
      .breadcrumb {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.85rem;
        margin-bottom: 2rem;
        color: #5a6e7c;
      }
      .breadcrumb a {
        color: #2c6e9e;
        text-decoration: none;
        transition: color 0.2s;
      }
      .breadcrumb a:hover {
        color: #0f4c6f;
        text-decoration: underline;
      }
      .breadcrumb span:last-child {
        color: #1f3b4c;
        font-weight: 500;
      }
      .distributors-portal-hero {
        margin-bottom: 2rem;
      }
      .distributors-portal-hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(to right, #1a4d5f, #2c7a6e);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-bottom: 0.5rem;
      }

      /* Панель входа */
      .login-section {
        max-width: 600px;
        margin: 5rem auto;
        background: #ffffff;
        border-radius: 40px;
        padding: 2rem;
        border: 1px solid #eef2f6;
        box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.05);
        text-align: center;
      }

      .login-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #1a4d5f;
        margin-bottom: 0.5rem;
      }

      .input-group {
        margin-bottom: 1rem;
        text-align: left;
      }
      .input-group label {
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        color: #2c5a66;
      }
      input {
        width: 100%;
        padding: 0.8rem 1rem;
        border-radius: 28px;
        border: 1px solid #dce5ec;
        margin-top: 0.3rem;
        font-family: inherit;
      }
      input:focus {
        outline: none;
        border-color: #cf2e2e;
      }
      .login-btn {
        background: #1e6f9f;
        color: white;
        border: none;
        width: 100%;
        padding: 0.8rem;
        border-radius: 40px;
        font-weight: 600;
        margin-top: 1rem;
        cursor: pointer;
        transition: 0.2s;
      }
      .login-btn:hover {
        background: #0f5a85;
      }
      .error-msg {
        color: #cf2e2e;
        font-size: 0.75rem;
        margin-top: 0.8rem;
      }

      /* Защищённый контент */
      .protected-content {
        display: none;
      }

      .welcome-header {
        background: #eef3fc;
        border-radius: 32px;
        padding: 1.2rem 2rem;
        margin-bottom: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
      }

      .logout-btn {
        background: none;
        border: 1px solid #cbdde6;
        padding: 0.4rem 1.2rem;
        border-radius: 40px;
        cursor: pointer;
        transition: 0.2s;
      }
      .logout-btn:hover {
        border-color: #cf2e2e;
        color: #cf2e2e;
      }

      .resource-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
      }

      .resource-card {
        background: #ffffff;
        border-radius: 28px;
        border: 1px solid #eef2f6;
        padding: 1.4rem;
        transition: 0.2s;
      }
      .resource-card:hover {
        transform: translateY(-3px);
        border-color: #d0e2ec;
      }
      .resource-icon {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
      }
      .resource-title {
        font-weight: 800;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #1a4d5f;
      }
      .resource-desc {
        font-size: 0.8rem;
        color: #517480;
        margin-bottom: 1rem;
      }
      .resource-link {
        color: #cf2e2e;
        font-weight: 600;
        font-size: 0.8rem;
        text-decoration: none;
      }
      .loading {
        text-align: center;
        padding: 2rem;
        color: #7c8f9a;
      }

      .grecaptcha-badge {
        opacity: 0 !important;
        visibility: hidden !important;
      }

      @media (max-width: 768px) {
        .container {
          padding: 1rem;
        }
        .hero h1 {
          font-size: 1.8rem;
        }
      }