﻿﻿﻿﻿﻿﻿﻿﻿body { background: var(--bg); padding-bottom: 80px; }
    .form-section { background: var(--bg-white); margin-bottom: 10px; }
    .form-section-title {
      padding: 14px 16px 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-secondary);
    }
    .form-group {
      padding: 12px 16px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .form-group + .form-group { border-top: 1px solid var(--border-light); }
    .form-label {
      width: 72px;
      flex-shrink: 0;
      font-size: 15px;
      font-weight: 500;
      color: var(--text-primary);
      padding-top: 8px;
    }
    .form-label .required { color: var(--accent-red); margin-left: 2px; }
    .form-control { flex: 1; }
    .form-control input,
    .form-control textarea {
      width: 100%;
      padding: 8px 0;
      font-size: 15px;
      color: var(--text-primary);
    }
    .form-control input::placeholder,
    .form-control textarea::placeholder {
      color: var(--text-tertiary);
    }
    .form-control textarea {
      min-height: 80px;
      resize: none;
      line-height: 1.6;
    }
    .form-control .char-count {
      text-align: right;
      font-size: 12px;
      color: var(--text-tertiary);
      margin-top: 4px;
    }
    .type-selector {
      display: flex;
      gap: 10px;
    }
    .type-option {
      flex: 1;
      padding: 12px;
      border-radius: var(--radius-md);
      border: 1.5px solid var(--border);
      text-align: center;
      transition: all 0.2s;
      cursor: pointer;
    }
    .type-option.active-skill {
      border-color: var(--primary);
      background: rgba(255,107,53,0.05);
    }
    .type-option.active-hobby {
      border-color: var(--secondary);
      background: rgba(46,196,182,0.05);
    }
    .type-option svg { width: 28px; height: 28px; margin: 0 auto 6px; }
    .type-option .type-name { font-size: 14px; font-weight: 500; }
    .tag-selector {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .tag-option {
      padding: 6px 14px;
      border-radius: var(--radius-full);
      font-size: 13px;
      background: var(--border-light);
      color: var(--text-secondary);
      transition: all 0.2s;
      cursor: pointer;
    }
    .tag-option.selected {
      background: rgba(255,107,53,0.1);
      color: var(--primary);
    }
    .tag-option.selected-hobby {
      background: rgba(46,196,182,0.1);
      color: var(--secondary);
    }
    .reward-type-tabs {
      display: flex;
      gap: 0;
      border-radius: var(--radius-full);
      background: var(--border-light);
      padding: 3px;
      margin-bottom: 12px;
    }
    .reward-type-tab {
      flex: 1;
      padding: 8px;
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 500;
      text-align: center;
      color: var(--text-secondary);
      transition: all 0.2s;
      cursor: pointer;
    }
    .reward-type-tab.active {
      background: var(--bg-white);
      color: var(--text-primary);
      box-shadow: var(--shadow-sm);
    }
    .reward-input {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .reward-input input {
      width: 100px;
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      border: 1.5px solid var(--border);
      font-size: 20px;
      font-weight: 600;
      text-align: center;
      color: var(--text-primary);
    }
    .reward-input input:focus { border-color: var(--primary); }
    .reward-input .reward-unit {
      font-size: 14px;
      color: var(--text-secondary);
    }
    .range-slider-group { width: 100%; }
    .range-options {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .range-option {
      padding: 8px 16px;
      border-radius: var(--radius-full);
      border: 1.5px solid var(--border);
      font-size: 13px;
      font-weight: 500;
      color: var(--text-secondary);
      transition: all 0.2s;
      cursor: pointer;
    }
    .range-option.active {
      border-color: var(--primary);
      background: rgba(255,107,53,0.08);
      color: var(--primary);
    }
    .validity-options {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .validity-option {
      padding: 8px 14px;
      border-radius: var(--radius-full);
      border: 1.5px solid var(--border);
      font-size: 13px;
      font-weight: 500;
      color: var(--text-secondary);
      transition: all 0.2s;
      cursor: pointer;
    }
    .validity-option.active {
      border-color: var(--primary);
      background: rgba(255,107,53,0.08);
      color: var(--primary);
    }
    .img-upload-area {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .img-upload-item {
      width: 80px;
      height: 80px;
      border-radius: var(--radius-sm);
      background: var(--border-light);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .img-upload-item.add {
      border: 1.5px dashed var(--border);
      cursor: pointer;
    }
    .img-upload-item.add svg { width: 24px; height: 24px; color: var(--text-tertiary); }
    .img-upload-item.add span {
      position: absolute;
      bottom: 6px;
      font-size: 10px;
      color: var(--text-tertiary);
    }
    .people-counter {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .counter-btn {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-full);
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.2s;
    }
    .counter-btn:active { background: var(--border-light); }
    .counter-btn.disabled { opacity: 0.3; pointer-events: none; }
    .counter-value {
      font-size: 24px;
      font-weight: 700;
      min-width: 30px;
      text-align: center;
    }
    .submit-bar-spacer {
      height: calc(60px + var(--safe-bottom));
    }
    .submit-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 12px 16px calc(12px + var(--safe-bottom));
      background: var(--bg-white);
      border-top: 1px solid var(--border-light);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .submit-bar .cost-preview {
      flex: 1;
      font-size: 13px;
      color: var(--text-secondary);
    }
    .submit-bar .cost-preview .cost-amount {
      font-size: 18px;
      font-weight: 700;
      color: var(--primary);
    }