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

        body {
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          line-height: 1.5;
          color: #333;
          background: #f8f9fa;
        }

        .header {
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: white;
          padding: 2rem 0;
          text-align: center;
        }

        .header-content h1 {
          font-size: 2.5rem;
          margin-bottom: 0.5rem;
          font-weight: 700;
        }

        .header-content p {
          font-size: 1.1rem;
          margin-bottom: 0.5rem;
        }

        .back-link {
          display: inline-block;
          margin-top: 1rem;
          color: white;
          text-decoration: none;
          background: rgba(255, 255, 255, 0.2);
          padding: 0.5rem 1rem;
          border-radius: 20px;
          transition: background 0.3s;
        }

        .back-link:hover {
          background: rgba(255, 255, 255, 0.3);
        }

        .main {
          max-width: 1200px;
          margin: 0 auto;
          padding: 2rem;
        }

        .section {
          background: white;
          margin-bottom: 2rem;
          padding: 2rem;
          border-radius: 12px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .section h2 {
          color: #333;
          margin-bottom: 1.5rem;
          font-size: 1.8rem;
          border-bottom: 3px solid #667eea;
          padding-bottom: 0.5rem;
        }

        .class-list {
          display: flex;
          flex-direction: column;
          gap: 1rem;
        }

        .class-item {
          background: #f8f9fa;
          padding: 1.5rem;
          border-radius: 8px;
          border-left: 4px solid #667eea;
        }

        .class-item h3 {
          margin: 0 0 0.5rem 0;
        }

        .class-item h3 a {
          color: #333;
          text-decoration: none;
          font-size: 1.2rem;
        }

        .class-item h3 a:hover {
          color: #667eea;
        }

        .class-item p {
          margin: 0;
          color: #666;
          line-height: 1.5;
        }

        .class-details {
          background: #f8f9fa;
          padding: 1rem;
          border-radius: 8px;
          margin-bottom: 1rem;
        }

        .class-details p {
          margin-bottom: 0.5rem;
        }

        .class-details a {
          color: #667eea;
          text-decoration: none;
        }

        .class-details a:hover {
          text-decoration: underline;
        }

                .see-also {
          margin-top: 1rem;
          padding: 1rem;
          background: #f0f8ff;
          border-left: 4px solid #667eea;
          border-radius: 4px;
        }

        .see-also h4 {
          margin: 0 0 0.5rem 0;
          color: #333;
          font-size: 1rem;
        }

        .see-also ul {
          margin: 0;
          padding-left: 1.5rem;
        }

        .see-also li {
          margin-bottom: 0.25rem;
        }

        .see-also a {
          color: #667eea;
          text-decoration: none;
        }

        .see-also a:hover {
          text-decoration: underline;
        }

        .field-item {
          margin-bottom: 2rem;
          padding: 1.5rem;
          border: 1px solid #ddd;
          border-radius: 8px;
          background: #fafafa;
        }

        .field-name {
          color: #333;
          margin-bottom: 0.5rem;
          font-size: 1.2rem;
        }

        .field-signature {
          margin-bottom: 1rem;
          font-family: 'Courier New', monospace;
          background: white;
          padding: 0.5rem;
          border-radius: 4px;
          border: 1px solid #ddd;
        }

        .field-description {
          color: #555;
          line-height: 1.6;
        }
.enum-item {
          margin-bottom: 2rem;
          padding: 1.5rem;
          border: 1px solid #ddd;
          border-radius: 8px;
          background: #f0f8ff;
        }

        .enum-name {
          color: #333;
          margin-bottom: 0.5rem;
          font-size: 1.2rem;
        }

        .enum-signature {
          margin-bottom: 1rem;
          font-family: 'Courier New', monospace;
          background: white;
          padding: 0.5rem;
          border-radius: 4px;
          border: 1px solid #ddd;
        }

        .enum-description {
          color: #555;
          line-height: 1.6;
          margin-bottom: 1rem;
        }

        .enum-constants h4 {
          color: #495057;
          margin-bottom: 0.5rem;
          font-size: 1rem;
        }

        .enum-constants ul {
          margin: 0;
          padding-left: 1.5rem;
        }

        .enum-constants li {
          margin-bottom: 0.25rem;
        }

        .visibility {
          padding: 0.2rem 0.5rem;
          border-radius: 4px;
          font-size: 0.8rem;
          font-weight: 500;
          text-transform: uppercase;
        }

        .abstract-badge {
          background: #e7f3ff;
          color: #0066cc;
          padding: 0.2rem 0.5rem;
          border-radius: 4px;
          font-size: 0.8rem;
          font-weight: 500;
          margin-left: 0.5rem;
        }

        .inherited-badge {
          background: #e7f3ff;
          color: #0066cc;
          padding: 0.2rem 0.5rem;
          border-radius: 4px;
          font-size: 0.8rem;
          font-weight: 500;
          margin-left: 0.5rem;
        }

        .class-description {
          margin-top: 1rem;
        }

        .class-description h3 {
          margin-bottom: 0.5rem;
          color: #495057;
        }

        .member-table {
          width: 100%;
          border-collapse: collapse;
          margin-top: 1rem;
        }

        .member-table th,
        .member-table td {
          padding: 0.75rem;
          text-align: left;
          border-bottom: 1px solid #dee2e6;
          vertical-align: top;
        }

        .member-table th {
          background: #f8f9fa;
          font-weight: 600;
          color: #495057;
        }

        .member-table tr:hover {
          background: #f8f9fa;
        }

        .method {
          border: 1px solid #dee2e6;
          border-radius: 8px;
          margin-bottom: 2rem;
          padding: 1.5rem;
          background: #f8f9fa;
        }

        .method-name {
          color: #495057;
          margin-bottom: 1rem;
          font-size: 1.3rem;
        }

        .method-signature {
          background: #e9ecef;
          padding: 1rem;
          border-radius: 4px;
          margin-bottom: 1rem;
          font-family: 'Courier New', monospace;
          overflow-x: auto;
        }

        .method-description {
          margin-bottom: 1rem;
          color: #495057;
          line-height: 1.5;
        }

        .method-parameters,
        .method-returns {
          margin-top: 1rem;
        }

        .method-parameters h4,
        .method-returns h4 {
          color: #495057;
          margin-bottom: 0.5rem;
          font-size: 1.1rem;
        }

        .parameter-table {
          width: 100%;
          border-collapse: collapse;
          margin-top: 0.5rem;
        }

        .parameter-table th,
        .parameter-table td {
          padding: 0.5rem;
          text-align: left;
          border-bottom: 1px solid #dee2e6;
          vertical-align: top;
        }

        .parameter-table th {
          background: #e9ecef;
          font-weight: 600;
          color: #495057;
        }

        code {
          background: #e9ecef;
          padding: 0.2rem 0.4rem;
          border-radius: 3px;
          font-family: 'Courier New', monospace;
          font-size: 0.9rem;
        }

        pre {
          background: #f8f9fa;
          padding: 1rem;
          border-radius: 4px;
          overflow-x: auto;
          margin: 1rem 0;
        }

        ul, ol {
          margin: 1rem 0;
          padding-left: 2rem;
        }

        li {
          margin-bottom: 0.5rem;
        }

        .footer {
          background: #343a40;
          color: white;
          text-align: center;
          padding: 2rem 0;
          margin-top: 2rem;
        }

        .footer p {
          margin: 0;
          opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
          .main {
            padding: 1rem;
          }

          .header-content h1 {
            font-size: 2rem;
          }
        }
