body {
      font-family: "Poppins", sans-serif;
      background-color: #0e1e40;
      color: #c0d6f9;
      overflow-x: hidden;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    #sidebar-overlay {
      background: rgba(14, 30, 64, 0.85);
      backdrop-filter: blur(12px);
      position: fixed;
      inset: 0;
      z-index: 50;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    #sidebar-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    #sidebar {
      background: rgba(14, 30, 64, 0.95);
      backdrop-filter: blur(14px);
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 250px;
      max-width: 80vw;
      box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);
      transform: translateX(-100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 60;
      display: flex;
      flex-direction: column;
      padding-top: 5.5rem;
      padding-bottom: 3rem;
      border-right: 1px solid rgba(59, 130, 246, 0.3);
    }
    #sidebar.active {
      transform: translateX(0);
    }

    #sidebar ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }
    #sidebar ul li:first-child {
      margin-top: 2.5rem;
    }
    #sidebar ul li a {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      font-weight: 600;
      font-size: 1.125rem;
      color: #93c5fd;
      text-decoration: none;
      padding: 0.75rem 1.25rem;
      border-radius: 0.5rem;
      transition: background-color 0.3s ease, color 0.3s ease;
      user-select: none;
    }
    #sidebar ul li a i {
      color: #3b82f6;
      font-size: 1.5rem;
      min-width: 28px;
      text-align: center;
    }
    #sidebar ul li a:hover,
    #sidebar ul li a:focus {
      background-color: rgba(59, 130, 246, 0.25);
      color: #bfdbfe;
      outline: none;
    }

    #hamburger-btn {
      position: fixed;
      top: 1rem;
      left: 1rem;
      z-index: 70;
      width: 44px;
      height: 44px;
      background: rgba(14, 30, 64, 0.85);
      backdrop-filter: blur(12px);
      border-radius: 0.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 7px;
      padding: 7px 9px;
      cursor: pointer;
      box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
      transition: background-color 0.3s ease;
      user-select: none;
    }
    #hamburger-btn:hover,
    #hamburger-btn:focus {
      background: rgba(59, 130, 246, 0.85);
      outline: none;
    }
    #hamburger-btn span {
      display: block;
      height: 3.5px;
      background-color: #93c5fd;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    #hamburger-btn.active span:nth-child(1) {
      transform: translateY(11px) rotate(45deg);
    }
    #hamburger-btn.active span:nth-child(2) {
      opacity: 0;
    }
    #hamburger-btn.active span:nth-child(3) {
      transform: translateY(-11px) rotate(-45deg);
    }

    main {
      padding: 4rem 1.5rem 3rem;
      max-width: 5xl;
      margin-left: 0;
      transition: margin-left 0.35s ease;
      flex-grow: 1;
    }
    @media (min-width: 768px) {
      main.sidebar-open {
        margin-left: 250px;
      }
    }

    .fade-in-slide {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .fade-in-slide.visible {
      opacity: 1;
      transform: translateY(0);
    }

    section h2 {
      margin-top: 3rem;
      margin-bottom: 2rem;
    }

    main::-webkit-scrollbar {
      width: 8px;
    }
    main::-webkit-scrollbar-thumb {
      background-color: rgba(59, 130, 246, 0.3);
      border-radius: 4px;
    }

    footer {
      border-top: 1px solid rgba(59, 130, 246, 0.4);
      padding: 1.5rem 1.5rem 3rem;
      background: rgba(14, 30, 64, 0.9);
      backdrop-filter: blur(12px);
      color: #93c5fd;
      text-align: center;
      font-size: 0.9rem;
      user-select: none;
      flex-shrink: 0;
    }
    footer .hashtags {
      display: flex;
      justify-content: center;
      gap: 1.25rem;
      flex-wrap: wrap;
      color: #60a5fa;
      margin-bottom: 1.5rem;
    }
    footer .hashtags span {
      background-color: rgba(59, 130, 246, 0.2);
      padding: 0.15rem 0.6rem;
      border-radius: 9999px;
      font-weight: 600;
      user-select: text;
    }
    footer .copyright {
      margin-top: 1rem;
      font-size: 0.75rem;
      color: #3b82f6;
      user-select: text;
    }

    .bot-preview {
      max-width: 400px;
      margin: 0 auto;
      border-radius: 1rem;
      box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
      overflow: hidden;
      user-select: none;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .bot-preview:hover {
      transform: scale(1.03);
    }
    .bot-preview img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 1rem;
      object-fit: contain;
      background: #1e40af;
      box-shadow: 0 0 15px rgba(59, 130, 246, 0.7);
    }

    .bot-previews-container {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      padding-top: 2rem;
      justify-items: center;
    }
    .alert-success {
      background-color: #d1fae5;
      color: #065f46;
      border: 1px solid #10b981;
    }

    .alert-error {
      background-color: #fee2e2;
      color: #991b1b;
      border: 1px solid #f87171;
    }

    #image-modal {
      position: fixed;
      inset: 0;
      background: rgba(14, 30, 64, 0.95);
      backdrop-filter: blur(14px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    #image-modal.active {
      opacity: 1;
      pointer-events: auto;
    }
    #image-modal .modal-content {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
      border-radius: 1rem;
      box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
      overflow: hidden;
      background: #1e40af;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #image-modal img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
      border-radius: 1rem;
      user-select: none;
    }
    #image-modal button.close-btn {
      position: absolute;
      top: 0.5rem;
      right: 0.5rem;
      background: rgba(59, 130, 246, 0.8);
      border: none;
      color: white;
      font-size: 1.75rem;
      padding: 0.25rem 0.6rem;
      border-radius: 9999px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      user-select: none;
      line-height: 1;
    }
    #image-modal button.close-btn:hover,
    #image-modal button.close-btn:focus {
      background: rgba(59, 130, 246, 1);
      outline: none;
    }

    @media (max-width: 767px) {
      #sidebar {
        width: 80vw;
        max-width: none;
        padding-top: 3rem;
      }
      main.sidebar-open {
        margin-left: 0;
      }
      .bot-preview {
        max-width: 100%;
      }
    }
    
    /* Form Improvements */
    form input, form textarea {
      transition: all 0.3s ease;
    }
    
    form input:focus, form textarea:focus {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }
    
    /* Button Improvements */
    button, .inline-block {
      transition: all 0.3s ease;
    }
    
    /* Card Hover Effects */
    article {
      transition: all 0.3s ease;
    }
    
    article:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    }
    
    /* Text Improvements */
    p {
      line-height: 1.7;
    }
    
    h1, h2, h3 {
      line-height: 1.3;
    }
    
    /* Spacing Utilities */
    .space-y-3 > * + * {
      margin-top: 0.75rem;
    }
    
    .space-y-6 > * + * {
      margin-top: 1.5rem;
    }
    
    /* Additional Layout Fixes */
    .flex {
      display: flex;
    }
    
    .flex-col {
      flex-direction: column;
    }
    
    .flex-col-reverse {
      flex-direction: column-reverse;
    }
    
    .items-center {
      align-items: center;
    }
    
    .justify-center {
      justify-content: center;
    }
    
    .flex-1 {
      flex: 1 1 0%;
    }
    
    .flex-shrink-0 {
      flex-shrink: 0;
    }
    
    @media (min-width: 768px) {
      .md\\:flex-row {
        flex-direction: row;
      }
      
      .md\\:text-left {
        text-align: left;
      }
      
      .md\\:inline {
        display: inline;
      }
    }
