        /* ===== Pitch Application Section ===== */
        .pitch-app-section {
            margin-bottom: 12px;
        }

        .pitch-app-section-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .pitch-app-card {
            background: var(--bg-card);
            border: 2px solid rgba(212, 168, 74, 0.3);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 12px;
        }

        .pitch-app-status {
            display: inline-block;
            padding: 3px 10px;
            font-size: 10px;
            font-weight: 700;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }

        .pitch-status-pending {
            background: rgba(212, 168, 74, 0.15);
            color: var(--accent);
        }

        .pitch-status-confirmed {
            background: rgba(34, 197, 94, 0.15);
            color: var(--success);
        }

        .pitch-status-rejected {
            background: rgba(239, 68, 68, 0.15);
            color: var(--danger);
        }

        .pitch-status-completed {
            background: rgba(136, 136, 136, 0.15);
            color: var(--text-muted);
        }

        .pitch-status-entry_submitted {
            background: rgba(100, 149, 237, 0.15);
            color: #6495ed;
        }

        .pitch-cta {
            margin-top: 16px;
            padding: 16px;
            background: linear-gradient(135deg, rgba(212, 168, 74, 0.08), rgba(212, 168, 74, 0.02));
            border: 1px solid rgba(212, 168, 74, 0.25);
            border-radius: var(--radius-sm);
            text-align: center;
        }

        .pitch-cta p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .pitch-app-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 14px;
        }

        .pitch-info-item {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 10px;
        }

        .pitch-info-label {
            font-size: 10px;
            color: var(--text-dim);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 3px;
            font-weight: 600;
        }

        .pitch-info-value {
            font-size: 13px;
            color: var(--text);
        }

        .btn-pitch-entry {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--accent), #e8b84a);
            color: #000;
            font-size: 14px;
            font-weight: 700;
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-pitch-entry:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(212, 168, 74, 0.3);
        }

        .pitch-app-actions {
            display: flex;
            gap: 8px;
            margin-top: 14px;
        }

        .btn-pitch-change {
            flex: 1;
            padding: 8px;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--text-muted);
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-pitch-change:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .btn-pitch-cancel {
            flex: 1;
            padding: 8px;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid rgba(239, 68, 68, 0.3);
            background: transparent;
            color: var(--danger);
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-pitch-cancel:hover {
            background: rgba(239, 68, 68, 0.08);
        }

