
    /* =============== Theme Variables =============== */
    :root {
      /* Dark mode (default) */
      --bg-color: #000000;
      --text-color: #ffffff;
      --card-bg: #151515;
      --input-bg: #1e1e1e;
      --border-color: #333;
      --secondary-text: #a8b4c0;
      --tertiary-text: #6b7684;
      --hover-bg: rgba(255, 255, 255, 0.05);
      --glass-bg: rgba(10, 10, 10, 0.8);
      --electric-blue: #1d9bf0;
      --electric-blue-hover: #1a8cd8;
      --gradient-start: #1d9bf0;
      --gradient-end: #8b5cf6;
      --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .light-mode {
      --bg-color: #f8f9fa;
      --text-color: #212529;
      --card-bg: #ffffff;
      --input-bg: #f1f3f5;
      --border-color: #dee2e6;
      --secondary-text: #6c757d;
      --tertiary-text: #495057;
      --hover-bg: rgba(0, 0, 0, 0.05);
      --glass-bg: rgba(255, 255, 255, 0.8);
      --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* =============== Base & Reset =============== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Space Grotesk', sans-serif;
      background: var(--bg-color);
      color: var(--text-color);
      min-height: 100vh;
      padding-top: 70px;
      padding-bottom: 80px;
      transition: background-color 0.3s, color 0.3s;
    }

    /* =============== Header =============== */
    .header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      background: var(--card-bg);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text-color);
      text-align: center;
      flex: 1;
    }

    /* =============== Secondary Menu =============== */
    .secondary-menu {
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      bottom: -250px;
      width: 200px;
      background: var(--glass-bg);
      border-radius: 20px;
      padding: 1rem;
      backdrop-filter: blur(10px);
      transition: bottom 0.3s ease;
      z-index: 99;
      height: 240px;
      overflow-y: auto;
    }

    .secondary-menu.active {
      bottom: 85px;
    }

    .secondary-menu h3 {
      color: var(--electric-blue);
      margin-bottom: 1rem;
      font-size: 1.25rem;
      font-weight: 600;
    }

    .secondary-menu a {
      display: flex;
      align-items: center;
      padding: 0.75rem;
      margin-bottom: 0.5rem;
      color: var(--secondary-text);
      text-decoration: none;
      border-radius: 10px;
      transition: all 0.2s ease;
      font-size: 0.9rem;
      cursor: pointer;
    }

    .secondary-menu a:hover {
      background: var(--hover-bg);
      color: var(--electric-blue);
    }

    .secondary-menu a i {
      margin-right: 0.75rem;
      width: 16px;
      text-align: center;
    }

    /* =============== Main Content =============== */
    .main-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1rem 6rem;
    }

    .wrapper {
      max-width: 600px;
      margin: 0 auto;
      background: var(--card-bg);
      border-radius: 20px;
      padding: 2rem;
      box-shadow: var(--shadow);
      animation: fadeIn 0.5s ease-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .form-title {
      text-align: center;
      color: var(--electric-blue);
      margin-bottom: 2rem;
      font-size: 1.5rem;
      font-weight: 600;
    }

    .input-field {
      margin-bottom: 1.5rem;
    }

    .input-field label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--secondary-text);
      font-size: 0.9rem;
      font-weight: 500;
    }

    .form-input {
      width: 100%;
      background: var(--input-bg);
      border: 1px solid var(--border-color);
      border-radius: 50px;
      padding: 1rem 1.5rem;
      font-size: 1rem;
      color: var(--text-color);
      transition: all 0.2s ease;
      font-family: 'Space Grotesk', sans-serif;
    }

    .form-input:focus {
      outline: none;
      border-color: var(--electric-blue);
      box-shadow: 0 0 0 2px rgba(29, 155, 240, 0.3);
    }

    .form-input::placeholder {
      color: var(--tertiary-text);
    }

    textarea.form-input {
      border-radius: 15px;
      resize: vertical;
      min-height: 100px;
    }

    /* =============== Image Upload =============== */
    .image-upload-container {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 0.5rem;
    }

    .image-upload-btn {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--input-bg);
      border: 2px dashed var(--border-color);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .image-upload-btn:hover {
      border-color: var(--electric-blue);
      background: var(--hover-bg);
    }

    .image-upload-btn i {
      color: var(--secondary-text);
      font-size: 1.25rem;
    }

    #image-preview img {
 
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  width: 300px;
  height: 300px;
      display: block;
      margin-top: 1rem;
   border-radius: 50% !important;

    }

    /* =============== Buttons =============== */
    .btn-primary {
      width: 100%;
      background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
      color: white;
      border: none;
      border-radius: 50px;
      padding: 0.75rem 1.5rem;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      font-family: 'Space Grotesk', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-primary i {
      margin-right: 0.5rem;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }

    .btn-primary:active {
      transform: translateY(0);
    }

    .btn-primary.loading {
      pointer-events: none;
      opacity: 0.7;
    }

    /* =============== Bottom Nav =============== */
    .navbars {
      position: fixed;
      bottom: 0;
      width: 100%;
      z-index: 100;
      background: var(--card-bg);
      padding: 0.75rem 0;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav {
      display: flex;
      justify-content: space-around;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .nav a {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
      color: var(--secondary-text);
      text-decoration: none;
      font-size: 0.8rem;
      padding: 0.5rem;
      border-radius: 10px;
      transition: all 0.2s ease;
    }

    .nav a i {
      font-size: 1.25rem;
    }

   

    /* =============== Messages =============== */
    .message {
      position: fixed;
      top: 80px;
      left: 50%;
      transform: translateX(-50%);
      padding: 0.75rem 1.5rem;
      border-radius: 12px;
      font-weight: 500;
      z-index: 1100;
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      max-width: 90%;
      text-align: center;
      display: none;
      animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translate(-50%, -20px); }
      to { opacity: 1; transform: translate(-50%, 0); }
    }

    .error-message {
      background: rgba(239, 68, 68, 0.9);
      color: white;
      border: 1px solid rgba(239, 68, 68, 0.3);
    }

    .success-message {
      background: rgba(16, 185, 129, 0.9);
      color: white;
      border: 1px solid rgba(16, 185, 129, 0.3);
    }

    /* =============== Responsive =============== */
    @media (max-width: 768px) {
      .header { padding: 1rem; }
      .main-container { padding: 1rem 1rem 6rem; }
      .wrapper { padding: 1.5rem; }
      .nav a { font-size: 0.75rem; }
      .nav a i { font-size: 1.1rem; }
    }

    @media (max-width: 480px) {
      .wrapper { border-radius: 15px; }
      .form-title { font-size: 1.25rem; }
      .image-upload-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
    }
  